Portable build framework for OpenNTPD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
5.7 KiB

7 years ago
  1. For detailed changes, see the changes either in the OpenBSD CVS repository or
  2. the GitHub mirror.
  3. OpenNTPD 6.7p0
  4. * ntpd now does constraint validation against 9.9.9.9 and 2620:fe::fe by default.
  5. * The ntpd daemon now gets and sets the clock in a secure way when booting
  6. even when a battery-backed clock is absent.
  7. * Improvements in DNS resolving and constraints checking, especially during
  8. startup. Unreliable NTP peers are removed from the pool and DNS resolving
  9. is repeated to add replacements.
  10. * Improved reliability and security of TLS constraint checking.
  11. * Improved logging of failure cases.
  12. * Prevent the case of multiple ntpds running at once by checking presence
  13. of the local control socket.
  14. * TLS certificates are now searched in TLS_CA_CERT_FILE.
  15. 2017-09-17 OpenNTPD 6.2p3
  16. * Fixed build on OS X
  17. 2017-09-07 OpenNTPD 6.2p2
  18. * Fixed support for 'query from' and clarified usage.
  19. 2017-07-13 OpenNTPD 6.2p1
  20. * Added option "query from <ip>" to ntpd.conf, to specify a local IP
  21. address for outgoing NTP queries.
  22. 2017-07-13 OpenNTPD 6.1p1
  23. * Quieted warnings about constraint connection retries.
  24. * Implemented fork+exec for ntpd child processes.
  25. * Added imsg inter-process reliability fixes.
  26. * Fixed memory leaks and reduced heap memory usage.
  27. * Numerous logging improvements and additions.
  28. * Added macOS 10.12 getentropy support.
  29. * Fixed arc4random blacklist use native implementations where
  30. possible.
  31. 2016-05-30 OpenNTPD 6.0p1
  32. * Fixed a link failure on older Linux distributions and a build
  33. failure on FreeBSD.
  34. * Set MOD_MAXERROR to avoid unsynced time status when using
  35. ntp_adjtime.
  36. * Fixed HTTP Timestamp header parsing to use strptime in a more
  37. portable fashion.
  38. * Hardened TLS for ntpd constraints, enabling server name
  39. verification. Thanks to Luis M. Merino.
  40. 2016-03-29 OpenNTPD 5.9p1
  41. * When a single "constraint" is specified, try all returned addresses
  42. until one succeeds, rather than the first returned address.
  43. * Relaxed the constraint error margin to be proportional to the number
  44. of NTP peers, avoid constant reconnections when there is a bad NTP
  45. peer.
  46. * Removed disabled hotplug sensor support.
  47. * Added support for detecting crashes in constraint subprocesses.
  48. * Moved the execution of constraints from the ntp process to the
  49. parent process, allowing for better privilege separation since the
  50. ntp process can be further restricted.
  51. * Added pledge(2) support.
  52. * Updated to require LibreSSL 2.3.2 or greater.
  53. * Fixed high CPU usage when the network is down.
  54. * Fixed various memory leaks.
  55. * Switched to RMS for jitter calculations.
  56. * Unified logging functions with other OpenBSD base programs.
  57. OpenNTPD portable-specific changes:
  58. * Added support for syncing time with the Realtime Clock (RTC) on OSes
  59. that require it.
  60. * CFLAGS is no longer overridden by the build system.
  61. * FreeBSD RTABLE support is disabled
  62. * FreeBSD is no longer linked with -lmd to avoid hash function
  63. collisions, causing failures in constraint certificate loading.
  64. * Fixed crashes due to __progname being used before initialized.
  65. * Added Solaris 10 compatibility.
  66. * Added --disable-https-constraint build option for explicitly
  67. disabling constraint support.
  68. * Synced build system files with LibreSSL
  69. The libtls library, as shipped with LibreSSL 2.3.2 or later, is
  70. required to use the HTTPS constraint feature, though it is not
  71. required to use OpenNTPD.
  72. 2015-03-24 OpenNTPD 5.7p4
  73. * Added support for HTTPS constraints to validate NTP responses.
  74. See the man page and example config file for how to configure it.
  75. The initial announcement:
  76. http://marc.info/?l=openbsd-tech&m=142356166731390&w=2 is an
  77. explanation of the rationale and how the feature works.
  78. * Workaround an apparent bug in Solaris adjtime that cause the clock
  79. to report sync/unsync continuously.
  80. * Workaround an issue on systems with 32-bit time_t that causes an
  81. overflow if the system time is later than early 2036.
  82. The libtls library, as shipped with LibreSSL 2.1.4 or later, is
  83. required to use the HTTPS constraint feature, though it is not
  84. required to use OpenNTPD.
  85. 2015-01-27 OpenNTPD 5.7p3
  86. * Fixed issue resolving hostnames when the network is initially
  87. unavailable.
  88. * Fixed process name logging on Linux and OS X.
  89. * Fixed adjfreq failures on Solaris due to uninitialized struct timex.
  90. * Support building on Linux musl libc.
  91. * Default privilege separation directory changed from /var/empty/ntp
  92. to /var/empty. Please ensure that if you are using the default from
  93. previous releases that the privsep directory is empty, owned by
  94. root, and has no write privileges for other users.
  95. 2015-01-20 OpenNTPD 5.7p2
  96. * Switched the drift file from an unscaled frequency offset to ppm.
  97. The latter format is compatible with that of ntp.org. This allows
  98. easy switching between ntpd daemons
  99. * Fixed a memory leak in DNS lookups.
  100. * Added support for setting the process title on Linux and OS X.
  101. The different processes are now possible to tell apart by role in
  102. the process list.
  103. * Import NetBSD support.
  104. * Various bugfixes and refinements from the community.
  105. 2015-01-08 OpenNTPD 5.7p1
  106. * Support for a new build infrastructure based on the LibreSSL
  107. framework. Source code is integrated directly from the OpenBSD tree
  108. with few manual changes, easing maintenance.
  109. * Removed support for several OSes pending test reports and updated
  110. portability code.
  111. * Supports the Simple Network Time Protocol version 4 as described in
  112. RFC 5905
  113. * Added route virtualization (rdomain) support.
  114. * Added ntpctl(8), which allows for querying ntpd(8) at runtime.
  115. * Finer-grained clock adjustment via adjfreq / ntp_adjtime where
  116. available.
  117. * Improved latency on heavily-loaded machines.