Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_TIME_H |
| 2 | #define _LINUX_TIME_H |
| 3 | |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 4 | # include <linux/cache.h> |
Ingo Molnar | 57a5587 | 2006-01-09 20:52:26 -0800 | [diff] [blame] | 5 | # include <linux/seqlock.h> |
Jeremy Fitzhardinge | f595ec9 | 2008-06-12 10:47:56 +0200 | [diff] [blame] | 6 | # include <linux/math64.h> |
John Stultz | 361a3bf | 2014-07-16 21:03:58 +0000 | [diff] [blame] | 7 | # include <linux/time64.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
Christoph Hellwig | b418da1 | 2008-10-15 22:02:06 -0700 | [diff] [blame] | 9 | extern struct timezone sys_tz; |
| 10 | |
Deepa Dinamani | f59dd9c | 2017-06-24 11:45:02 -0700 | [diff] [blame] | 11 | int get_timespec64(struct timespec64 *ts, |
| 12 | const struct timespec __user *uts); |
| 13 | int put_timespec64(const struct timespec64 *ts, |
| 14 | struct timespec __user *uts); |
Deepa Dinamani | d5b7ffb | 2017-06-24 11:45:03 -0700 | [diff] [blame] | 15 | int get_itimerspec64(struct itimerspec64 *it, |
| 16 | const struct itimerspec __user *uit); |
| 17 | int put_itimerspec64(const struct itimerspec64 *it, |
| 18 | struct itimerspec __user *uit); |
Deepa Dinamani | f59dd9c | 2017-06-24 11:45:02 -0700 | [diff] [blame] | 19 | |
Thomas Gleixner | df0cc05 | 2008-08-31 08:09:53 -0700 | [diff] [blame] | 20 | #define TIME_T_MAX (time_t)((1UL << ((sizeof(time_t) << 3) - 1)) - 1) |
| 21 | |
Jan Engelhardt | 5b78cc9 | 2007-07-17 04:03:53 -0700 | [diff] [blame] | 22 | static inline int timespec_equal(const struct timespec *a, |
| 23 | const struct timespec *b) |
Ingo Molnar | 57a5587 | 2006-01-09 20:52:26 -0800 | [diff] [blame] | 24 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec); |
Ingo Molnar | 57a5587 | 2006-01-09 20:52:26 -0800 | [diff] [blame] | 26 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Andrew Morton | 643a654 | 2006-02-11 17:55:52 -0800 | [diff] [blame] | 28 | /* |
| 29 | * lhs < rhs: return <0 |
| 30 | * lhs == rhs: return 0 |
| 31 | * lhs > rhs: return >0 |
| 32 | */ |
Rolf Eike Beer | 77adbfb | 2007-02-10 01:45:49 -0800 | [diff] [blame] | 33 | static inline int timespec_compare(const struct timespec *lhs, const struct timespec *rhs) |
Andrew Morton | 643a654 | 2006-02-11 17:55:52 -0800 | [diff] [blame] | 34 | { |
| 35 | if (lhs->tv_sec < rhs->tv_sec) |
| 36 | return -1; |
| 37 | if (lhs->tv_sec > rhs->tv_sec) |
| 38 | return 1; |
| 39 | return lhs->tv_nsec - rhs->tv_nsec; |
| 40 | } |
| 41 | |
Rolf Eike Beer | 77adbfb | 2007-02-10 01:45:49 -0800 | [diff] [blame] | 42 | static inline int timeval_compare(const struct timeval *lhs, const struct timeval *rhs) |
Andrew Morton | 643a654 | 2006-02-11 17:55:52 -0800 | [diff] [blame] | 43 | { |
| 44 | if (lhs->tv_sec < rhs->tv_sec) |
| 45 | return -1; |
| 46 | if (lhs->tv_sec > rhs->tv_sec) |
| 47 | return 1; |
| 48 | return lhs->tv_usec - rhs->tv_usec; |
| 49 | } |
| 50 | |
pang.xunlei | 90b6ce9 | 2014-11-18 19:15:18 +0800 | [diff] [blame] | 51 | extern time64_t mktime64(const unsigned int year, const unsigned int mon, |
| 52 | const unsigned int day, const unsigned int hour, |
| 53 | const unsigned int min, const unsigned int sec); |
| 54 | |
| 55 | /** |
| 56 | * Deprecated. Use mktime64(). |
| 57 | */ |
| 58 | static inline unsigned long mktime(const unsigned int year, |
| 59 | const unsigned int mon, const unsigned int day, |
| 60 | const unsigned int hour, const unsigned int min, |
| 61 | const unsigned int sec) |
| 62 | { |
| 63 | return mktime64(year, mon, day, hour, min, sec); |
| 64 | } |
Ingo Molnar | f481890 | 2006-01-09 20:52:23 -0800 | [diff] [blame] | 65 | |
Thomas Gleixner | 12e0933 | 2009-09-14 23:37:40 +0200 | [diff] [blame] | 66 | extern void set_normalized_timespec(struct timespec *ts, time_t sec, s64 nsec); |
John Stultz | ce3bf7a | 2010-07-13 17:56:19 -0700 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * timespec_add_safe assumes both values are positive and checks |
| 70 | * for overflow. It will return TIME_T_MAX if the reutrn would be |
| 71 | * smaller then either of the arguments. |
| 72 | */ |
Thomas Gleixner | df0cc05 | 2008-08-31 08:09:53 -0700 | [diff] [blame] | 73 | extern struct timespec timespec_add_safe(const struct timespec lhs, |
| 74 | const struct timespec rhs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
John Stultz | ce3bf7a | 2010-07-13 17:56:19 -0700 | [diff] [blame] | 76 | |
| 77 | static inline struct timespec timespec_add(struct timespec lhs, |
| 78 | struct timespec rhs) |
| 79 | { |
| 80 | struct timespec ts_delta; |
| 81 | set_normalized_timespec(&ts_delta, lhs.tv_sec + rhs.tv_sec, |
| 82 | lhs.tv_nsec + rhs.tv_nsec); |
| 83 | return ts_delta; |
| 84 | } |
| 85 | |
Thomas Gleixner | 5f82b2b | 2006-01-09 20:52:29 -0800 | [diff] [blame] | 86 | /* |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 87 | * sub = lhs - rhs, in normalized form |
| 88 | */ |
| 89 | static inline struct timespec timespec_sub(struct timespec lhs, |
| 90 | struct timespec rhs) |
| 91 | { |
| 92 | struct timespec ts_delta; |
| 93 | set_normalized_timespec(&ts_delta, lhs.tv_sec - rhs.tv_sec, |
| 94 | lhs.tv_nsec - rhs.tv_nsec); |
| 95 | return ts_delta; |
| 96 | } |
| 97 | |
| 98 | /* |
Thomas Gleixner | 5f82b2b | 2006-01-09 20:52:29 -0800 | [diff] [blame] | 99 | * Returns true if the timespec is norm, false if denorm: |
| 100 | */ |
John Stultz | 4e8b145 | 2012-08-08 15:36:20 -0400 | [diff] [blame] | 101 | static inline bool timespec_valid(const struct timespec *ts) |
| 102 | { |
| 103 | /* Dates before 1970 are bogus */ |
| 104 | if (ts->tv_sec < 0) |
| 105 | return false; |
| 106 | /* Can't have more nanoseconds then a second */ |
| 107 | if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC) |
| 108 | return false; |
John Stultz | cee5848 | 2012-08-31 13:30:06 -0400 | [diff] [blame] | 109 | return true; |
| 110 | } |
| 111 | |
| 112 | static inline bool timespec_valid_strict(const struct timespec *ts) |
| 113 | { |
| 114 | if (!timespec_valid(ts)) |
| 115 | return false; |
John Stultz | 4e8b145 | 2012-08-08 15:36:20 -0400 | [diff] [blame] | 116 | /* Disallow values that could overflow ktime_t */ |
| 117 | if ((unsigned long long)ts->tv_sec >= KTIME_SEC_MAX) |
| 118 | return false; |
| 119 | return true; |
| 120 | } |
Thomas Gleixner | 5f82b2b | 2006-01-09 20:52:29 -0800 | [diff] [blame] | 121 | |
Sasha Levin | 6ada1fc | 2014-12-03 19:22:48 -0500 | [diff] [blame] | 122 | static inline bool timeval_valid(const struct timeval *tv) |
| 123 | { |
| 124 | /* Dates before 1970 are bogus */ |
| 125 | if (tv->tv_sec < 0) |
| 126 | return false; |
| 127 | |
| 128 | /* Can't have more microseconds then a second */ |
| 129 | if (tv->tv_usec < 0 || tv->tv_usec >= USEC_PER_SEC) |
| 130 | return false; |
| 131 | |
| 132 | return true; |
| 133 | } |
| 134 | |
Thomas Gleixner | 8b094cd | 2014-07-16 21:04:02 +0000 | [diff] [blame] | 135 | extern struct timespec timespec_trunc(struct timespec t, unsigned gran); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
John Stultz | 37cf4dc | 2015-12-03 22:09:31 -0500 | [diff] [blame] | 137 | /* |
| 138 | * Validates if a timespec/timeval used to inject a time offset is valid. |
| 139 | * Offsets can be postive or negative. The value of the timeval/timespec |
| 140 | * is the sum of its fields, but *NOTE*: the field tv_usec/tv_nsec must |
| 141 | * always be non-negative. |
| 142 | */ |
| 143 | static inline bool timeval_inject_offset_valid(const struct timeval *tv) |
| 144 | { |
| 145 | /* We don't check the tv_sec as it can be positive or negative */ |
| 146 | |
| 147 | /* Can't have more microseconds then a second */ |
| 148 | if (tv->tv_usec < 0 || tv->tv_usec >= USEC_PER_SEC) |
| 149 | return false; |
| 150 | return true; |
| 151 | } |
| 152 | |
| 153 | static inline bool timespec_inject_offset_valid(const struct timespec *ts) |
| 154 | { |
| 155 | /* We don't check the tv_sec as it can be positive or negative */ |
| 156 | |
| 157 | /* Can't have more nanoseconds then a second */ |
| 158 | if (ts->tv_nsec < 0 || ts->tv_nsec >= NSEC_PER_SEC) |
| 159 | return false; |
| 160 | return true; |
| 161 | } |
| 162 | |
john stultz | 7d27558 | 2009-05-01 13:10:26 -0700 | [diff] [blame] | 163 | /* Some architectures do not supply their own clocksource. |
| 164 | * This is mainly the case in architectures that get their |
| 165 | * inter-tick times by reading the counter on their interval |
| 166 | * timer. Since these timers wrap every tick, they're not really |
| 167 | * useful as clocksources. Wrapping them to act like one is possible |
| 168 | * but not very efficient. So we provide a callout these arches |
| 169 | * can implement for use with the jiffies clocksource to provide |
| 170 | * finer then tick granular time. |
| 171 | */ |
| 172 | #ifdef CONFIG_ARCH_USES_GETTIMEOFFSET |
Stephen Warren | 7b1f620 | 2012-11-07 17:58:54 -0700 | [diff] [blame] | 173 | extern u32 (*arch_gettimeoffset)(void); |
john stultz | 7d27558 | 2009-05-01 13:10:26 -0700 | [diff] [blame] | 174 | #endif |
| 175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | struct itimerval; |
Ingo Molnar | 57a5587 | 2006-01-09 20:52:26 -0800 | [diff] [blame] | 177 | extern int do_setitimer(int which, struct itimerval *value, |
| 178 | struct itimerval *ovalue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | extern int do_getitimer(int which, struct itimerval *value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Deepa Dinamani | aaed2dd | 2017-08-02 19:51:15 -0700 | [diff] [blame] | 181 | extern long do_utimes(int dfd, const char __user *filename, struct timespec64 *times, int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Zhaolei | 57f1f08 | 2009-09-23 15:56:10 -0700 | [diff] [blame] | 183 | /* |
| 184 | * Similar to the struct tm in userspace <time.h>, but it needs to be here so |
| 185 | * that the kernel source is self contained. |
| 186 | */ |
| 187 | struct tm { |
| 188 | /* |
| 189 | * the number of seconds after the minute, normally in the range |
| 190 | * 0 to 59, but can be up to 60 to allow for leap seconds |
| 191 | */ |
| 192 | int tm_sec; |
| 193 | /* the number of minutes after the hour, in the range 0 to 59*/ |
| 194 | int tm_min; |
| 195 | /* the number of hours past midnight, in the range 0 to 23 */ |
| 196 | int tm_hour; |
| 197 | /* the day of the month, in the range 1 to 31 */ |
| 198 | int tm_mday; |
| 199 | /* the number of months since January, in the range 0 to 11 */ |
| 200 | int tm_mon; |
| 201 | /* the number of years since 1900 */ |
| 202 | long tm_year; |
| 203 | /* the number of days since Sunday, in the range 0 to 6 */ |
| 204 | int tm_wday; |
| 205 | /* the number of days since January 1, in the range 0 to 365 */ |
| 206 | int tm_yday; |
| 207 | }; |
| 208 | |
Deepa Dinamani | e6c2682 | 2016-06-08 22:04:59 -0700 | [diff] [blame] | 209 | void time64_to_tm(time64_t totalsecs, int offset, struct tm *result); |
| 210 | |
| 211 | /** |
| 212 | * time_to_tm - converts the calendar time to local broken-down time |
| 213 | * |
| 214 | * @totalsecs the number of seconds elapsed since 00:00:00 on January 1, 1970, |
| 215 | * Coordinated Universal Time (UTC). |
| 216 | * @offset offset seconds adding to totalsecs. |
| 217 | * @result pointer to struct tm variable to receive broken-down time |
| 218 | */ |
| 219 | static inline void time_to_tm(time_t totalsecs, int offset, struct tm *result) |
| 220 | { |
| 221 | time64_to_tm(totalsecs, offset, result); |
| 222 | } |
Zhaolei | 57f1f08 | 2009-09-23 15:56:10 -0700 | [diff] [blame] | 223 | |
Thomas Gleixner | f8f46da | 2006-01-09 20:52:30 -0800 | [diff] [blame] | 224 | /** |
| 225 | * timespec_to_ns - Convert timespec to nanoseconds |
| 226 | * @ts: pointer to the timespec variable to be converted |
| 227 | * |
| 228 | * Returns the scalar nanosecond representation of the timespec |
| 229 | * parameter. |
| 230 | */ |
Roman Zippel | df869b6 | 2006-03-26 01:38:11 -0800 | [diff] [blame] | 231 | static inline s64 timespec_to_ns(const struct timespec *ts) |
Thomas Gleixner | f8f46da | 2006-01-09 20:52:30 -0800 | [diff] [blame] | 232 | { |
Roman Zippel | df869b6 | 2006-03-26 01:38:11 -0800 | [diff] [blame] | 233 | return ((s64) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec; |
Thomas Gleixner | f8f46da | 2006-01-09 20:52:30 -0800 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | /** |
| 237 | * timeval_to_ns - Convert timeval to nanoseconds |
| 238 | * @ts: pointer to the timeval variable to be converted |
| 239 | * |
| 240 | * Returns the scalar nanosecond representation of the timeval |
| 241 | * parameter. |
| 242 | */ |
Roman Zippel | df869b6 | 2006-03-26 01:38:11 -0800 | [diff] [blame] | 243 | static inline s64 timeval_to_ns(const struct timeval *tv) |
Thomas Gleixner | f8f46da | 2006-01-09 20:52:30 -0800 | [diff] [blame] | 244 | { |
Roman Zippel | df869b6 | 2006-03-26 01:38:11 -0800 | [diff] [blame] | 245 | return ((s64) tv->tv_sec * NSEC_PER_SEC) + |
Thomas Gleixner | f8f46da | 2006-01-09 20:52:30 -0800 | [diff] [blame] | 246 | tv->tv_usec * NSEC_PER_USEC; |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * ns_to_timespec - Convert nanoseconds to timespec |
| 251 | * @nsec: the nanoseconds value to be converted |
| 252 | * |
| 253 | * Returns the timespec representation of the nsec parameter. |
| 254 | */ |
Roman Zippel | df869b6 | 2006-03-26 01:38:11 -0800 | [diff] [blame] | 255 | extern struct timespec ns_to_timespec(const s64 nsec); |
Thomas Gleixner | f8f46da | 2006-01-09 20:52:30 -0800 | [diff] [blame] | 256 | |
| 257 | /** |
| 258 | * ns_to_timeval - Convert nanoseconds to timeval |
| 259 | * @nsec: the nanoseconds value to be converted |
| 260 | * |
| 261 | * Returns the timeval representation of the nsec parameter. |
| 262 | */ |
Roman Zippel | df869b6 | 2006-03-26 01:38:11 -0800 | [diff] [blame] | 263 | extern struct timeval ns_to_timeval(const s64 nsec); |
Thomas Gleixner | f8f46da | 2006-01-09 20:52:30 -0800 | [diff] [blame] | 264 | |
john stultz | cf3c769 | 2006-06-26 00:25:08 -0700 | [diff] [blame] | 265 | /** |
| 266 | * timespec_add_ns - Adds nanoseconds to a timespec |
| 267 | * @a: pointer to timespec to be incremented |
| 268 | * @ns: unsigned nanoseconds value to be added |
Jeremy Fitzhardinge | 9412e286 | 2008-06-12 10:48:00 +0200 | [diff] [blame] | 269 | * |
| 270 | * This must always be inlined because its used from the x86-64 vdso, |
| 271 | * which cannot call other kernel functions. |
john stultz | cf3c769 | 2006-06-26 00:25:08 -0700 | [diff] [blame] | 272 | */ |
Jeremy Fitzhardinge | 9412e286 | 2008-06-12 10:48:00 +0200 | [diff] [blame] | 273 | static __always_inline void timespec_add_ns(struct timespec *a, u64 ns) |
john stultz | cf3c769 | 2006-06-26 00:25:08 -0700 | [diff] [blame] | 274 | { |
Jeremy Fitzhardinge | 9412e286 | 2008-06-12 10:48:00 +0200 | [diff] [blame] | 275 | a->tv_sec += __iter_div_u64_rem(a->tv_nsec + ns, NSEC_PER_SEC, &ns); |
john stultz | cf3c769 | 2006-06-26 00:25:08 -0700 | [diff] [blame] | 276 | a->tv_nsec = ns; |
| 277 | } |
H. Peter Anvin | 8b3d1cd | 2012-02-07 21:09:05 -0800 | [diff] [blame] | 278 | |
Deepa Dinamani | d5b7ffb | 2017-06-24 11:45:03 -0700 | [diff] [blame] | 279 | static inline bool itimerspec64_valid(const struct itimerspec64 *its) |
| 280 | { |
| 281 | if (!timespec64_valid(&(its->it_interval)) || |
| 282 | !timespec64_valid(&(its->it_value))) |
| 283 | return false; |
| 284 | |
| 285 | return true; |
| 286 | } |
| 287 | |
Andreas Dilger | b5f5157 | 2017-08-31 11:09:45 -0400 | [diff] [blame] | 288 | /** |
| 289 | * time_after32 - compare two 32-bit relative times |
| 290 | * @a: the time which may be after @b |
| 291 | * @b: the time which may be before @a |
| 292 | * |
| 293 | * time_after32(a, b) returns true if the time @a is after time @b. |
| 294 | * time_before32(b, a) returns true if the time @b is before time @a. |
| 295 | * |
| 296 | * Similar to time_after(), compare two 32-bit timestamps for relative |
| 297 | * times. This is useful for comparing 32-bit seconds values that can't |
| 298 | * be converted to 64-bit values (e.g. due to disk format or wire protocol |
| 299 | * issues) when it is known that the times are less than 68 years apart. |
| 300 | */ |
| 301 | #define time_after32(a, b) ((s32)((u32)(b) - (u32)(a)) < 0) |
| 302 | #define time_before32(b, a) time_after32(a, b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | #endif |