]> granicus.if.org Git - apache/blob - CHANGES
update after backport
[apache] / CHANGES
1                                                          -*- coding: utf-8 -*-
2 Changes with Apache 2.5.0
3
4   *) mpm_unix: Apache fails to start if previously crashed then restarted with
5      the same PID (e.g. in container).  PR 60261.
6      [Val <valentin.bremond gmail.com>, Yann Ylavic]
7
8   *) mod_dav: Fix a potential cause of unbounded memory usage or incorrect
9      behavior in a routine that sends <DAV:response>'s to the output filters.
10      [Evgeny Kotkov]
11
12   *) event: Avoid listener periodic wake ups by using the pollset wake-ability
13      when available.  PR 57399.  [Yann Ylavic, Luca Toscano]
14
15   *) mod_brotli: Add a new module for dynamic Brotli (RFC 7932) compression.
16      [Evgeny Kotkov]
17
18   *) core: Permit unencoded ';' characters to appear in proxy requests and
19      Location: response headers. Corresponds to modern browser behavior.
20      [William Rowe]
21
22   *) mpm_winnt: Prevent a denial of service when the 'data' AcceptFilter is in
23      use by replacing it with the 'connect' filter. PR 59970. [Jacob Champion]
24
25   *) mod_proxy_hcheck: Set health check URI and expression correctly for health
26      check worker. PR 60038 [zdeno <zdeno@scnet.sk>]
27
28   *) mod_cache: Use the actual URI path and query-string for identifying the
29      cached entity (key), such that rewrites are taken into account when
30      running afterwards (CacheQuickHandler off).  PR 21935.  [Yann Ylavic]
31
32   *) mod_ssl: Fix quick renegotiation (OptRenegotiaton) with no intermediate
33      in the client certificate chain.  PR 55786.  [Yann Ylavic]
34
35   *) mod_reqtimeout: Fix body timeout disabling for CONNECT requests to avoid
36      triggering mod_proxy_connect's AH01018 once the tunnel is established.
37      [Yann Ylavic]
38
39   *) mod_proxy_balancer: Prevent redirect loops between workers within a
40      balancer by limiting the number of redirects to the number balancer
41      members. PR 59864 [Ruediger Pluem]
42
43   *) mod_proxy: Correctly consider error response codes by the backend when
44      processing failonstatus. PR 59869 [Ruediger Pluem]
45
46   *) mod_proxy_fcgi: avoid loops when ProxyErrorOverride is enabled
47      and the error documents are proxied. PR 55415. [Luca Toscano]
48
49   *) mod_proxy_fcgi: read the whole FCGI response even when the content has
50      not been modified (HTTP 304) to avoid subsequent bogus reads and
51      confusing error messages logged. [Luca Toscano]
52
53   *) mod_crypto: Add the all purpose crypto filters with support for HLS.
54      [Graham Leggett]
55
56   *) ab: Add option -I to use the Server Name Indication (SNI) extension on
57      outgoing TLS connections, according to the Host header (if any) or the
58      requested URL's hostname otherwise.  [Yann Ylavic]
59
60   *) mod_ssl: reset client-verify state of ssl when aborting renegotiations.
61      [Erki Aring <erki@example.ee>, Stefan Eissing]
62
63   *) mod_proxy_{http,ajp,fcgi}: don't reuse backend connections with data
64      available before the request is sent.  PR 57832.  [Yann Ylavic]
65
66   *) mod_sed: Fix 'x' command processing. [Christophe Jaillet]
67
68   *) core: Drop an invalid Last-Modified header value coming
69      from a FCGI/CGI script instead of replacing it with Unix epoch.
70      Warn the users about Last-Modified header value replacements
71      and violations of the RFC.
72      [Yann Ylavic, Luca Toscano, William Rowe, Jacob Champion]
73
74   *) mod_dav: Allow other modules to become providers and add ACLs
75      to the DAV response.
76      [Jari Urpalainen <jari.urpalainen nokia.com>, Graham Leggett]
77
78   *) mod_dav: Add dav_begin_multistatus, dav_send_one_response,
79      dav_finish_multistatus, dav_send_multistatus, dav_handle_err,
80      dav_failed_proppatch, dav_success_proppatch to mod_dav.h.
81      [Jari Urpalainen <jari.urpalainen nokia.com>, Graham Leggett]
82
83   *) core: Add -DDUMP_INCLUDES configtest option to show the tree
84      of Included configuration files.  [Jacob Champion <champion.pxi gmail.com>]
85
86   *) mod_dav: Add support for childtags to dav_error.
87      [Jari Urpalainen <jari.urpalainen nokia.com>]
88
89   *) mod_proxy, mod_ssl: Handle SSLProxy* directives in <Proxy> sections,
90      allowing per backend TLS configuration.  [Yann Ylavic]
91
92   *) core: explicitly exclude 'h2' from protocols announced via an Upgrade: 
93      header as commanded by http-wg. [Stefan Eissing]
94
95   *) http: Respond with "408 Request Timeout" when a timeout occurs while
96      reading the request body.  [Yann Ylavic]
97
98   *) scoreboard/status: Keep workers' previous Client, VHost and Request values
99      when idle, like in 2.4.18 and earlier.  [Yann Ylavic]
100
101   *) mod_proxy_ajp: Add "secret" parameter to proxy workers to implement legacy
102      AJP13 authentication.  PR 53098.  [Dmitry A. Bakshaev <dab1818 gmail com>]
103
104   *) mpm_event: Don't take over scoreboard slots from gracefully finishing
105      threads. [Stefan Fritsch]
106
107   *) mod_status: Display the process slot number in the async connection
108      overview. [Stefan Fritsch]
109
110   *) mpm_event, mpm_worker: Fix computation of MinSpareThreads' lower bound
111      according the number of listeners buckets.  [Yann Ylavic]
112
113   *) mpm: Generalise the ap_mpm_register_socket functions to accept pipes
114      or sockets. [Graham Leggett]
115
116   *) core: Extend support for setting aside data from the network input filter
117      to any connection or request input filter. [Graham Leggett]
118
119   *) mod_ssl: Add "no_crl_for_cert_ok" flag to SSLCARevocationCheck directive
120      to opt-in previous behaviour (2.2) with CRLs verification when checking
121      certificate(s) with no corresponding CRL.  [Yann Ylavic]
122
123   *) core: Split ap_create_request() from ap_read_request(). [Graham Leggett]
124
125   *) ab: Use caseless matching for HTTP tokens (e.g. content-length). PR 59111.
126      [Yann Ylavic]
127
128   *) mod_auth_digest: Fix compatibility with expression-based Authname. PR59039.
129      [Eric Covener]
130
131   *) mpm: Add a complete_connection hook that confirms whether an MPM is allowed
132      to leave the WRITE_COMPLETION phase. Move filter code out of the MPMs.
133      [Graham Leggett]
134
135   *) core: Added support for HTTP code 451. PR58985.
136      [Yehuda Katz <yehuda ymkatz.net>, Jim Jagielski]
137
138   *) mod_ssl: Add support for OpenSSL 1.1.0. [Rainer Jung]
139
140   *) mod_filter: Fix AddOutputFilterByType with non-content-level filters.
141      PR58856 [Micha Lenk <micha lenk.info>]
142
143   *) mod_cache: Consider Cache-Control: s-maxage in expiration
144      calculations.  [Eric Covener]
145
146   *) mod_cache: Allow caching of responses with an Expires header
147      in the past that also has Cache-Control: max-age or s-maxage.
148      PR55156. [Eric Covener]
149
150   *) Added many log numbers to log statements that had none.
151
152   *) mod_session: Introduce SessionExpiryUpdateInterval which allows to
153      configure the session/cookie expiry's update interval. PR 57300.
154      [Paul Spangler <paul.spangler ni.com>]
155
156   *) core: Extend support for asynchronous write completion from the
157      network filter to any connection or request filter. [Graham Leggett]
158
159   *) mpm_event: Free memory earlier when shutting down processes.
160      [Stefan Fritsch]
161
162   *) mod_auth_digest: remove AuthDigestEnableQueryStringHack which is no
163      more documented since dec 2012 (r1415960). [Christophe Jaillet]
164
165   *) mod_charset_lite: On EBCDIC platforms, make sure mod_charset_lite runs
166      after other resource-level filters. [Eric Covener]
167
168   *) mod_dir: Responses that go through "FallbackResource" might appear to
169      hang due to unterminated chunked encoding. PR58292. [Eric Covener]
170
171   *) http: Don't remove the Content-Length of zero from a HEAD response if
172      it comes from an origin server, module or script.  [Yann Ylavic]
173
174   *) http: Add support for RFC2324/RFC7168. [Graham Leggett]
175
176   *) mod_rewrite: Add support for starting External Rewriting Programs
177      as non-root user on UNIX systems by specifying username and group name
178      as third argument of RewriteMap directive. [Jan Kaluza]
179
180   *) mod_authn_core: Add expression support to AuthName and AuthType.
181      [Graham Leggett]
182
183   *) suexec: Filter out the HTTP_PROXY environment variable because it is
184      treated as alias for http_proxy by some programs. [Stefan Fritsch]
185
186   *) mod_proxy_http: Don't establish or reuse a backend connection before pre-
187      fetching the request body, so to minimize the delay between it is supposed
188      to be alive and the first bytes sent: this is a best effort to prevent the
189      backend from closing because of idle or keepalive timeout in the meantime.
190      Also, handle a new "proxy-flushall" environment variable which allows to
191      flush any forwarded body data immediately. PR 56541+37920. [Yann Ylavic]
192
193   *) core: Define and UnDefine are no longer permitted in
194      directory context. Previously they would always be evaulated
195      as the configuration was read without regard for the directory
196      context. [Eric Covener]
197
198   *) config: For directives that do not expect any arguments, enforce
199      that none are specified in the configuration file. 
200      [Joachim Zobel <jzobel heute-morgen.de>, Eric Covener]
201
202   *) mod_rewrite: Improve 'bad flag delimeters' startup error by showing
203      how the input was tokenized.  PR 56528. [Edward Lu <Chaosed0 gmail.com>]
204
205   *) mod_proxy: Don't put non balancer-member workers in error state by
206      default for connection or 500/503 errors, and honor status=+I for
207      any error.  PR 48388.  [Yann Ylavic]
208
209   *) mod_socache_memcache: Pass expiration time through to memcached. PR 55445.
210      [Faidon Liambotis <paravoid debian.org>, Joe Orton]
211
212   *) ap_expr: Add filemod function for checking file modification dates
213      [Daniel Gruno]
214
215   *) mod_authnz_ldap: Resolve crashes with LDAP authz and non-LDAP authn since 
216      r1608202. [Eric Covener]
217
218   *) apreq: Content-Length header should be always interpreted as a decimal.
219      Leading 0 could be erroneously considered as an octal value. PR 56598.
220      [Chris Card <ctcard hotmail com>]
221
222   *) mod_proxy: Now allow for 191 character worker names, with non-fatal
223      errors if name is truncated. PR53218. [Jim Jagielski]
224
225   *) mod_ssl: Add optional function "ssl_get_tls_cb" to allow support
226      for channel bindings.  [Simo Sorce <simo redhat.com>]
227
228   *) mod_proxy_wstunnel: Concurrent websockets messages could be 
229      lost or delayed with ProxyWebsocketAsync enabled.  
230      [Edward Lu <Chaosed0 gmail.com>]
231
232   *) core, mod_info: Add compiled and loaded PCRE versions to version
233      number display.  [Rainer Jung]
234
235   *) mod_authnz_ldap: Return LDAP connections to the pool before the handler
236      is run, instead of waiting until the end of the request. [Eric Covener]
237
238   *) mod_proxy_html: support automatic detection of doctype and processing
239      of FPIs.  PR56285 [Micha Lenk <micha lenk info>, Nick Kew]
240
241   *) mod_proxy_html: skip documents shorter than 4 bytes
242      PR 56286 [Micha Lenk <micha lenk info>]
243
244   *) mod_proxy_fdpass: Fix computation of the size of 'struct sockaddr_un'
245      when passed to 'connect()'.
246      [Graham Dumpleton <grahamd apache org>]
247
248   *) core: Add ap_mpm_resume_suspended() API to allow a suspended connection
249      to resume. PR56333 
250      [Artem <artemciy gmail.com>, Edward Lu <Chaosed0 gmail.com>]
251
252   *) core: Add ap_mpm_register_socket_callback_timeout() API. [Eric Covener]
253
254   *) mod_proxy_wstunnel: Honor ProxyWebsocketIdleTimeout in asynchronous
255      processing mode. [Eric Covener]
256
257   *) mod_authnz_ldap: Fail explicitly when the filter is too long. Remove
258      unnecessary apr_pstrdup() and strlen(). [Graham Leggett]
259
260   *) Add the ldap-search option to mod_authnz_ldap, allowing authorization
261      to be based on arbitrary expressions that do not include the username.
262      [Graham Leggett]
263
264   *) Add the ldap function to the expression API, allowing LDAP filters and
265      distinguished names based on expressions to be escaped correctly to
266      guard against LDAP injection. [Graham Leggett]
267
268   *) Add module mod_ssl_ct, which provides an implementation of Certificate
269      Transparency (RFC 6962) for httpd.  [Jeff Trawick]
270
271   *) mod_proxy_wstunnel: Avoid sending error responses down an upgraded
272      websockets connection as it is being close down. [Eric Covener]
273
274   *) mod_proxy_wstunnel: Allow the administrator to cap the amount
275      of time a synchronous websockets connection stays idle with 
276      ProxyWebsocketIdleTimeout. [Eric Covener]
277
278   *) mod_proxy_wstunnel: Change to opt-in for asynchronous support, adding 
279      directives ProxyWebsocketAsync and ProxyWebsocketAsyncDelay. 
280      [Eric Covener]
281
282   *) mod_proxy_wstunnel: Stop leaking websockets backend connections under
283      event MPM (trunk-only). [Eric Covener]
284
285   *) mod_proxy_http: Add detach_backend hook (potentially usable
286      in other proxy scheme handlers).  [Jeff Trawick]
287
288   *) mod_deflate: Add DeflateAlterETag to control how the ETag
289      is modified. The 'NoChange' parameter mimics 2.2.x behavior.
290      PR 45023, PR 39727. [Eric Covener]
291
292   *) mod_rewrite: Add 'BNF' (backreferences-no-plus) flag to RewriteRule to 
293      allow spaces in backreferences to be encoded as %20 instead of '+'.
294      [Eric Covener]
295
296   *) mod_rewrite: Support an optional list of characters to escape in the 
297      argument for the 'B' (escape backreferences) flag. [Eric Covener]
298
299   *) mod_dir: Default to 2.2-like behavior and skip execution when method is
300      neither GET nor POST, such as for DAV requests. PR 54914. [Chris Darroch]
301
302   *) mod_rewrite: Rename the handler that does per-directory internal 
303      redirects to "rewrite-redirect-handler" from "redirect-handler" so
304      it is less ambiguous and less likely to be reused. [Eric Covener]
305
306   *) mod_rewrite: Protect against looping with the [N] flag by enforcing a 
307      default limit of 10000 iterations, and allowing each rule to change its
308      limit. [Eric Covener]
309
310   *) mod_ssl: Fix config merging of SSLOCSPEnable and SSLOCSPOverrideResponder.
311      [Jeff Trawick]
312
313   *) Add HttpContentLengthHeadZero and HttpExpectStrict directives.
314      [Yehuda Sadeh <yehuda inktank com>, Justin Erenkrantz]
315
316   *) mod_ssl: Add -t -DDUMP_CA_CERTS option which dumps the filenames of all
317      configured SSL CA certificates to stdout the same way as DUMP_CERTS does.
318      [Jan Kaluza]
319
320   *) mod_ssl: Don't flush when an EOS is received. Prepares mod_ssl
321      to support write completion. [Graham Leggett]
322
323   *) core: Add parse_errorlog_arg callback to ap_errorlog_provider
324      to allow providers to check the ErrorLog argument. [Jan Kaluza]
325
326   *) mod_cgid: Use the servers Timeout for each read from a CGI script,
327      allow override with new CGIDRequestTimeout directive. PR43494
328      [Eric Covener, Toshikuni Fukaya <toshikuni-fukaya cybozu co jp>]
329
330   *) core: ensure any abnormal exit is reported to stderr if it's a tty.
331      PR 55670 [Nick Kew]
332
333   *) mod_lua: Let the Inter-VM get/set functions work with a global 
334      shared memory pool instead of a per-process pool. [Daniel Gruno]
335
336   *) ldap: Support ldaps when using the Microsoft LDAP SDK.
337      PR 54626. [Jean-Frederic Clere]
338
339   *) mod_authnz_ldap: Change default value of AuthLDAPMaxSubGroupDepth to 0
340      to avoid performance problems when subgroups aren't in use. [Eric Covener]
341
342   *) mod_syslog: New module implementing syslog ap_error_log provider.
343      Previously, this code was part of core, now it's in separate module.
344      [Jan Kaluza]
345
346   *) core: Add ap_errorlog_provider to make ErrorLog logging modular. Move
347      syslog support from core to new mod_syslog. [Jan Kaluza]
348
349   *) mod_status, mod_echo: Fix the display of client addresses.
350      They were truncated to 31 characters which is not enough for IPv6 addresses.
351      PR 54848 [Bernhard Schmidt <berni birkenwald de>]
352
353   *) mod_unique_id: Use output of the PRNG rather than IP address and
354      pid, avoiding sleep() call and possible DNS issues at startup,
355      plus improving randomness for IPv6-only hosts.
356      [Jan Kaluza <jkaluza redhat.com>]
357
358   *) mod_file_cache: mod_file_cache should be able to serve files that
359      haven't had a Content-Type set via e.g. mod_mime. [Eric Covener]
360
361   *) core: merge AllowEncodedSlashes from the base configuration into
362      virtual hosts. [Eric Covener]
363
364   *) AIX: Install DSO's with "cp" instead of "install" in instdso.sh
365      [Eric Covener]
366
367   *) mod_ldap: Don't keep retrying if a new LDAP connection times out.
368      [Eric Covener]
369
370   *) mod_deflate: permit compilation of mod_deflate against a zlib that has
371      been configured with -D Z_PREFIX, which redefines the token "deflate".
372      [Eric Covener]
373
374   *) mod_auth_digest: Use the secret when generating nonces in all cases and
375      not only when AuthName is used in .htaccess files (this change may cause
376      problems if used with round robin load balancers). Don't regenerate the
377      secret on graceful restarts. PR 54637  [Stefan Fritsch]
378
379   *) core: Remove apr_brigade_flatten(), buffering and duplicated code
380      from the HTTP_IN filter, parse chunks in a single pass with zero copy.
381      Reduce memory usage by 48 bytes per request. [Graham Leggett]
382
383   *) core: Stop the HTTP_IN filter from attempting to write error buckets
384      to the output filters, which is bogus in the proxy case. Create a
385      clean mapping from APR codes to HTTP status codes, and use it where
386      needed. [Graham Leggett]
387
388   *) mod_proxy: Ensure network errors detected by the proxy are returned as
389      504 Gateway Timout as opposed to 502 Bad Gateway, in order to be
390      compliant with RFC2616 14.9.4 Cache Revalidation and Reload Controls.
391
392   *) mod_dav: mod_dav overrides dav_fs response on PUT failure. PR 35981
393      [Basant Kumar Kukreja <basant.kukreja sun.com>, Alejandro Alvarez
394      <alejandro.alvarez.ayllon cern.ch>]
395
396   *) mod_ldap: LDAP connections used for authentication were not respecting
397      LDAPConnectionPoolTimeout.  PR 54587
398
399   *) core: ap_rgetline_core now pulls from r->proto_input_filters.
400
401   *) mod_proxy_html: process parsed comments immediately. 
402      Fixes bug where parsed comments may be lost. [Nick Kew]
403
404   *) mod_proxy_html: introduce doctype for HTML 5 [Nick Kew]
405
406   *) mod_proxy_html: fix typo-bug processing "strict" vs "transitional"
407      HTML/XHTML [Nick Kew]
408
409   *) core: Add option to add valgrind support. Use it to reduce false positive
410      warnings in mod_ssl. [Stefan Fritsch]
411
412   *) mod_authn_file, mod_authn_dbd, mod_authn_dbm, mod_authn_socache:
413      Cache the result of the most recent password hash verification for every
414      keep-alive connection. This saves some expensive calculations.
415      [Stefan Fritsch]
416
417   *) http: Remove support for Request-Range header sent by Navigator 2-3 and
418      MSIE 3. [Stefan Fritsch]
419
420   *) core, http: Extend HttpProtocol with an option to enforce stricter HTTP
421      conformance or to only log the found problems. [Stefan Fritsch]
422
423   *) core: Correctly parse an IPv6 literal host specification in an absolute
424      URL in the request line. [Stefan Fritsch]
425
426   *) EventOpt MPM
427
428   *) core: Add LogLevelOverride directive that allows to override the
429      loglevel for clients from certain IPs. This also works for things
430      like the SSL handshake where <If> LogLevel ... </If> is evaluated
431      too late. [Stefan Fritsch]
432
433   *) core: Add new directive Warning to issue warnings from a configuration
434      file. Both Warning and Error now generate a timestamped log message.
435      [Fabien Coelho] 
436
437   *) ap_expr: Add SERVER_PROTOCOL_VERSION, ..._MAJOR, and ..._MINOR
438      variables. [Stefan Fritsch]
439
440   *) core: New directive RegisterHttpMethod for registering non-standard
441      HTTP methods. [Stefan Fritsch]
442
443   *) core: New directive HttpProtocol which allows to disable HTTP/0.9
444      support. [Stefan Fritsch]
445
446   *) mod_allowhandlers: New module to forbid specific handlers for specific
447      directories. [Stefan Fritsch]
448
449   *) mod_systemd: New module, for integration with systemd on Linux.
450      [Jan Kaluza <jkaluza redhat.com>]
451
452   *) WinNT MPM: Store pid and generation for each thread in scoreboard
453      to allow tracking of threads from exiting children via mod_status
454      or other such mechanisms.  [Jeff Trawick]
455
456   *) The following now respect DefaultRuntimeDir/DEFAULT_REL_RUNTIMEDIR:
457      - APIs: ap_log_pid(), ap_remove_pid, ap_read_pid()
458      - mod_cache: thundering herd lock directory
459      - mod_lbmethod_heartbeat, mod_heartmonitor: heartbeat storage file
460      - mod_ldap: shared memory cache
461      - mod_socache_shmcb, mod_socache_dbm: shared memory or dbm for cache
462      [Jeff Trawick]
463
464   *) suexec: Add --enable-suexec-capabilites support on Linux, to use
465      setuid/setgid capability bits rather than a setuid root binary.
466      [Joe Orton]
467
468   *) suexec: Add support for logging to syslog as an alternative to logging
469      to a file; configure --without-suexec-logfile --with-suexec-syslog.  
470      [Joe Orton]
471
472   *) mod_ssl: Add support for TLS Next Protocol Negotiation.  PR 52210.
473      [Matthew Steele <mdsteele google.com>]
474
475   *) cross-compile: allow to provide CC_FOR_BUILD so that gen_test_char will
476      be compiled by the build compiler instead of the host compiler.
477      Also set CC_FOR_BUILD to 'cc' when cross-compilation is detected.
478      PR 51257. [Guenter Knauf]
479
480   *) core: In maintainer mode, replace apr_palloc with a version that
481      initializes the allocated memory with non-zero values, except if
482      AP_DEBUG_NO_ALLOC_POISON is defined. [Stefan Fritsch]
483
484   *) mod_policy: Add a new testing module to help server administrators
485      enforce a configurable level of protocol compliance on their
486      servers and application servers behind theirs. [Graham Leggett]
487
488   *) mod_firehose: Add a new debugging module able to record traffic
489      passing through the server in such a way that connections and/or
490      requests be reconstructed and replayed. [Graham Leggett]
491
492   *) mod_noloris
493
494   *) APREQ
495
496   *) Simple MPM
497
498   *) mod_serf
499
500   [Apache 2.5.0-dev includes those bug fixes and changes with the
501    Apache 2.4.xx tree as documented below, except as noted.]
502
503 Changes with Apache 2.4.x and later:
504
505   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/CHANGES?view=markup
506
507 Changes with Apache 2.2.x and later:
508
509   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup
510
511 Changes with Apache 2.0.x and later:
512
513   *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
514