1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
List of changes
===============
This file contains the running log of changes applied to each released hitch
version.
hitch-1.8.0 (2023-08-09)
------------------------
* Added command line option ``--backend-connect-timeout`` and
corresponding configuration file setting
``backend-connect-timeout``.
* Added command line option ``--ssl-handshake-timeout`` and
corresponding configuration file setting ``ssl-handshake-timeout``.
* The ``client-verify`` configuration file setting can now also be
applied at the ``pem-file`` level, making it only apply if that
particular certificate is chosen.
* Fixed a bug where we would change file ownership of the output log
file also when not needed. (Issue: 371_)
* Number of worker processes can now be specified as ``auto``, which
will automatically create one worker per CPU on the system. This
setting is available both for the ``--workers`` command line option
and for the ``workers`` configuration file setting. Thanks to
Thierry Magnien (@tmagnien) for the contribution.
* Fixed a bug that prevented configuring a UNIX domain socket backend
when the ``--chroot`` setting was specified.
.. _371: https://github.com/varnish/hitch/issues/371
hitch-1.7.3 (2022-09-14)
------------------------
* Fixes build for OpenSSL 3.0.
hitch-1.7.2 (2021-11-29)
------------------------
* pem-dir now works correctly also for file systems without proper
file type classification in readdir(). Thanks got Xavier G
(@xavierog).
* Fix an issue in ``proxy-proxy`` error handling.
* Minor build-related fixes.
hitch-1.7.1 (2021-04-19)
------------------------
* Drop the requirement that PROXYv2 needs to be configured in order to
use ALPN.
* Minor (inconsequential) memory leak fixed.
* Minor build-related fixes.
hitch-1.7.0 (2020-10-23)
------------------------
* The following command line settings now accept a '--<setting>=on' or
'--<setting>=off' option: ``--prefer-server-ciphers``,
``--enable-tcp-fastopen``, ``--quiet``, ``--syslog``, ``--daemon``,
``--write-ip``, ``--write-proxy-v1``, ``--write-proxy-v2``,
``--write-proxy``, ``--proxy-proxy`` and ``--sni-nomatch-abort``.
* Added command line option ``--tls-protos``. This is equivalent to
the configuration file setting ``tls-protos``, and lets you specify
which TLS protocols to configure. The default setting is
``--tls-protos="TLSv1.2 TLSv1.3"``.
* Fixed an issue relating to imbalanced load distribution when running
with multiple worker processes. Hitch will now distribute work much
more evenly in multi-worker setups. (Issue: 142_)
* The ``--proxy-proxy`` setting will now also parse and forward
PROXYv2 (Issue: 249_).
* Added PROXY setting ``proxy-client-cert``, which will amend the
PROXYv2 header with the full PEM-formatted client certificate as a
custom TLV value (0xe0).
.. _142: https://github.com/varnish/hitch/issues/142
.. _249: https://github.com/varnish/hitch/issues/249
hitch-1.6.1 (2020-08-31)
------------------------
* Fix an issue in our PROXYv2 handling that caused us to sometimes
transmit a wrong 'verify' status code for client certificate
validation.
* Fix build for OpenSSL without NPN/APLN support. Thanks to Wataru
Ashihara.
hitch-1.6.0 (2020-06-25)
------------------------
* Added support for client certificate validation. This is specified
via the new ``client-verify`` and ``client-verify-ca`` configuration
settings. See hitch.conf(5) for more details.
* Added support for a few PROXY properties for client certificate
validation. When Hitch is used alongside Varnish, one may make use
of vmod-proxy's proxy.client_has_cert_sess(),
proxy.ssl_verify_result() and proxy.client_has_cert_conn().
* TLSv1.3 cipher suites can now be configured via the ``ciphersuites``
configuration file setting.
* Added ``ecdh-curve`` configuration file setting for specifying the
list of supported TLS curves.
* Default ``log-level`` is now set to 1, making Hitch slightly more
chatty by default.
* Fixed a bug related to session resumption with client certificate
verification enabled, where some clients would fail resumption with
a "session id context uninitialized" error message.
* Fixed a very minor memory leak, and a few other minor code cleanups.
* Various minor documentation fixes
hitch-1.6.0~beta3 (2020-06-22)
------------------------------
* Fix a bug related to session resumption with client certificate
verification enabled, where some clients would fail resumption with
a "session id context uninitialized" error message.
hitch-1.6.0~beta2 (2020-05-29)
------------------------------
* Added support for a few PROXY properties for client certificate
validation. When Hitch is used alongside Varnish, one may make use
of vmod-proxy's proxy.client_has_cert_sess(),
proxy.ssl_verify_result() and proxy.client_has_cert_conn().
hitch-1.6.0-beta1 (2020-05-27)
------------------------------
* TLSv1.3 cipher suites can now be configured via the ``ciphersuites``
configuration file setting.
* Added ``ecdh-curve`` configuration file setting for specifying the
list of supported TLS curves.
* Default ``log-level`` is now set to 1, making Hitch slightly more
chatty by default.
* Added support for client certificate validation. This is specified
via the new ``client-verify`` and ``client-verify-ca`` configuration
settings. See hitch.conf(5) for more details.
* Fixed a very minor memory leak, and a few other minor code cleanups.
hitch-1.5.2 (2019-11-27)
------------------------
* Fix a problem introduced in the previous release that prevented us
from running as a non-privileged user (Issue: 322_).
.. _322: https://github.com/varnish/hitch/issues/322
hitch-1.5.1 (2019-11-26)
------------------------
* Support for TCP Fast Open. Is is disabled by default (Issue: 185_)
* Various code cleanups and minor bug fixes.
.. _185: https://github.com/varnish/hitch/issues/185
hitch-1.5.0 (2018-12-17)
------------------------
* Support for UNIX domain socket connections. A backend endpoint can
now be specified as a UNIX domain socket, via ``backend = "/path/to/socket"``.
* New configuration file settings ``pem-dir`` and ``pem-dir-glob``.
``pem-dir`` can be used to specify a directory
for loading certificates, without specifying each file individually.
* Support for TLS 1.3. Thanks to Lasse Karstensen.
* Fixed a bug that would cause a crash on reload if ``ocsp-dir`` was
changed.
* Add ``log-level``. This supersedes the previous ``quiet`` setting,
which is now deprecated.
* Add ``proxy-tlv``. This enables extra reporting of cipher and
protocol as part of the PROXYv2 protocol.
* Drop TLSv1.1 from the default TLS protocols list.
hitch-1.4.8 (2018-04-19)
------------------------
* Reworked the dynamic backend bits.
* Update docs to recommend running Hitch as a separate non-privileged
user.
hitch-1.4.7 (2018-01-11)
------------------------
* Massive test suite refactor and update.
* Fix OpenBSD/FreeBSD/POSIX portability issues: restrict fstat(1) to OpenBSD,
bring sockstat(1) support back, drop pathchk(1) usage in the test suite,
switch from sockstat(1) to fstat(1) (Issue: 234_)
* Add an OCSP refresh timeout parameter (Issue: 229_)
* Autotools polish (Issue: 231_)
* Random usage of config section if reduntant (Issue: 192_)
* Support for separate key files (Issue: 65_)
* Fix logging to syslog even when set to syslog = off (Issue: 187_)
* Making log-filename, recv-bufsize and send-bufsize parameters available
though command line and config file.
* Fix: global backaddr is assumed to be static (Issue: 84_)
* Add support for session-cache in config file and as cmdline option
(Issue: 166_)
* Plug file descriptor leak: killing worker processes would leave the pipe's
write end open, leaking one file descriptor per worker upon reload
(Issue: 193_)
.. _234: https://github.com/varnish/hitch/issues/234
.. _229: https://github.com/varnish/hitch/issues/229
.. _231: https://github.com/varnish/hitch/issues/231
.. _192: https://github.com/varnish/hitch/issues/192
.. _65: https://github.com/varnish/hitch/issues/65
.. _187: https://github.com/varnish/hitch/issues/187
.. _84: https://github.com/varnish/hitch/issues/84
.. _166: https://github.com/varnish/hitch/issues/166
.. _193: https://github.com/varnish/hitch/issues/193
hitch-1.4.6 (2017-06-06)
------------------------
* Fix a problem that broke mock-based builds for el6/el7 (Issue 181_)
.. _181: https://github.com/varnish/hitch/issues/181
hitch-1.4.5 (2017-05-31)
------------------------
* Set SSL_OP_SINGLE_ECDH_USE to force a fresh ECDH key pair per
handshake (Issue 155_)
* Fix a bug where we ended up leaking a zombie process on reload
(Issue 167_). Thank you to @dward
* Fix a bug where the management process could not find its
configuration files after a reload when chroot was configured (Issue 176_)
* Output the offending line on a configuration file parsing error
* Fix build for non-C99/C11 compilers (Issue 173_)
* Fix the shared cache code to make it work also with OpenSSL 1.1.0
* Fix an unchecked loop situation that could occur when running
with shared cache enabled (Issue 152_)
* Various autotools configuration fixes
* A few minor doc fixes
.. _155: https://github.com/varnish/hitch/issues/155
.. _167: https://github.com/varnish/hitch/issues/167
.. _176: https://github.com/varnish/hitch/issues/176
.. _173: https://github.com/varnish/hitch/issues/173
.. _152: https://github.com/varnish/hitch/issues/152
hitch-1.4.4 (2016-12-22)
------------------------
* OpenSSL 1.1.0 compatibility fixes. OpenSSL 1.1.0 is now fully
supported with Hitch.
* Fix a bug in the OCSP refresh code that could make it loop with
immediate refreshes flooding an OCSP responder.
* Force the SSL_OP_SINGLE_DH_USE setting. This protects against an
OpenSSL vulnerability where a remote attacker could discover private
DH exponents (CVE-2016-0701).
hitch-1.4.3 (2016-11-14)
------------------------
* OCSP stapling is now enabled by default.
Users should create ocsp-dir (default: /var/lib/hitch/) and make it
writable for the hitch user.
* Build error due to man page generation on FreeBSD (most likely non-Linux)
has been fixed.
hitch-1.4.2 (2016-11-08)
------------------------
* Example configuration file hitch.conf.example has been shortened and
defaults moved into Hitch itself. Default cipher string is now what we
believe to be secure. Users are recommended to use the built-in default
from now on, unless they have special requirements.
* hitch.conf(5) manual has been added.
* Hitch will now send a TLS Close notification during connection teardown.
This fixes an incomplete read with a GnuTLS client when the backend
(thttpd) used EOF to signal end of data, leaving some octets discarded
by gnutls client-side. (Issue 127_)
* Autotools will now detect SO_REUSEPORT availability. (Issue 122_)
* Improved error handling on memory allocation failure.
.. _122: https://github.com/varnish/hitch/issues/122
.. _127: https://github.com/varnish/hitch/issues/127
hitch-1.4.1 (2016-09-23)
------------------------
* Add a new ``tls-protos`` configuration option for specifying the
permitted TLS/SSL protocols. This new option supersedes settings
``ssl`` and ``tls`` which are now deprecated and will be kept for
backwards compatibility.
hitch-1.4.0 (2016-09-12)
------------------------
* Fix a bug in the OCSP request code where it broke if the OCSP
responder required a Host header. (Issue 113_)
* Add support for ECC certificates. (Issue 116_)
.. _113: https://github.com/varnish/hitch/issues/113
.. _116: https://github.com/varnish/hitch/issues/116
hitch-1.4.0-beta1 (2016-08-26)
------------------------------
* NPN/ALPN support for negotiating a protocol in the SSL
handshake. This lets you use Hitch for terminating TLS in front of
an HTTP/2 capable backend. For ALPN, OpenSSL 1.0.2 is needed, while
NPN requires OpenSSL 1.0.1.
* Expanded PROXY protocol support for communicating an ALPN/NPN
negotiated protocol to the backend. Hitch will now include the
ALPN/NPN protocol that was selected during the handshake as part of
the PROXYv2 header.
hitch-1.3.1 (2016-08-16)
------------------------
* Fixes a bug in the autotools configuration which led to man pages not being built.
hitch-1.3.0 (2016-08-16)
------------------------
* Fix a bug where we crashed in the OCSP handling if there was no
default SSLCTX configured.
* Minor documentation fix.
hitch-1.3.0-beta3 (2016-07-26)
------------------------------
* Fully automated retrieval and refreshes of OCSP responses (see
configuration.md for details).
* New parameters ``ocsp-dir``, ``ocsp-resp-tmo`` and ``ocsp-connect-tmo``.
* Cleanup of various log messages.
* Verification of OCSP staples. Enabled by setting
``ocsp-verify-staple = on``.
* Make rst2man an optional requirement (Issue 93_). Thanks to Barry Allard.
* Avoid stapling expired OCSP responses.
* A few fixes to the shared cache updating code. Thanks to Piyush Dewnani.
.. _93: https://github.com/varnish/hitch/issues/93
hitch-1.3.0-beta2 (2016-05-31)
------------------------------
* Options given on the command line now take presedence over
configuration file settings. I.e. there is no longer a need to
specify ``--config`` first to get this behavior.
* Config file regression: "yes" and "no" are now accepted by the
config file parser as boolean values.
* Documentation improvements and spelling fixes.
* Various minor autotools build fixes.
hitch-1.3.0-beta1 (2016-05-11)
------------------------------
* Support for OCSP stapling (see configuration.md for details)
* Initialize OpenSSL locking callback if an engine is loaded. Some SSL
accelerator cards have their custom SSL engine running in a
multithreaded context. For these to work correctly, Hitch needs to
initialize a set of mutexes utilized by the OpenSSL library.
* Issue 82_: A mistake in the SNI lookup code caused us to inspect the wrong
list when looking for wildcard certificate matches.
.. _82: https://github.com/varnish/hitch/issues/82
hitch-1.2.0 (2016-04-19)
------------------------
* Fixes two minor leaks discovered by Coverity
* Issue 72_: Fix a error handling for command line --frontend option.
* Various autotools improvements
* Parallel make check
.. _72: https://github.com/varnish/hitch/issues/72
hitch-1.2.0-beta1 (2016-02-25)
------------------------------
* Expanded configuration file format to permit settings various
options at a more granular level.
* The following options can now be set on a per-frontend basis:
``pem-file``, ``ssl``, ``tls``, ``ciphers``,
``prefer-server-ciphers``, ``sni-nomatch-abort``
* Added options ``host`` and ``port`` for specifying the listening
endpoint in a ``frontend`` block.
* Added option ``match-global-certs`` (available in a ``frontend``
declaration)
hitch-1.1.1 (2016-01-26)
------------------------
* Remove compiler warning on FreeBSD.
* Fix fatal build error for manpage on FreeBSD.
* Issue 55_: Fix a bug which caused the Hitch worker threads to sometimes
hit an assert after a configuration reload.
* Issue 57_: Slightly reorganize assertion handling.
* Issue 52_: Fix a bug where we would crash on --help.
* Various minor documentation changes.
.. _57: https://github.com/varnish/hitch/issues/57
.. _55: https://github.com/varnish/hitch/issues/55
.. _52: https://github.com/varnish/hitch/issues/52
hitch-1.1.0 (2015-11-20)
------------------------
* Avoid leaking memory if failing to create an SSL context. (Coverity)
* Fix possible memory leak in create_listen_sock(). (Coverity)
hitch-1.1.0-beta1 (2015-11-06)
------------------------------
* [dist] init.hitch file has been removed, CHANGES.rst is now distributed.
* [configure] session cache support can now be enabled. (default off)
* Fixes an off-by-one bug that broke wildcard certificate matching.
* Set the IPV6_V6ONLY socket option for IPv6 listen sockets in order
to avoid conflicts between INADDR_ANY and IN6ADDR_ANY.
* Uninterrupted configuration reload of PEM files and frontend listen
endpoints.
* Priv-sep: To permit configuration reloads, privileges are now
dropped in the child processes, and elevated privileges are retained
in the management process.
* Various error messages are now rewritten to be more specific about
what went wrong.
* A warning is issued if multiple certificates contain identical
server name entries.
* Initialize ECDH also for certificates without DH parameters (patch
from Fedor Indutny).
hitch-1.0.1 (2015-10-15)
------------------------
* Fix configuration parsing bug skipping short values, typically "workers = 1".
* Tarball now contains an example configuration file.
hitch-1.0.0 (2015-10-07)
------------------------
* A hash table is now used for faster SNI lookups.
* Hitch binary has been renamed back to `hitch`, previously `hitch-openssl`.
* Man page is updated.
hitch-1.0.0-beta5 (2015-08-17)
------------------------------
* Issue 37_: Fixes a bug related to a varargs buffer that was consumed twice
with syslog logging enabled.
* --default-config retired and replaced by shipping a sample configuration file.
* Use accept4() where supported.
* --write-proxy now defaults to PROXY v2. This is a BREAKING CHANGE if PROXY1
is used. For PROXY v1, use --write-proxy-v1 explicitly.
* Various minor error handling fixes.
.. _37: https://github.com/varnish/hitch/issues/37
hitch 1.0.0-beta4 (2015-07-08)
------------------------------
In general beta4 contains fixes to problems found with Coverity. These
were all of minor character, but were fixed for completeness.
Source code has been reindented from 3-4 different formatting
styles to FreeBSD style.
hitch 1.0.0-beta3 (2015-06-18)
------------------------------
* Drop supplementary groups when doing setgid(). (Issue 31_)
* Add --sni-nomatch-abort which abort connections on unknown SNI server
name. (useful for avoiding certificate warnings in clients attempting
probabilistic TLS upgrades)
* Remove cosmetic NULL-check before free(). (Issue 26_)
* Avoid segfault when testing configuration with -t. (Issue 22_)
* Minor helptext changes.
.. _31: https://github.com/varnish/hitch/issues/31
.. _26: https://github.com/varnish/hitch/issues/26
.. _22: https://github.com/varnish/hitch/issues/22
hitch 1.0.0-beta2 (2015-05-22)
------------------------------
* New --pidfile argument.
* Fixed bug in certificate ordering, avoiding wrong cert being provided when
running on dualstack servers. (found by test framework!)
* Rudimentary test framework implemented.
* Init script updates provided by Denis Brækhus.
* FreeBSD installation instructions added. (contributed by Ryan Steinmetz)
* autoconf configuration updated to work on EL6.
* Some forgotten references to stud were updated.
hitch 1.0.0-beta1 (2015-05-13)
------------------------------
Hitch 1.0.0-beta1 is based on stud 0.3.2. A selected set of public patches from
github forks were applied.
Notable changes:
* TLS v1.0, TLS v1.1 and TLS v1.2 support.
* Support for SNI added.
* Support PROXYv1 and PROXYv2 protocol to origin.
* Multiple listening sockets with possibly different default key/certificate.
* Wildcard certificates are supported. (with and without SNI.)
* SSL3.0 must now be enabled explicitly.
Various minor and stylistic fixed issues:
* Properly clean SSL error queue.
* Do not segfault if backend is not ready.
* Logging now knows about IPv6.
* IPv6 adresses should now use bracketed notation.
* Additional timeouts for backend connect and SSL handshake added.
* autoconf/automake is now used for building hitch.
|