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.

125 lines
5.0 KiB

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