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.

105 lines
4.3 KiB

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