blob: 4c325bf44ce001238467e28019af6e42646a0d53 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_TIME_H
3#define _LINUX_TIME_H
4
Thomas Gleixner82644452007-07-21 04:37:37 -07005# include <linux/cache.h>
Ingo Molnar57a55872006-01-09 20:52:26 -08006# include <linux/seqlock.h>
Jeremy Fitzhardingef595ec92008-06-12 10:47:56 +02007# include <linux/math64.h>
John Stultz361a3bf2014-07-16 21:03:58 +00008# include <linux/time64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Christoph Hellwigb418da12008-10-15 22:02:06 -070010extern struct timezone sys_tz;
11
Deepa Dinamanif59dd9c2017-06-24 11:45:02 -070012int get_timespec64(struct timespec64 *ts,
Deepa Dinamaniea2ce8f2018-03-13 21:03:31 -070013 const struct __kernel_timespec __user *uts);
Deepa Dinamanif59dd9c2017-06-24 11:45:02 -070014int put_timespec64(const struct timespec64 *ts,
Deepa Dinamaniea2ce8f2018-03-13 21:03:31 -070015 struct __kernel_timespec __user *uts);
Deepa Dinamanid5b7ffb2017-06-24 11:45:03 -070016int get_itimerspec64(struct itimerspec64 *it,
Deepa Dinamanid0dd63a2018-06-16 22:11:42 -070017 const struct __kernel_itimerspec __user *uit);
Deepa Dinamanid5b7ffb2017-06-24 11:45:03 -070018int put_itimerspec64(const struct itimerspec64 *it,
Deepa Dinamanid0dd63a2018-06-16 22:11:42 -070019 struct __kernel_itimerspec __user *uit);
Deepa Dinamanif59dd9c2017-06-24 11:45:02 -070020
pang.xunlei90b6ce92014-11-18 19:15:18 +080021extern 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 stultz7d275582009-05-01 13:10:26 -070025/* 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 Warren7b1f6202012-11-07 17:58:54 -070035extern u32 (*arch_gettimeoffset)(void);
john stultz7d275582009-05-01 13:10:26 -070036#endif
37
Arnd Bergmannddbc7d02019-10-25 21:37:43 +020038#ifdef CONFIG_POSIX_TIMERS
39extern void clear_itimer(void);
40#else
41static inline void clear_itimer(void) {}
42#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Deepa Dinamaniaaed2dd2017-08-02 19:51:15 -070044extern long do_utimes(int dfd, const char __user *filename, struct timespec64 *times, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Zhaolei57f1f082009-09-23 15:56:10 -070046/*
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 */
50struct 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 Dinamanie6c26822016-06-08 22:04:59 -070072void time64_to_tm(time64_t totalsecs, int offset, struct tm *result);
73
Arnd Bergmann5dbf2012017-10-19 13:14:47 +020074# include <linux/time32.h>
H. Peter Anvin8b3d1cd2012-02-07 21:09:05 -080075
Deepa Dinamanid5b7ffb2017-06-24 11:45:03 -070076static 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 Dilgerb5f51572017-08-31 11:09:45 -040085/**
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 Nault04d26e72019-12-06 12:38:36 +0100100
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 Gleixner660fd042019-11-12 01:27:09 +0000113
Vincenzo Frascino639fff12020-03-20 14:53:35 +0000114# include <vdso/time.h>
Thomas Gleixner660fd042019-11-12 01:27:09 +0000115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#endif