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.

93 lines
4.0 KiB

  1. For detailed changes, see the changes either in the OpenBSD CVS repository or
  2. the GitHub mirror.
  3. 2016-03-28 OpenNTPD 5.9p1
  4. * When a single "constraint" is specified, try all returned addresses
  5. until one succeeds, rather than the first returned address.
  6. * Relaxed the constraint error margin to be proportional to the number
  7. of NTP peers, avoid constant reconnections when there is a bad NTP
  8. peer.
  9. * Removed disabled hotplug sensor support.
  10. * Added support for detecting crashes in constraint subprocesses.
  11. * Moved the execution of constraints from the ntp proces to the parent
  12. process, allowing for better privilege separation since the ntp
  13. process can be further restricted.
  14. * Added pledge(2) support.
  15. * Updated to LibreSSL 2.3.x libtls API changes.
  16. * Fixed CPU spinning when the network is down.
  17. * Fixed various memory leaks.
  18. * Switched to RMS for jitter calculations.
  19. * Unified logging functions with other OpenBSD base programs.
  20. OpenNTPD Portable-specific changes
  21. * Added support for syncing time with the Realtime Clock (RTC) on OSes
  22. that require it.
  23. * CFLAGS is no longer overridden by the build system.
  24. * FreeBSD RTABLE support is disabled
  25. * FreeBSD is no longer linked with -lmd to avoid hash function
  26. collisions, causing failures in constraint certificate loading.
  27. * Fixed crashes due to __progname being used before initialized.
  28. * Added Solaris 10 compatibility.
  29. * Added --disable-https-constraint build option for explicitly
  30. disabling constraint support.
  31. * Synced build system files with LibreSSL
  32. The libtls library, as shipped with LibreSSL 2.3.2 or later, is
  33. required to use the HTTPS constraint feature, though it is not
  34. required to use OpenNTPD.
  35. 2015-03-24 OpenNTPD 5.7p4
  36. * Added support for HTTPS constraints to validate NTP responses.
  37. See the man page and example config file for how to configure it.
  38. The initial announcement:
  39. http://marc.info/?l=openbsd-tech&m=142356166731390&w=2 is an
  40. explanation of the rationale and how the feature works.
  41. * Workaround an apparent bug in Solaris adjtime that cause the clock
  42. to report sync/unsync continuously.
  43. * Workaround an issue on systems with 32-bit time_t that causes an
  44. overflow if the system time is later than early 2036.
  45. The libtls library, as shipped with LibreSSL 2.1.4 or later, is
  46. required to use the HTTPS constraint feature, though it is not
  47. required to use OpenNTPD.
  48. 2015-01-27 OpenNTPD 5.7p3
  49. * Fixed issue resolving hostnames when the network is initially
  50. unavailable.
  51. * Fixed process name logging on Linux and OS X.
  52. * Fixed adjfreq failures on Solaris due to uninitialized struct timex.
  53. * Support building on Linux musl libc.
  54. * Default privilege separation directory changed from /var/empty/ntp
  55. to /var/empty. Please ensure that if you are using the default from
  56. previous releases that the privsep directory is empty, owned by
  57. root, and has no write privileges for other users.
  58. 2015-01-20 OpenNTPD 5.7p2
  59. * Switched the drift file from an unscaled frequency offset to ppm.
  60. The latter format is compatible with that of ntp.org. This allows
  61. easy switching between ntpd daemons
  62. * Fixed a memory leak in DNS lookups.
  63. * Added support for setting the process title on Linux and OS X.
  64. The different processes are now possible to tell apart by role in
  65. the process list.
  66. * Import NetBSD support.
  67. * Various bugfixes and refinements from the community.
  68. 2015-01-08 OpenNTPD 5.7p1
  69. * Support for a new build infrastructure based on the LibreSSL
  70. framework. Source code is integrated directly from the OpenBSD tree
  71. with few manual changes, easing maintenance.
  72. * Removed support for several OSes pending test reports and updated
  73. portability code.
  74. * Supports the Simple Network Time Protocol version 4 as described in
  75. RFC 5905
  76. * Added route virtualization (rdomain) support.
  77. * Added ntpctl(8), which allows for querying ntpd(8) at runtime.
  78. * Finer-grained clock adjustment via adjfreq / ntp_adjtime where
  79. available.
  80. * Improved latency on heavily-loaded machines.