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.

129 lines
5.0 KiB

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