Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_TIME_H |
| 3 | #define _LINUX_TIME_H |
| 4 | |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 5 | # include <linux/cache.h> |
Ingo Molnar | 57a5587 | 2006-01-09 20:52:26 -0800 | [diff] [blame] | 6 | # include <linux/seqlock.h> |
Jeremy Fitzhardinge | f595ec9 | 2008-06-12 10:47:56 +0200 | [diff] [blame] | 7 | # include <linux/math64.h> |
John Stultz | 361a3bf | 2014-07-16 21:03:58 +0000 | [diff] [blame] | 8 | # include <linux/time64.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Christoph Hellwig | b418da1 | 2008-10-15 22:02:06 -0700 | [diff] [blame] | 10 | extern struct timezone sys_tz; |
| 11 | |
Deepa Dinamani | f59dd9c | 2017-06-24 11:45:02 -0700 | [diff] [blame] | 12 | int get_timespec64(struct timespec64 *ts, |
Deepa Dinamani | ea2ce8f | 2018-03-13 21:03:31 -0700 | [diff] [blame] | 13 | const struct __kernel_timespec __user *uts); |
Deepa Dinamani | f59dd9c | 2017-06-24 11:45:02 -0700 | [diff] [blame] | 14 | int put_timespec64(const struct timespec64 *ts, |
Deepa Dinamani | ea2ce8f | 2018-03-13 21:03:31 -0700 | [diff] [blame] | 15 | struct __kernel_timespec __user *uts); |
Deepa Dinamani | d5b7ffb | 2017-06-24 11:45:03 -0700 | [diff] [blame] | 16 | int get_itimerspec64(struct itimerspec64 *it, |
Deepa Dinamani | d0dd63a | 2018-06-16 22:11:42 -0700 | [diff] [blame] | 17 | const struct __kernel_itimerspec __user *uit); |
Deepa Dinamani | d5b7ffb | 2017-06-24 11:45:03 -0700 | [diff] [blame] | 18 | int put_itimerspec64(const struct itimerspec64 *it, |
Deepa Dinamani | d0dd63a | 2018-06-16 22:11:42 -0700 | [diff] [blame] | 19 | struct __kernel_itimerspec __user *uit); |
Deepa Dinamani | f59dd9c | 2017-06-24 11:45:02 -0700 | [diff] [blame] | 20 | |
pang.xunlei | 90b6ce9 | 2014-11-18 19:15:18 +0800 | [diff] [blame] | 21 | extern time64_t mktime64(const unsigned int year, const unsigned int mon, |
| 22 | const unsigned int day, const unsigned int hour, |
| 23 | const unsigned int min, const unsigned int sec); |
| 24 | |
john stultz | 7d27558 | 2009-05-01 13:10:26 -0700 | [diff] [blame] | 25 | /* Some architectures do not supply their own clocksource. |
| 26 | * This is mainly the case in architectures that get their |
| 27 | * inter-tick times by reading the counter on their interval |
| 28 | * timer. Since these timers wrap every tick, they're not really |
| 29 | * useful as clocksources. Wrapping them to act like one is possible |
| 30 | * but not very efficient. So we provide a callout these arches |
| 31 | * can implement for use with the jiffies clocksource to provide |
| 32 | * finer then tick granular time. |
| 33 | */ |
| 34 | #ifdef CONFIG_ARCH_USES_GETTIMEOFFSET |
Stephen Warren | 7b1f620 | 2012-11-07 17:58:54 -0700 | [diff] [blame] | 35 | extern u32 (*arch_gettimeoffset)(void); |
john stultz | 7d27558 | 2009-05-01 13:10:26 -0700 | [diff] [blame] | 36 | #endif |
| 37 | |
Arnd Bergmann | ddbc7d0 | 2019-10-25 21:37:43 +0200 | [diff] [blame] | 38 | #ifdef CONFIG_POSIX_TIMERS |
| 39 | extern void clear_itimer(void); |
| 40 | #else |
| 41 | static inline void clear_itimer(void) {} |
| 42 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Deepa Dinamani | aaed2dd | 2017-08-02 19:51:15 -0700 | [diff] [blame] | 44 | 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] | 45 | |
Zhaolei | 57f1f08 | 2009-09-23 15:56:10 -0700 | [diff] [blame] | 46 | /* |
| 47 | * Similar to the struct tm in userspace <time.h>, but it needs to be here so |
| 48 | * that the kernel source is self contained. |
| 49 | */ |
| 50 | struct tm { |
| 51 | /* |
| 52 | * the number of seconds after the minute, normally in the range |
| 53 | * 0 to 59, but can be up to 60 to allow for leap seconds |
| 54 | */ |
| 55 | int tm_sec; |
| 56 | /* the number of minutes after the hour, in the range 0 to 59*/ |
| 57 | int tm_min; |
| 58 | /* the number of hours past midnight, in the range 0 to 23 */ |
| 59 | int tm_hour; |
| 60 | /* the day of the month, in the range 1 to 31 */ |
| 61 | int tm_mday; |
| 62 | /* the number of months since January, in the range 0 to 11 */ |
| 63 | int tm_mon; |
| 64 | /* the number of years since 1900 */ |
| 65 | long tm_year; |
| 66 | /* the number of days since Sunday, in the range 0 to 6 */ |
| 67 | int tm_wday; |
| 68 | /* the number of days since January 1, in the range 0 to 365 */ |
| 69 | int tm_yday; |
| 70 | }; |
| 71 | |
Deepa Dinamani | e6c2682 | 2016-06-08 22:04:59 -0700 | [diff] [blame] | 72 | void time64_to_tm(time64_t totalsecs, int offset, struct tm *result); |
| 73 | |
Arnd Bergmann | 5dbf201 | 2017-10-19 13:14:47 +0200 | [diff] [blame] | 74 | # include <linux/time32.h> |
H. Peter Anvin | 8b3d1cd | 2012-02-07 21:09:05 -0800 | [diff] [blame] | 75 | |
Deepa Dinamani | d5b7ffb | 2017-06-24 11:45:03 -0700 | [diff] [blame] | 76 | static inline bool itimerspec64_valid(const struct itimerspec64 *its) |
| 77 | { |
| 78 | if (!timespec64_valid(&(its->it_interval)) || |
| 79 | !timespec64_valid(&(its->it_value))) |
| 80 | return false; |
| 81 | |
| 82 | return true; |
| 83 | } |
| 84 | |
Andreas Dilger | b5f5157 | 2017-08-31 11:09:45 -0400 | [diff] [blame] | 85 | /** |
| 86 | * time_after32 - compare two 32-bit relative times |
| 87 | * @a: the time which may be after @b |
| 88 | * @b: the time which may be before @a |
| 89 | * |
| 90 | * time_after32(a, b) returns true if the time @a is after time @b. |
| 91 | * time_before32(b, a) returns true if the time @b is before time @a. |
| 92 | * |
| 93 | * Similar to time_after(), compare two 32-bit timestamps for relative |
| 94 | * times. This is useful for comparing 32-bit seconds values that can't |
| 95 | * be converted to 64-bit values (e.g. due to disk format or wire protocol |
| 96 | * issues) when it is known that the times are less than 68 years apart. |
| 97 | */ |
| 98 | #define time_after32(a, b) ((s32)((u32)(b) - (u32)(a)) < 0) |
| 99 | #define time_before32(b, a) time_after32(a, b) |
Guillaume Nault | 04d26e7 | 2019-12-06 12:38:36 +0100 | [diff] [blame] | 100 | |
| 101 | /** |
| 102 | * time_between32 - check if a 32-bit timestamp is within a given time range |
| 103 | * @t: the time which may be within [l,h] |
| 104 | * @l: the lower bound of the range |
| 105 | * @h: the higher bound of the range |
| 106 | * |
| 107 | * time_before32(t, l, h) returns true if @l <= @t <= @h. All operands are |
| 108 | * treated as 32-bit integers. |
| 109 | * |
| 110 | * Equivalent to !(time_before32(@t, @l) || time_after32(@t, @h)). |
| 111 | */ |
| 112 | #define time_between32(t, l, h) ((u32)(h) - (u32)(l) >= (u32)(t) - (u32)(l)) |
Thomas Gleixner | 660fd04 | 2019-11-12 01:27:09 +0000 | [diff] [blame] | 113 | |
Vincenzo Frascino | 639fff1 | 2020-03-20 14:53:35 +0000 | [diff] [blame] | 114 | # include <vdso/time.h> |
Thomas Gleixner | 660fd04 | 2019-11-12 01:27:09 +0000 | [diff] [blame] | 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | #endif |