Newer
Older
8001
8002
8003
8004
8005
8006
8007
8008
8009
8010
8011
8012
8013
8014
8015
8016
8017
8018
8019
8020
8021
8022
8023
8024
8025
8026
Changes with Apache 2.0a4
*) EBCDIC: Rearrange calls to ap_checkconv() so that most handlers
won't need to call it. [Greg Ames, Jeff Trawick]
*) Move pre_config hook call to between configuration read and config
tree walk. This allows all modules to implement pre_config hooks
and know that they will be called at an appropriate time.
[Ryan Bloom]
*) mod_cgi, mod_cgid: Make ScriptLog directive work again.
[Jeff Trawick]
*) Add pre-config hooks back to all modules.
[Ryan Bloom]
*) Fix a SIGSEGV in ap_md5digest(), which is used when you have
ContentDigest enabled and we can't/don't mmap the file.
[Jeff Trawick]
*) We now report the correct line number for syntax errors in config
files. [Ryan Bloom, Greg Stein, Jeff Trawick]
*) Brought mod_auth_digest up to synch with 1.3, fixed ap_time_t-
related bugs, and changed shmem/locking to use apr API. Shared-mem
is currently disabled, however, because of problems with graceful
restarts. [Ronald Tschalär]
8028
8029
8030
8031
8032
8033
8034
8035
8036
8037
8038
8039
8040
8041
8042
8043
8044
8045
8046
8047
8048
8049
8050
8051
*) Fix corruption of IFS variable in --with-module= handling.
Depending on the user's shell or customization thereof, there
would be errors generating ap_config_auto.h later in the configure
procedure. [Jeff Trawick]
*) mod_cgi: Restore logging of stderr from child process when ScriptLog
isn't used (as in 1.3), except that on Unix it is now logged via
ap_log_rerror() instead of by the child having STDERR_FILENO refer
to the error log. [Greg Ames, Jeff Trawick]
*) Add '-D' argument processing for run time configuration defines.
[William Rowe]
*) Organize http_main.c as independent code, such that no code or
global data is exported from it. WIN32 will dynamically link it
to the server core, so this will prevent mutual dependency.
[William Rowe]
*) Add separate dynamic linkage tags APR_EXPORT(), APR_EXPORT_NONSTD()
and APR_VAR_EXPORT to correctly resolve apr functions and globals.
[William Rowe]
*) Add Win9x service execution and Ctrl+C/Ctrl+Break/Shutdown handlers.
8053
8054
8055
8056
8057
8058
8059
8060
8061
8062
8063
8064
8065
8066
8067
8068
8069
8070
8071
8072
8073
8074
8075
8076
8077
8078
8079
*) Add mod_charset_lite for configuring character set translation.
[Jeff Trawick]
*) Add '-n' option to htpasswd to make it print its user:pw record
on stdout rather than having to frob a text file. [Ken Coar]
*) Fix saferead. Basically, we flush the output buffer if a read on the
input will block.
[Ryan Bloom]
*) APR: Add ap_xlate_get_sb() so that an app can find out whether or not
a conversion is single-byte only. [Jeff Trawick]
*) BEOS: ap_shutdown should return APR_SUCCESS or errno. Note that
the BeOS 5.0 documentation says that shutdown doesn't work yet.
[Roy Fielding]
*) Fix some minor errors where pid was being manipulated as an int
instead of the portable pid_t. [Roy Fielding]
*) Fix some error log prints that were printing the pointer to a
structure rather than the pid within the structure.
[Jeff Trawick, Roy Fielding]
*) ab: Fix a command-line processing bug; track bad headers in
err_response; support reading headers up to 2K.
*) Fix ap_resolve_env() so that it handles new function added in a prior
alpha (see "Added the capability to do ${ENVVAR} constructs in the
config file.") as well as the constructs used by mod_rewrite.
8086
8087
8088
8089
8090
8091
8092
8093
8094
8095
8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
8195
8196
*) Apache 2.0 builds and runs on OS/390. [Jeff Trawick, Greg Ames]
*) Change the EBCDIC support in functions for MD5, SHA1, and base 64 to use
APR to perform translation, instead of accessing the hard-coded tables
in 1.3's ebcdic.c. [Jeff Trawick]
*) Fix some bugs (mostly lost 1.3 code) in ab's command-line processing.
[Jeff Trawick]
*) Add the ability to hook into the config file reading phase. Basically
if a directive is specified EXEC_ON_READ, then when that directive is
read from the config file, the assocaited function is executed. This
should only be used for those directives that must muck with HOW the
server INTERPRETS the config. This should not be used for directives
that re-order or replace items in the config tree. Those changes should
be made in the pre-config step.
[Ryan Bloom]
*) Add mod_example to the build system.
[Tony Finch]
*) APR: Add ap_xlate_conv_byte() to convert one char between single-
byte character sets. [Jeff Trawick]
*) Pick up various EBCDIC fixes from 1.3 (from Martin
Kraemer and Oliver Reh originally according to the change log).
[Jeff Trawick]
*) Fix a couple of problems in RFC1413 support (controlled by the
IdentityCheck directive). Apache did not build the request string
properly and more importantly Apache would loop forever if the
would-be ident server dropped the connection before sending a
properly terminated response. [Jeff Trawick]
*) apxs works in 2.0.
[Ryan Bloom]
*) Reliable piped logs work in 2.0.
[Ryan Bloom]
*) Introduce a hash table implementation into APR to be used for
replacing tables and other random data structures in Apache.
[Tony Finch]
*) Add some more error reporting to htpasswd in the case of problems
generating or accessing the temporary file. Also, pass in a
buffer if the implementation knows how to use it (i.e., if L_tmpnam
is defined). [Ken Coar]
*) Configure creates config.nice now containing your configure
options. Syntax: ./config.nice [--more-options]
[Sascha Schumann]
*) Fix various return code problems in APR on Win32. For most of
these, APR was returning APR_EEXIST instead of GetLastError()/
WSAGetLastError(). [Jeff Trawick]
*) Make piped logs work again in version 2.0
[Ryan Bloom]
*) Add VPATH support to UNIX build system of Apache and APR.
[Sascha Schumann]
*) Fix ap_tokenize_to_argv to respect the const arguments that are
passed to it.
[Ryan Bloom]
*) Fix mm's memcpy/memset macros, pointer arithmetic was broken.
Patch submitted to author.
[Sascha Schumann]
*) Fix mm configuration on Solaris 8 x86 and OS/390. Don't require
/sbin in PATH on FreeBSD (all submitted to rse previously)
[Jeff Trawick]
*) Fix building Pthread-based MPMs on OpenBSD
[Sascha Schumann] PR#26
*) Fix ap_readdir() problem on systems where d_name[] field in
struct dirent is declared with only one byte. (This problem only
affected multithreaded builds.) This caused a segfault during
pool cleanup with mod_autoindex on Solaris (Solaris 8 x86, at
least). [Jeff Trawick]
*) Fix some make-portability problems on at least Tru64, Irix
and UnixWare.
[Sascha Schumann] PR#18, PR#39
*) Add ap_sigwait() to support old-style sigwait() on systems
like OS/390 and UnixWare.
[Sascha Schumann]
*) Add POSIX-thread flags for more platforms.
[Sascha Schumann]
*) Fix some minor bugs in ap_strerror(). Teach ap_strerror()
(on Unix, at least) to handle resolver errors. Fix a bug in
the definition of APR_ENOMEM so that ap_strerror() can spit
out the correct error message for it.
[Jeff Trawick]
Changes with Apache 2.0a3
*) mod_so reports ap_os_dso_error() if ap_dso_load() fails
[Doug MacEachern]
*) API: *HOOK* macros now have an AP_ prefix
[Doug MacEachern]
*) Win32: Eliminate redundant calls to initialize winsock.
*) Fix bugs initializing ungetchar for pipes.
8201
8202
8203
8204
8205
8206
8207
8208
8209
8210
8211
8212
8213
8214
8215
8216
8217
8218
8219
8220
8221
8222
8223
8224
8225
8226
8227
8228
8229
8230
8231
8232
8233
8234
8235
8236
*) The ab program in the src/support directory is now portable using
APR.
[Ryan Bloom]
*) Support directory is being compiled when the server is built
[Ryan Bloom]
*) The configure option --with-program-name has been added to allow
developers to rename the executable at configure time. This also
changes the name of the config files to match the executable's name.
[Ryan Bloom]
*) mod_autoindex: Add `IndexOptions +VersionSort', to nicely sort filenames
containing version numbers. [Martin Pool]
*) ap_open(..,APR_OS_DEFAULT,..) uses perms 0666 instead of 0777 on
Unix; access_log and error_log now created with these perms; non-
Unix is unaffected [Jeff Trawick]
*) Finished move of ap_md5 routines to apr_md5. Removed ap_md5.h.
Replaced more magic numbers with MD5_DIGESTSIZE.
[William Rowe, Roy Fielding]
*) Win32: Get mod_auth_digest compiling and added to the Windows
build environment. Not tested and I'd be suprised if it
actually works. [Bill Stoddard]
*) Revamp the Win32 make environment. Makefiles have been removed and
Apache.dsw created to bring together all the pieces. Create new file
os/win32/BaseAddr.ref to define module base addresses (to prevent
dll relocation at start-up).
[William Rowe, Greg Marr, Tim Costello, Bill Stoddard]
*) [EBCDIC] Port Paul Gilmartin's CRLF patch from 1.3. This replaces most
of the \015, \012, and \015\012 constants with macros.
[Greg Ames]
*) Add ap_xlate_open() et al for translation of text between different
character sets. The initial implementation requires iconv().
[Jeff Trawick]
*) More FAQs and answers from comp.infosystems.www.servers.unix.
*) CGI output is being timed out now.
[Ryan Bloom]
*) Fix the problem with dieing quietly. dupfile now takes a pool which
is used by the new apr file. There is no reason to create a new file
with the same lifetime as the original file.
[Ryan Bloom]
*) Win32: Attempt to eliminate dll relocation at start-up by specifying
module base addresses. This will help shooting seg faults
*) Update Apache on Windows documentation. Add new document
describing how to compile Apache on Windows.
*) ap_set_pipe_timeout(), ap_poll(), and APR_SO_TIMEOUT now take
microseconds instead of seconds. Some storage leaks and other
minor bugs in related code were fixed. [Jeff Trawick]
*) Win32: First cut at getting mod_isapi working under 2.0
*) First stab at getting mod_auth_digest working under 2.0
quick change summary:
- moved the random byte generation (ap_generate_random_bytes) into APR
- now uses ap_time_t
- compiles and runs on linux
- tested with amaya
*) Win32: Move the space stripping of physical service names
fix up from Apache 1.3. #include'ing "ap_mpm.h" fixes up an
unresolved symbol. Add dependency checking to the
CreateService call to ensure TCPIP and AFP (winsock) is started
before Apache.
*) Win32: Add code to perform latebinding on functions that may
not exist on all levels of Windows where Apache runs. This
is needed to allow Apache to start-up on Win95/98. All calls
to non portable functions should be protected with
ap_oslevel checks to prevent runtime segfaults.
*) Fix fallback default values for SHM_R and SHM_W [Martin Kraemer]
*) Get lingering_close() working again. [Dean Gaudet, Jeff Trawick]
*) Win32: Get non-blocking CGI pipe reads working under Windows NT.
This addresses PR 1623. Still need to address timing out runaway
CGI scripts. [Bill Stoddard]
*) Win32: Make ap_stat Windows 95/98 friendly
*) Win32: Fix a bug in ap_get_oslevel which causes GetVersionEx() to
always fail. Need to initialise the dwOSVersionInfoSize member of the
OSVERSIONINFO struct before calling GetVersionEx, so GetVersionEx
always fails.
The patch also enhances ap_get_oslevel (and the associated enum) to
handle selected service packs for NT4, and adds recognition for
Windows 2000. This is useful, eg. if we can recognise NT4 SP2 then
we can use ReadFileScatter and WriteFileGather in readwrite.c.
*) Get mod_rewrite building and running, and mod_status building for Win NT
*) Patch to port mod_auth_db to the 2.0 api and also to support
Berlekey DB 3.0. It works for me with both Berkeley DB 3.0.55 and
2.7.7. It should work with version 1 as well but I haven't tested it.
*) Get APR DSO code working under Windows. Includes cross platform
fixes to mod_so.c.
*) Fix some of the Windows APR time functions.
[William Rowe]
*) FAQ changes related to tidying up historical documents on the web site.
*) Move Windows DSO code into APR.
[Bill Stoddard]
*) Eliminate apr_win.h and apr_winconfig.h (and the ugly #ifdefs they cause).
Now, apr.h and apr_config.h are generated from apr.hw and apr_config.hw
at build time. At this point, the server will not compile on Windows because
of the recent DSO commits. Fixing those next.
[Bill Rowe & Bill Stoddard]
*) Added error checking for file I/O APR routines.
*) APR: Don't use the values of resolver error codes for the
corresponding APR error codes. On Unix and Win32, return the
proper APR error code after a resolver error. [Jeff Trawick]
Changes with Apache 2.0a2
*) Renamed the executable back to httpd on all platforms other
than Win32
[Ryan Bloom]
*) Allow BeOS to survive restarts, log properly and a few
small things it had problems with due to the way it setup
users and groups. [David Reid]
*) Get mod_rewrite working with APR locks
*) Actually remove the sempahore when the lock cleanup routine
is called on BeOS. [David Reid]
*) Clear hook registrations between reads of the config file.
When DSOs are unloaded and re-loaded the old hook pointers may
no longer be valid. This fix eliminates potential segfaults.
*) Fix a problem with Sigfunc not being defined or bypassed
if sigaction() wasn't found. [Jim Jagielski]
*) Fix the locking mechanism on BSD variants. They now use fcntl
locks. This allows the server to start and serve pages.
[Ryan Bloom]
*) First cut at getting the Win32 installer to work
*) Get htpasswd compiling under Windows
*) Change the log message for a bind() failure to show the
interface and port number. [Jeff Trawick]
*) Import the documentation from 1.3.12 and bring parts of it
up-to-date with respect to the changes that have occurred
in 2.0.
[Tony Finch]
*) BeOS MPM updated. CGI bug on BeOS fixed. IP addresses
now logged correctly on BeOS.
[David Reid]
*) Create one makefile for all Win32 distributions (NT/2000/95/98).
Makefile.win includes the same user interface as the old
Makefile.nt
*) Win32 exec now uses COMSPEC environment string for command
shell path resolution.
*) Win32: ap_connect() was not returning correct error condition
PR5866
*) Win32: ap_open() was broken on Win9x because an NT-specific
flag was passed to CreateFile. ap_puts() added an unnecessary
'\n'.
8410
8411
8412
8413
8414
8415
8416
8417
8418
8419
8420
8421
8422
8423
8424
8425
8426
8427
8428
8429
8430
8431
8432
8433
8434
8435
8436
8437
8438
8439
8440
8441
8442
8443
8444
8445
8446
8447
8448
8449
8450
8451
8452
8453
8454
8455
8456
8457
8458
8459
8460
8461
8462
8463
8464
8465
8466
8467
8468
8469
8470
8471
8472
8473
8474
8475
*) Put in Korean and Norwegian index.html pages (2.0 and 1.3)
which where donated by Lee Kuk Hyun and Lorant Czaran. 'Fixed'
confusing ee/et name and made all extensions language/dialect
rather than country reflecting. Changed example files to
explicit reflect the ISO charset and added a few common
ones to the example config [dirkx]
*) Extend external module capability. To use this, you call
configure with --with-module=path/to/mod1,path/to/mod2,etc.
[Ryan Bloom]
*) Backported the various "default charset" fixes from 1.3.12,
including the AddDefaultCharset directive. [Jim Jagielski]
*) Added the capability to do ${ENVVAR} constructs in the
config file. E.g. 'ServerAdmin ${POSTMASTER}'. As commited
it does this on a line by line basis; i.e. if the envvar
expands to something with spaces you have to protect it
by adding quotes around it (Unless of course you expect it
to contains more than one argument. Alternatively you
can compile it on a per token basis; which is what people
usually expect by setting RESOLVE_ENV_PER_TOKEN. But this
hampers fancier hacks.
[Dirk-Willem van Gulik]
*) Changed the 'ErrorDocument' syntax in that it NO longer
supports the asymetric
ErrorDocument 301 "Some message
Note the opening " quote, without a closing quote. It now
has either the following syntaxes
ErrorDocument XXX /local/uri
ErrorDocument XXX http://valid/url
ErrorDocument XXX "Some Message"
The recognition heuristic is: if it has a space it
is a message. If it has no spaces and starts with a /
or is a valid URL then treat it that way. Otherwise it
is assumed to be a message.
This breaks backward compatibility but makes live a hell
of a lot easier for GUI's and config file parsers.
[Dirk-Willem van Gulik]
*) Changed 'CacheNegotiatedDocs' from its present/not-present
syntax into a 'on' or 'off' syntax. As it currently is the
only non nesting token which uses NO_ARGS and thus is an
absolute pain for any config interface automation. This
breaks backward compatibility. [Dirk-Willem van Gulik]
*) Add ability to add external modules to the build process. This is
done with --with-module=/path/to/module. Modules can only be added
as static modules at this point.
[Ryan Bloom]
Changes with Apache 2.0a1
*) Fix FreeBSD 3.3 core dump.
Basically, ap_initialize() needs to get called before
create_process(), since create_process() passes op_on structure
to semop() to get a lock, but op_on isn't initialized until
ap_initialize() calls setup_lock(). Here is a slight
rearrangement to main() which calls ap_initialize() earlier...
8477
8478
8479
8480
8481
8482
8483
8484
8485
8486
8487
8488
8489
8490
8491
8492
8493
8494
8495
8496
8497
8498
8499
8500
8501
8502
8503
8504
8505
8506
8507
8508
*) Enable Apache to use sendfile/TransmitFile API
[Bill Stoddard, David Reid, Paul Reder]
*) Re-Implement Win32 APR network I/O APIs and most of the file I/O
APIs.
[Bill Stoddard]
*) Make file I/O and network I/O writev/sendv APIs consistent.
Eliminate use of ap_iovec_t and use Posix struct iovec.
Use seperate variable on ap_writev to set the number of iovecs
passed in and number of bytes written.
[Bill Stoddard]
*) Adapt file iol to use APR functions. Replaced ap_open_file()
with ap_create_file_iol(). ap_create_file_iol() requires that
the file be opened prior to the call using ap_open().
[Bill Stoddard]
*) Port mod_include and mod_cgi to 2.0
[Paul Reder, Bill Stoddard]
*) ap_send{,v}, ap_recv, ap_sendfile API clarification --
bytes_read/bytes_written is always valid (never -1). Plus
some fixes to buff.c to correct problems introduced by the
errno => ap_status_t changes a while back. Plus a fix to
chunked encoding introduced right at the beginning of 2.0.
[Dean Gaudet]
*) Revamped UNIX build system to use autoconf and libtool.
[Manoj Kasichainula, Sascha Schumann]
*) port mod_rewrite to 2.0. [Paul J. Reder <rederpj raleigh.ibm.com>]
*) SECURITY: More rigorous checking of Host: headers to fix security
problems with mass name-based virtual hosting (whether using mod_rewrite
8513
8514
8515
8516
8517
8518
8519
8520
8521
8522
8523
8524
8525
8526
8527
8528
8529
8530
8531
8532
8533
or mod_vhost_alias).
[Ben Hyde, Tony Finch]
*) Add back support for UseCanonicalName in <Directory> containers.
[Manoj Kasichainula]
*) Added APLOG_STARTUP log type. This allows us to write an error
message without any of the date and time information. As a part
of this change, I also removed all of the calls to fprintf(stderr
and replaced them with calls to ap_log_error using APLOG_STARTUP
writing to stderr is no longer portable, because we don't direct
stderr to the error log on all platforms.
[Ryan Bloom]
*) Convert error logging functions to take errno as an argument.
This makes our error logs more portable, because some Windows API's
don't set errno. This change allows us to still output a valid
message on all of our platforms.
[Ryan Bloom]
*) mod_mime_magic runs in 2.0-dev now.
*) sendfile has been added to APR.
*) buff.c has been converted to no longer use errno.
[Manoj Kasichainula]
*) mod_speling runs in 2.0-dev now: a bug in readdir_r handling and
interface adaption to APR functions did it. [Martin Kraemer]
*) Support DSOs properly on 32-bit HP-UX 11.0
8547
8548
8549
8550
8551
8552
8553
8554
8555
8556
8557
8558
8559
8560
8561
8562
8563
8564
8565
8566
8567
*) Updated MM in APR source tree from version 1.0.8 to 1.0.11
[Ralf S. Engelschall]
*) Cleaned APR build environment integration and bootstrap APR
automatically for developers from src/Configure.
[Ralf S. Engelschall]
*) Fixed building of src/support/htpasswd.c
[Ralf S. Engelschall]
*) When generating the Location: header, mod_speling forgot
to escape the spelling-fixed uri. (Forw-Port from 1.3)
[Martin Kraemer]
*) Moved mod_auth_digest.c from experimental to standard. [Roy Fielding]
*) Change all pools to APR contexts. This is the first step to
incorporating APR into Apache. [Ryan Bloom]
*) Move "handler not found" warning message to below the check
8569
8570
8571
8572
8573
8574
8575
8576
8577
8578
8579
8580
8581
8582
8583
8584
8585
8586
8587
8588
8589
8590
PR#2584, PR#2751, PR#3349, PR#3436, PR#3548, PR#4384, PR#4795, PR#4807
*) Support line-continuation feature in config.option file and
allow the loading of multiple option sections at once via
``--with-option=<section1>,<section2>,...''
[Ralf S. Engelschall]
*) Rebuilt CVS repository with Apache 1.3.9 as basis. [Roy Fielding]
Changes with Apache MPM
*) Use asynchronous AcceptEx() and a completion port to accept and
dispatch connections to threads in Windows NT/2000.
[Bill Stoddard]
*) Implement WINNT Win32 MPM from original Win32 code in http_main.c
[Bill Stoddard]
*) Implement the APACI --with-option facility
(per default used the config.option file).
[Ralf S. Engelschall]
8592
8593
8594
8595
8596
8597
8598
8599
8600
8601
8602
8603
8604
8605
8606
8607
8608
8609
8610
8611
8612
8613
8614
8615
8616
8617
8618
8619
8620
8621
*) Start to implement module-defined hooks that are a) fast and b) typesafe.
Replace pre_connection module call with a register_hook call and
implement pre_connection as a hook. The intent is that these hooks will
be extended to allow Apache to be multi-protocol, and also to allow the
calling order to be specified on a per-hook/per-module basis.
[Ben Laurie]
*) Implement mpm_* methods as "modules". Each method gets its own
subdir in src/modules (eg: src/modules/prefork). Selection
of method uses Rule MPM_METHOD. [Jim Jagielski]
*) Port the hybrid server from the apache-apr repository as
mpm_mpmt_pthread. [Manoj Kasichainula]
*) os/unix/unixd.[ch]: detach, setuid, setgid, stuff which will be common
amongst the unix MPMs.
*) mpm_prefork: throw away all the alarm/timeout crud; and clean up the
signal handling for the new world order. [Dean Gaudet]
*) Crude ap_thread_mutex abstraction so that we get the pthread stuff out
of alloc.c for now. [Dean Gaudet]
*) Handle partial large writes correctly. [Ben Laurie]
*) Eliminate conn_rec's pointer to server. All it knows is the base server
based on IP/port. [Ben Laurie]
*) Port a bunch of modules to the new module structure.
*) I/O layering and BUFF revamp. See docs/buff.txt. [Dean Gaudet]
*) Basic restructuring to introduce the MPM concept; includes various
changes to the module API... better described by
docs/initial_blurb.txt. [Dean Gaudet]
Changes with Apache pthreads
*) New buff option added: BO_TIMEOUT. It describes the timeout for
buff operations (generally over a network).
[Dean Gaudet, Ryan Bloom, Manoj Kasichainula]
*) Created http_accept abstraction. Added 4 new functions (not exported):
init_accept(), begin_accepting_requests(), get_request(),
stop_accepting_requests() [Bill Stoddard]
*) Fix to ap_rprintf call that allows mod_info to work properly.
8642
8643
8644
8645
8646
8647
8648
8649
8650
8651
8652
8653
8654
8655
8656
8657
8658
8659
8660
8661
8662
8663
8664
8665
8666
8667
8668
8669
*) user and ap_auth_type fields were moved from connection_rec to
request_rec. [Ryan Bloom]
*) Removed the ap_block_alarms and ap_unblock_alarm calls. These aren't
needed in a threaded server.
*) Initial pthread implementation from from Dean's apache-nspr code.
[Bill Stoddard, Ryan Bloom]
Changes with Apache 1.3.9
*) Remove bogus error message when a redirect doesn't set Location.
Instead, use an empty string to avoid coredump if the error message
was supposed to include a location. [Roy Fielding]
*) Don't allow configure to include mod_auth_digest unless it is
explicitly requested, even if the user asked for all modules.
[Roy Fielding]
*) Translate module names to dll names for OS/2 so that they are no more
than 8 characters long and have an extension of "dll" instead of "so".
[Brian Havard]
*) Print out pointer to Rule DEV_RANDOM when truerand lib not found.
Fix test-compile check to check for randbyte instead of trand32.
Use ap_base64encode_binary/decode instead of copy in mod_auth_digest.c
and tweak to make Amaya happier. [Ronald Tschalär]
8671
8672
8673
8674
8675
8676
8677
8678
8679
8680
8681
8682
8683
8684
8685
8686
8687
8688
8689
8690
8691
8692
8693
8694
8695
8696
8697
8698
8699
8700
8701
8702
8703
8704
8705
8706
8707
8708
8709
8710
8711
8712
8713
8714
8715
8716
8717
8718
8719
8720
8721
8722
8723
8724
8725
8726
8727
8728
8729
8730
8731
8732
8733
8734
*) Ensure that the installed expat include files are world readable,
just like the other header files. [Martin Kraemer]
*) Fixed generated AddModule adjustments in APACI's `configure' script
in order to allow (new) modules like mod_vhost_alias to be handled
correctly (which was touched by the adjustments for mod_alias).
[Ralf S. Engelschall]
*) For binary builds, add -R flag to apachectl to work around the lack of
an absolute path to the ./libexec directory where the libhttp.ep file
is needed for SHARED_CORE architectures. [Randy Terbush]
*) WIN32: Create the CGI script process as DETACHED. This may solve the
problem observed by some Win95/98 users where they get CGI script
output sent to the console. [Bill Stoddard]
*) Fix (re)naming in the uuencode/decode section. The ap/ap_
routines are now called ap_base64* and are 'plain' (i.e., no
pool access or anything clever). Inside util.c the routines acting
like pstrdup are called ap_pbase64encode() and ap_pbase64decode().
The oddly named ap_uuencode(), ap_uudecode() are kept around for
now but deprecated. [dirkx]
*) Clean up the base64 and SHA1 additions and make sure they are
represented in the ApacheCore.def, ApacheCoreOS2.def, and httpd.exp
files. [Roy Fielding]
*) WIN32: Migrate to InstallShield 5.5 and provide a bit more error
checking. Allow compiling on VS 6.0. [Randy Terbush]
*) Fixed assumption of absolute paths in binbuild.sh. [Tony Finch]
*) Use TestCompile to search for the truerand library (rather than blindly
assuming its existence). If it is not found, complain (but do not
exit - yet). [Martin Kraemer]
*) We forgot to add the new exported function names to
src/support/httpd.exp. [Bill Stoddard, Randy Terbush]
*) Add description of -T command-line option to usage().
[Ralf S. Engelschall]
*) For "some" platforms (notably, EBCDIC based ones), libos needs to be
searched only AFTER libap has been searched, because libap needs
some symbols from libos. [Martin Kraemer]
*) Fix conflict with original mod_digest related to the symbol of the
module dispatch list (which has to be unique for DSO and follow the
usual conventions for the installation procedure).
[Ralf S. Engelschall]
*) Add a dbm-library check for the "usual places" (-ldbm, -lndbm, -ldb)
for other platforms as well. [Martin Kraemer]
*) Make ap_sha1.c compile for EBCDIC platforms: replace remaining LONG
types by AP_LONG and replace reference to renamed variable 'ubuf'
by 'buffer'. [Martin Kraemer]
Changes with Apache 1.3.8 [not released]
*) Flush the output buffer immediately after sending an error or redirect
response, since the result may be needed by the client to abort a
long data transfer or restart a series of pipelined requests.
*) PORT: Improved compilation and DSO support on Sequent DYNIX/ptx.
*) Local struct mmap in http_core.c conflicted with system structure
name on DYNIX -- changed to mmap_rec. [Roy Fielding] PR#4735
*) Added updated mod_digest as modules/experimental/mod_auth_digest.
[Ronald Tschalär <ronald innovation.ch>]
*) Fix a memory leak where the module counts were getting messed
*) CIDR addresses such as a.b.c.d/24 where d != 0 weren't handled
properly in mod_access.
*) RewriteLock/RewriteMap didn't work properly with virtual hosts.
*) PORT: Support for compaq/tandem/com.
*) Added SHA1 password encryption support to easy migration from
Netscape servers. See support/SHA1 for more information.
Caused the separation of ap_md5.c into md5, sha1 and a general
ap_checkpass.c with just a validate_passwd routine. Added a
couple of flags to support/htpasswd. Some reuse of the to64()
function; hence renamed to ap_to64().
*) Change for EBCDIC platforms (TPF and BS2000) to correctly deal
with ASCII/EBCDIC conversions in "ident" query.
*) Get rid of redefinition warning on MAC_OS_X_SERVER platform.
Change "Power Macintosh" to Power* so if uname prints "Power Book"
we're still happy on Rhapsody platforms. [Wilfredo Sanchez]
*) Fix SIGSEGV on some systems because the Vary fix below included
a call to table_do with a variable argument list that was not
NULL terminated. Replaced with better implementation. [Roy Fielding]
Changes with Apache 1.3.7 [not released]
*) The "Vary" response header field is now sanitised right before
the header is sent back to the client. Multiple "Vary" fields
are combined, and duplicate tokens (e.g., "Vary: host, host" or
"Vary: host, negotiate, host, accept-language") are reduced to
single instances. This is a better solution than the force-no-vary
one (which is still valid for clients that can't cope with Vary
at all). PR#3118 [Dean Gaudet, Roy Fielding, Ken Coar]
*) Portability changes for BeOS. [David Reid <abb37 dial.pipex.com>]
*) Link DSO's with "gcc -shared" instead of "ld -Bshareable" at
least on Linux and FreeBSD for now.
[Rasmus Lerdorf]
*) Win32: More apache -k restart work. Restarts are now honored
immediately and connections in the listen queue are -not- lost.
This is made possible by the use of the WSADuplicateSocket()
call. The listeners are opened in the parent, duplicated, then
the duplicates are passed to the child. The original listen sockets
are not closed by the parent across a restart, thus the listen queue
is preserved.
*) Fix handling of case when a client has sent "Expect: 100-continue"
and we are going to respond with an error, but get stuck waiting to
discard the body in the pointless hope of preserving the connection.
*) Fix 'configure' to work correctly with SysV-based versions of
'tr' (consistent with Configure's use as well). [Jim Jagielski]
*) apxs: Add "-S var=val" option which allows for override of CFG_*
built-in values. Add "-e" option which works like -i but doesn't
install the DSO; useful for editing httpd.conf with apxs. Fix
editing code so that multiple invocations of apxs -a will not
create duplicate LoadModule/AddModule entries; apxs can now be
used to re- enable/disable a module. [Wilfredo Sanchez]
*) Win32: Update the server to use Winsock 2. Specifically, link with
ws2_32.lib rather than wsock32.lib. This gives us access to
WSADuplcateSocket() in addition to some other enhanced comm APIs.
Win 95 users may need to update their TCP/IP stack to pick up
Winsock 2. (See http://www.microsoft.com/windows95/downloads/)
*) Win32: Redirect CGI script stderr (script debug info) into the
error.log when CGI scripts fail. This makes Apache on Win32
behave more like Unix.
*) Fixed `httpd' usage display: -D was missing.
[Ralf S. Engelschall] PR#4614
*) Fix `make r' test procedure in src/regex/: ap_isprint was not found.
[Ralf S. Engelschall] PR#4561, PR#4562
*) OS/2: Fix problem with accept lock semaphores where server would die with
"OS2SEM: Error 105 getting accept lock. Exiting!"
[Brian Havard] PR#4505
*) Add DSO support for DGUX 4.x using gcc. Tested on x86 platforms.
*) Add the new mass-vhost module (mod_vhost_alias.c) developed and
*) Better GCC detection for DSO flags under Solaris 2 where the `cc'
command potentially _is_ GCC. [Ralf S. Engelschall]
*) Fix apxs build issues on AIX
8852
8853
8854
8855
8856
8857
8858
8859
8860
8861
8862
8863
8864
8865
8866
8867
8868
8869
8870
8871
8872
8873
8874
*) DocumentRoot Checking: Under previous versions, when Apache
first started up, it used to do a stat of each DocumentRoot to
see if it existed and was a directory. If not, then an error
message was printed. THIS HAS BEEN DISABLED. If DocumentRoot
does not exist, you will get error messages in error_log. If
the '-t' command line option is used (to check the configuration)
the check of DocumentRoot IS performed. An additional command
line option, '-T', has been added if you want to avoid the
DocumentRoot check even when checking the configuration.
[Jim Jagielski]
*) Win32: The query switch "apache -S" didn't exit after showing the
vhost settings. That was inconsistent with the other query functions.
[Bill Stoddard - Fixed by Martin on Unix in 1.3.4]
*) Win32: Changed behaviour of apache -k restart.
Previously, the server would drain all connections in the stack's
listen queue before honoring the restart. On a busy server, this
could take hours. Now, a restart is honored almost immediately.
All connections in Apache's queues are handled but connections in
the stack's listen queue are discarded. Restart triggered by
MaxRequestPerChild is unchanged.
*) Win32: Eliminated unnecessary call to wait_for_multiple_objects in
the accept loop. Good for a 5% performance boost. Cleaned up
parent/child process management code.
*) Added ceiling on file size for memory mapped files.
*) Fix ndbm.h include problems with brain-dead glibc >= 2.1 which
has ndbm.h in a non-standard db1/ subdir. PR#4431, PR#4528
*) Determine AP_BYTE_ORDER for ap_config_auto.h and already
use this at least for Expat. [Ralf S. Engelschall]
*) Allow .module files to specify libraries with Lib:.
[Ben Laurie]
*) Allow SetEnvIf[NoCase] to test environment variables as well
as header fields and request attributes. [Ken Coar]
*) Fix mod_autoindex's handling of ScanHTMLTitles when file
content-types are "text/html;parameters". PR#4524 [Ken Coar]
*) Remove "mxb" support from mod_negotiation -- it was a draft feature
never accepted into any standard, and it opens up certain DoS
*) TestCompile updated. We can now run programs and output the
results during the Configure process. [ Jim Jagielski]
*) The source is now quad (long long) aware as needed. Specifically,
the Configure process determines the correct size of off_t and
*void. When the OS/platform/compiler supports quads, ap_snprintf()
provides for the 'q' format qualifier (if quads are not available,
'q' is silently "demoted" to long). [Jim Jagielski]
*) When the username or password fed to htpasswd is too long, include the
size limit in the error message. Also report illegal characters
(currently only ':') in the username. Add the size restrictions
to the man page. [Ken Coar]
*) Fixed the configure --without-support option so it doesn't result in
an infinite loop. [Marc Slemko]
*) Piped error logs could cause a segfault if an error occured
during configuration after a restart.
*) If a "Location" field was stored in r->err_headers_out rather
than r->headers_out, redirect processing wouldn't find it and
the server would core dump on ap_escape_html(NULL). Check both
tables and raise HTTP_INTERNAL_SERVER_ERROR with a log message
if Location isn't set. [Doug MacEachern, Ken Coar]
*) Add RULE_EXPAT, the src/lib/ directory structure, and a modified copy
of the Expat 1.0.2 distribution. [Greg Stein]
*) Replace regexec() calls with calls to a new API stub function
ap_regexec(). This solves problems with DSO modules which use the regex
*) Add 'Request_Protocol' special keyword to mod_setenvif so that
environment variables can be set according to the protocol version
(e.g., HTTP/0.9 or HTTP/1.1) of the request. [Ken Coar]
*) Add DSO support for OpenStep (Mach 4.2) platform.
*) Fix sed regex for generating ap_config_auto.h in src/Configure.
*) Switch to /bin/sh5 in APACI on Ultrix and friends to avoid problems with
their brain-dead /bin/sh. [Ralf S. Engelschall] PR#4372
*) Better DSO flags recognition on NetBSD platforms using ELF.
*) Always log months in english format for %t in mod_log_config.
*) Support for server-parsed and multiview-determined ReadmeName and
HeaderName files in mod_autoindex. Removed the restriction on
"/"s in ReadmeName and HeaderName directives since the *sub_req*
routines will deal with the access issues. (It's now possible to
have {site|group|project|customer|...} wide readmes and headers.)
3569, 4256
*) When stat() fails, don't assume anything about the contents of
*) It's OK for a semop to return EINTR, just loop around and try
again. [Dean Gaudet]
*) Fix configuration engine re-entrant hangups, which solve a
handful of problems seen with mod_perl <Perl> configuration sections
*) Mac OS and Mac OS X Server now use the appropriate custom layout
by default when building with APACI; allow for platform-specific
variable defaults in configure. [Wilfredo Sanchez]
*) Do setgid() before initgroups() in http_main; some platforms
zap the grouplist when setgid() is called. This was fixed in
suexec earlier, but the main httpd code missed the change.
*) Add recognition of .tgz as a gzipped tarchive.
[Bertrand de Singly <bertrand.de-singly polytechnique.fr>] PR#2364
*) mod_include's fsize/flastmod should allow only relative paths, just
*) OS/2: Add support for building loadable modules using DLLs.
[Brian Havard]
*) Add iconsdir, htdocsdir, and cgidir to config.layout.
[Wilfredo Sanchez]
*) Fix minor but annoying bug with the test for Configuration.tmpl
being newer than Configuration so that it is less likely to fail
when using APACI and shadow sources. [Wilfredo Sanchez]