time64.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. #ifndef _LINUX_TIME64_H
  2. #define _LINUX_TIME64_H
  3. #include <uapi/linux/time.h>
  4. typedef __s64 time64_t;
  5. /*
  6. * This wants to go into uapi/linux/time.h once we agreed about the
  7. * userspace interfaces.
  8. */
  9. #if __BITS_PER_LONG == 64
  10. # define timespec64 timespec
  11. #else
  12. struct timespec64 {
  13. time64_t tv_sec; /* seconds */
  14. long tv_nsec; /* nanoseconds */
  15. };
  16. #endif
  17. /* Parameters used to convert the timespec values: */
  18. #define MSEC_PER_SEC 1000L
  19. #define USEC_PER_MSEC 1000L
  20. #define NSEC_PER_USEC 1000L
  21. #define NSEC_PER_MSEC 1000000L
  22. #define USEC_PER_SEC 1000000L
  23. #define NSEC_PER_SEC 1000000000L
  24. #define FSEC_PER_SEC 1000000000000000LL
  25. /* Located here for timespec[64]_valid_strict */
  26. #define KTIME_MAX ((s64)~((u64)1 << 63))
  27. #define KTIME_SEC_MAX (KTIME_MAX / NSEC_PER_SEC)
  28. #if __BITS_PER_LONG == 64
  29. static inline struct timespec timespec64_to_timespec(const struct timespec64 ts64)
  30. {
  31. return ts64;
  32. }
  33. static inline struct timespec64 timespec_to_timespec64(const struct timespec ts)
  34. {
  35. return ts;
  36. }
  37. # define timespec64_equal timespec_equal
  38. # define timespec64_compare timespec_compare
  39. # define set_normalized_timespec64 set_normalized_timespec
  40. # define timespec64_add_safe timespec_add_safe
  41. # define timespec64_add timespec_add
  42. # define timespec64_sub timespec_sub
  43. # define timespec64_valid timespec_valid
  44. # define timespec64_valid_strict timespec_valid_strict
  45. # define timespec64_to_ns timespec_to_ns
  46. # define ns_to_timespec64 ns_to_timespec
  47. # define timespec64_add_ns timespec_add_ns
  48. #else
  49. static inline struct timespec timespec64_to_timespec(const struct timespec64 ts64)
  50. {
  51. struct timespec ret;
  52. ret.tv_sec = (time_t)ts64.tv_sec;
  53. ret.tv_nsec = ts64.tv_nsec;
  54. return ret;
  55. }
  56. static inline struct timespec64 timespec_to_timespec64(const struct timespec ts)
  57. {
  58. struct timespec64 ret;
  59. ret.tv_sec = ts.tv_sec;
  60. ret.tv_nsec = ts.tv_nsec;
  61. return ret;
  62. }
  63. static inline int timespec64_equal(const struct timespec64 *a,
  64. const struct timespec64 *b)
  65. {
  66. return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec);
  67. }
  68. /*
  69. * lhs < rhs: return <0
  70. * lhs == rhs: return 0
  71. * lhs > rhs: return >0
  72. */
  73. static inline int timespec64_compare(const struct timespec64 *lhs, const struct timespec64 *rhs)
  74. {
  75. if (lhs->tv_sec < rhs->tv_sec)
  76. return -1;
  77. if (lhs->tv_sec > rhs->tv_sec)
  78. return 1;
  79. return lhs->tv_nsec - rhs->tv_nsec;
  80. }
  81. extern void set_normalized_timespec64(struct timespec64 *ts, time64_t sec, s64 nsec);
  82. /*
  83. * timespec64_add_safe assumes both values are positive and checks for
  84. * overflow. It will return TIME_T_MAX if the returned value would be
  85. * smaller then either of the arguments.
  86. */
  87. extern struct timespec64 timespec64_add_safe(const struct timespec64 lhs,
  88. const struct timespec64 rhs);
  89. static inline struct timespec64 timespec64_add(struct timespec64 lhs,
  90. struct timespec64 rhs)
  91. {
  92. struct timespec64 ts_delta;
  93. set_normalized_timespec64(&ts_delta, lhs.tv_sec + rhs.tv_sec,
  94. lhs.tv_nsec + rhs.tv_nsec);
  95. return ts_delta;
  96. }
  97. /*
  98. * sub = lhs - rhs, in normalized form
  99. */
  100. static inline struct timespec64 timespec64_sub(struct timespec64 lhs,
  101. struct timespec64 rhs)
  102. {
  103. struct timespec64 ts_delta;
  104. set_normalized_timespec64(&ts_delta, lhs.tv_sec - rhs.tv_sec,
  105. lhs.tv_nsec - rhs.tv_nsec);
  106. return ts_delta;
  107. }
  108. /*
  109. * Returns true if the timespec64 is norm, false if denorm:
  110. */
  111. static inline bool timespec64_valid(const struct timespec64 *ts)
  112. {
  113. /* Dates before 1970 are bogus */
  114. if (ts->tv_sec < 0)
  115. return false;
  116. /* Can't have more nanoseconds then a second */
  117. if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
  118. return false;
  119. return true;
  120. }
  121. static inline bool timespec64_valid_strict(const struct timespec64 *ts)
  122. {
  123. if (!timespec64_valid(ts))
  124. return false;
  125. /* Disallow values that could overflow ktime_t */
  126. if ((unsigned long long)ts->tv_sec >= KTIME_SEC_MAX)
  127. return false;
  128. return true;
  129. }
  130. /**
  131. * timespec64_to_ns - Convert timespec64 to nanoseconds
  132. * @ts: pointer to the timespec64 variable to be converted
  133. *
  134. * Returns the scalar nanosecond representation of the timespec64
  135. * parameter.
  136. */
  137. static inline s64 timespec64_to_ns(const struct timespec64 *ts)
  138. {
  139. return ((s64) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec;
  140. }
  141. /**
  142. * ns_to_timespec64 - Convert nanoseconds to timespec64
  143. * @nsec: the nanoseconds value to be converted
  144. *
  145. * Returns the timespec64 representation of the nsec parameter.
  146. */
  147. extern struct timespec64 ns_to_timespec64(const s64 nsec);
  148. /**
  149. * timespec64_add_ns - Adds nanoseconds to a timespec64
  150. * @a: pointer to timespec64 to be incremented
  151. * @ns: unsigned nanoseconds value to be added
  152. *
  153. * This must always be inlined because its used from the x86-64 vdso,
  154. * which cannot call other kernel functions.
  155. */
  156. static __always_inline void timespec64_add_ns(struct timespec64 *a, u64 ns)
  157. {
  158. a->tv_sec += __iter_div_u64_rem(a->tv_nsec + ns, NSEC_PER_SEC, &ns);
  159. a->tv_nsec = ns;
  160. }
  161. #endif
  162. #endif /* _LINUX_TIME64_H */