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.

71 lines
1.8 KiB

  1. /*
  2. * Copyright (c) 2007 Sebastian Benoit <benoit-lists@fb12.de>
  3. *
  4. * Permission to use, copy, modify, and distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. /* RCSID("$Id$"); */
  17. #include <sys/types.h>
  18. #include <unistd.h>
  19. #ifdef HAVE_SYS_TIMEX_H
  20. # include <sys/timex.h>
  21. #endif
  22. #ifdef adjfreq
  23. # undef adjfreq
  24. #endif
  25. #include "ntp.h"
  26. #include "ntpd.h"
  27. /*
  28. * adjfreq (old)freq = nanosec. per seconds shifted left 32 bits
  29. * timex.freq is ppm / left shifted by SHIFT_USEC (16 bits), defined in timex.h
  30. */
  31. int
  32. adjfreq(const int64_t *freq, int64_t *oldfreq)
  33. {
  34. struct timex txc;
  35. int64_t newfreq;
  36. if (freq != NULL) {
  37. #if defined(__linux__)
  38. txc.modes = ADJ_FREQUENCY;
  39. #else
  40. txc.modes = MOD_FREQUENCY;
  41. #endif
  42. txc.freq = *freq / 1e3 / (1LL << 16);
  43. if ((ntp_adjtime(&txc)) == -1)
  44. log_warn("ntp_adjtime (2) failed");
  45. log_debug("ntp_adjtime adjusted frequency by %fppm",
  46. ((txc.freq * 1e3) * (1LL<<16) / 1e3 / (1LL << 32)));
  47. }
  48. if (oldfreq != NULL) {
  49. txc.modes = 0;
  50. if ((ntp_adjtime(&txc)) == -1) {
  51. log_warn("ntp_adjtime (1) failed");
  52. return -1;
  53. }
  54. newfreq = (txc.freq * 1e3) * (1LL<<16);
  55. log_debug("ntp_adjtime returns frequency of %fppm",
  56. newfreq / 1e3 / (1LL << 32));
  57. *oldfreq = newfreq;
  58. }
  59. return 0;
  60. }