Linux Audio

Check our new training course

Loading...
v4.10.11
 
  1#ifndef _LINUX_TIME64_H
  2#define _LINUX_TIME64_H
  3
  4#include <uapi/linux/time.h>
  5#include <linux/math64.h>
 
  6
  7typedef __s64 time64_t;
  8typedef __u64 timeu64_t;
  9
 10/*
 11 * This wants to go into uapi/linux/time.h once we agreed about the
 12 * userspace interfaces.
 13 */
 14#if __BITS_PER_LONG == 64
 15# define timespec64 timespec
 16#define itimerspec64 itimerspec
 17#else
 18struct timespec64 {
 19	time64_t	tv_sec;			/* seconds */
 20	long		tv_nsec;		/* nanoseconds */
 21};
 22
 23struct itimerspec64 {
 24	struct timespec64 it_interval;
 25	struct timespec64 it_value;
 26};
 27
 28#endif
 29
 30/* Parameters used to convert the timespec values: */
 31#define MSEC_PER_SEC	1000L
 32#define USEC_PER_MSEC	1000L
 33#define NSEC_PER_USEC	1000L
 34#define NSEC_PER_MSEC	1000000L
 35#define USEC_PER_SEC	1000000L
 36#define NSEC_PER_SEC	1000000000L
 37#define FSEC_PER_SEC	1000000000000000LL
 38
 39/* Located here for timespec[64]_valid_strict */
 40#define TIME64_MAX			((s64)~((u64)1 << 63))
 
 
 41#define KTIME_MAX			((s64)~((u64)1 << 63))
 
 42#define KTIME_SEC_MAX			(KTIME_MAX / NSEC_PER_SEC)
 
 43
 44#if __BITS_PER_LONG == 64
 45
 46static inline struct timespec timespec64_to_timespec(const struct timespec64 ts64)
 47{
 48	return ts64;
 49}
 50
 51static inline struct timespec64 timespec_to_timespec64(const struct timespec ts)
 52{
 53	return ts;
 54}
 55
 56static inline struct itimerspec itimerspec64_to_itimerspec(struct itimerspec64 *its64)
 57{
 58	return *its64;
 59}
 60
 61static inline struct itimerspec64 itimerspec_to_itimerspec64(struct itimerspec *its)
 62{
 63	return *its;
 64}
 65
 66# define timespec64_equal		timespec_equal
 67# define timespec64_compare		timespec_compare
 68# define set_normalized_timespec64	set_normalized_timespec
 69# define timespec64_add			timespec_add
 70# define timespec64_sub			timespec_sub
 71# define timespec64_valid		timespec_valid
 72# define timespec64_valid_strict	timespec_valid_strict
 73# define timespec64_to_ns		timespec_to_ns
 74# define ns_to_timespec64		ns_to_timespec
 75# define timespec64_add_ns		timespec_add_ns
 76
 77#else
 78
 79static inline struct timespec timespec64_to_timespec(const struct timespec64 ts64)
 80{
 81	struct timespec ret;
 82
 83	ret.tv_sec = (time_t)ts64.tv_sec;
 84	ret.tv_nsec = ts64.tv_nsec;
 85	return ret;
 86}
 87
 88static inline struct timespec64 timespec_to_timespec64(const struct timespec ts)
 89{
 90	struct timespec64 ret;
 91
 92	ret.tv_sec = ts.tv_sec;
 93	ret.tv_nsec = ts.tv_nsec;
 94	return ret;
 95}
 96
 97static inline struct itimerspec itimerspec64_to_itimerspec(struct itimerspec64 *its64)
 98{
 99	struct itimerspec ret;
100
101	ret.it_interval = timespec64_to_timespec(its64->it_interval);
102	ret.it_value = timespec64_to_timespec(its64->it_value);
103	return ret;
104}
105
106static inline struct itimerspec64 itimerspec_to_itimerspec64(struct itimerspec *its)
107{
108	struct itimerspec64 ret;
109
110	ret.it_interval = timespec_to_timespec64(its->it_interval);
111	ret.it_value = timespec_to_timespec64(its->it_value);
112	return ret;
113}
114
115static inline int timespec64_equal(const struct timespec64 *a,
116				   const struct timespec64 *b)
117{
118	return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec);
119}
120
121/*
122 * lhs < rhs:  return <0
123 * lhs == rhs: return 0
124 * lhs > rhs:  return >0
125 */
126static inline int timespec64_compare(const struct timespec64 *lhs, const struct timespec64 *rhs)
127{
128	if (lhs->tv_sec < rhs->tv_sec)
129		return -1;
130	if (lhs->tv_sec > rhs->tv_sec)
131		return 1;
132	return lhs->tv_nsec - rhs->tv_nsec;
133}
134
135extern void set_normalized_timespec64(struct timespec64 *ts, time64_t sec, s64 nsec);
136
137static inline struct timespec64 timespec64_add(struct timespec64 lhs,
138						struct timespec64 rhs)
139{
140	struct timespec64 ts_delta;
141	set_normalized_timespec64(&ts_delta, lhs.tv_sec + rhs.tv_sec,
142				lhs.tv_nsec + rhs.tv_nsec);
143	return ts_delta;
144}
145
146/*
147 * sub = lhs - rhs, in normalized form
148 */
149static inline struct timespec64 timespec64_sub(struct timespec64 lhs,
150						struct timespec64 rhs)
151{
152	struct timespec64 ts_delta;
153	set_normalized_timespec64(&ts_delta, lhs.tv_sec - rhs.tv_sec,
154				lhs.tv_nsec - rhs.tv_nsec);
155	return ts_delta;
156}
157
158/*
159 * Returns true if the timespec64 is norm, false if denorm:
160 */
161static inline bool timespec64_valid(const struct timespec64 *ts)
162{
163	/* Dates before 1970 are bogus */
164	if (ts->tv_sec < 0)
165		return false;
166	/* Can't have more nanoseconds then a second */
167	if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
168		return false;
169	return true;
170}
171
172static inline bool timespec64_valid_strict(const struct timespec64 *ts)
173{
174	if (!timespec64_valid(ts))
175		return false;
176	/* Disallow values that could overflow ktime_t */
177	if ((unsigned long long)ts->tv_sec >= KTIME_SEC_MAX)
178		return false;
179	return true;
180}
181
 
 
 
 
 
 
 
 
 
 
182/**
183 * timespec64_to_ns - Convert timespec64 to nanoseconds
184 * @ts:		pointer to the timespec64 variable to be converted
185 *
186 * Returns the scalar nanosecond representation of the timespec64
187 * parameter.
188 */
189static inline s64 timespec64_to_ns(const struct timespec64 *ts)
190{
 
 
 
 
 
 
 
191	return ((s64) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec;
192}
193
194/**
195 * ns_to_timespec64 - Convert nanoseconds to timespec64
196 * @nsec:	the nanoseconds value to be converted
197 *
198 * Returns the timespec64 representation of the nsec parameter.
199 */
200extern struct timespec64 ns_to_timespec64(const s64 nsec);
201
202/**
203 * timespec64_add_ns - Adds nanoseconds to a timespec64
204 * @a:		pointer to timespec64 to be incremented
205 * @ns:		unsigned nanoseconds value to be added
206 *
207 * This must always be inlined because its used from the x86-64 vdso,
208 * which cannot call other kernel functions.
209 */
210static __always_inline void timespec64_add_ns(struct timespec64 *a, u64 ns)
211{
212	a->tv_sec += __iter_div_u64_rem(a->tv_nsec + ns, NSEC_PER_SEC, &ns);
213	a->tv_nsec = ns;
214}
215
216#endif
217
218/*
219 * timespec64_add_safe assumes both values are positive and checks for
220 * overflow. It will return TIME64_MAX in case of overflow.
221 */
222extern struct timespec64 timespec64_add_safe(const struct timespec64 lhs,
223					 const struct timespec64 rhs);
224
225#endif /* _LINUX_TIME64_H */
v6.2
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef _LINUX_TIME64_H
  3#define _LINUX_TIME64_H
  4
 
  5#include <linux/math64.h>
  6#include <vdso/time64.h>
  7
  8typedef __s64 time64_t;
  9typedef __u64 timeu64_t;
 10
 11#include <uapi/linux/time.h>
 12
 
 
 
 
 
 
 13struct timespec64 {
 14	time64_t	tv_sec;			/* seconds */
 15	long		tv_nsec;		/* nanoseconds */
 16};
 17
 18struct itimerspec64 {
 19	struct timespec64 it_interval;
 20	struct timespec64 it_value;
 21};
 22
 
 
 23/* Parameters used to convert the timespec values: */
 24#define PSEC_PER_NSEC			1000L
 
 
 
 
 
 
 25
 26/* Located here for timespec[64]_valid_strict */
 27#define TIME64_MAX			((s64)~((u64)1 << 63))
 28#define TIME64_MIN			(-TIME64_MAX - 1)
 29
 30#define KTIME_MAX			((s64)~((u64)1 << 63))
 31#define KTIME_MIN			(-KTIME_MAX - 1)
 32#define KTIME_SEC_MAX			(KTIME_MAX / NSEC_PER_SEC)
 33#define KTIME_SEC_MIN			(KTIME_MIN / NSEC_PER_SEC)
 34
 35/*
 36 * Limits for settimeofday():
 37 *
 38 * To prevent setting the time close to the wraparound point time setting
 39 * is limited so a reasonable uptime can be accomodated. Uptime of 30 years
 40 * should be really sufficient, which means the cutoff is 2232. At that
 41 * point the cutoff is just a small part of the larger problem.
 42 */
 43#define TIME_UPTIME_SEC_MAX		(30LL * 365 * 24 *3600)
 44#define TIME_SETTOD_SEC_MAX		(KTIME_SEC_MAX - TIME_UPTIME_SEC_MAX)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 45
 46static inline int timespec64_equal(const struct timespec64 *a,
 47				   const struct timespec64 *b)
 48{
 49	return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec);
 50}
 51
 52/*
 53 * lhs < rhs:  return <0
 54 * lhs == rhs: return 0
 55 * lhs > rhs:  return >0
 56 */
 57static inline int timespec64_compare(const struct timespec64 *lhs, const struct timespec64 *rhs)
 58{
 59	if (lhs->tv_sec < rhs->tv_sec)
 60		return -1;
 61	if (lhs->tv_sec > rhs->tv_sec)
 62		return 1;
 63	return lhs->tv_nsec - rhs->tv_nsec;
 64}
 65
 66extern void set_normalized_timespec64(struct timespec64 *ts, time64_t sec, s64 nsec);
 67
 68static inline struct timespec64 timespec64_add(struct timespec64 lhs,
 69						struct timespec64 rhs)
 70{
 71	struct timespec64 ts_delta;
 72	set_normalized_timespec64(&ts_delta, lhs.tv_sec + rhs.tv_sec,
 73				lhs.tv_nsec + rhs.tv_nsec);
 74	return ts_delta;
 75}
 76
 77/*
 78 * sub = lhs - rhs, in normalized form
 79 */
 80static inline struct timespec64 timespec64_sub(struct timespec64 lhs,
 81						struct timespec64 rhs)
 82{
 83	struct timespec64 ts_delta;
 84	set_normalized_timespec64(&ts_delta, lhs.tv_sec - rhs.tv_sec,
 85				lhs.tv_nsec - rhs.tv_nsec);
 86	return ts_delta;
 87}
 88
 89/*
 90 * Returns true if the timespec64 is norm, false if denorm:
 91 */
 92static inline bool timespec64_valid(const struct timespec64 *ts)
 93{
 94	/* Dates before 1970 are bogus */
 95	if (ts->tv_sec < 0)
 96		return false;
 97	/* Can't have more nanoseconds then a second */
 98	if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
 99		return false;
100	return true;
101}
102
103static inline bool timespec64_valid_strict(const struct timespec64 *ts)
104{
105	if (!timespec64_valid(ts))
106		return false;
107	/* Disallow values that could overflow ktime_t */
108	if ((unsigned long long)ts->tv_sec >= KTIME_SEC_MAX)
109		return false;
110	return true;
111}
112
113static inline bool timespec64_valid_settod(const struct timespec64 *ts)
114{
115	if (!timespec64_valid(ts))
116		return false;
117	/* Disallow values which cause overflow issues vs. CLOCK_REALTIME */
118	if ((unsigned long long)ts->tv_sec >= TIME_SETTOD_SEC_MAX)
119		return false;
120	return true;
121}
122
123/**
124 * timespec64_to_ns - Convert timespec64 to nanoseconds
125 * @ts:		pointer to the timespec64 variable to be converted
126 *
127 * Returns the scalar nanosecond representation of the timespec64
128 * parameter.
129 */
130static inline s64 timespec64_to_ns(const struct timespec64 *ts)
131{
132	/* Prevent multiplication overflow / underflow */
133	if (ts->tv_sec >= KTIME_SEC_MAX)
134		return KTIME_MAX;
135
136	if (ts->tv_sec <= KTIME_SEC_MIN)
137		return KTIME_MIN;
138
139	return ((s64) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec;
140}
141
142/**
143 * ns_to_timespec64 - Convert nanoseconds to timespec64
144 * @nsec:	the nanoseconds value to be converted
145 *
146 * Returns the timespec64 representation of the nsec parameter.
147 */
148extern struct timespec64 ns_to_timespec64(s64 nsec);
149
150/**
151 * timespec64_add_ns - Adds nanoseconds to a timespec64
152 * @a:		pointer to timespec64 to be incremented
153 * @ns:		unsigned nanoseconds value to be added
154 *
155 * This must always be inlined because its used from the x86-64 vdso,
156 * which cannot call other kernel functions.
157 */
158static __always_inline void timespec64_add_ns(struct timespec64 *a, u64 ns)
159{
160	a->tv_sec += __iter_div_u64_rem(a->tv_nsec + ns, NSEC_PER_SEC, &ns);
161	a->tv_nsec = ns;
162}
 
 
163
164/*
165 * timespec64_add_safe assumes both values are positive and checks for
166 * overflow. It will return TIME64_MAX in case of overflow.
167 */
168extern struct timespec64 timespec64_add_safe(const struct timespec64 lhs,
169					 const struct timespec64 rhs);
170
171#endif /* _LINUX_TIME64_H */