1 #ifndef _LINUX_TIME32_H 2 #define _LINUX_TIME32_H 3 /* 4 * These are all interfaces based on the old time_t definition 5 * that overflows in 2038 on 32-bit architectures. New code 6 * should use the replacements based on time64_t and timespec64. 7 * 8 * Any interfaces in here that become unused as we migrate 9 * code to time64_t should get removed. 10 */ 11 12 #include <linux/time64.h> 13 14 #define TIME_T_MAX (time_t)((1UL << ((sizeof(time_t) << 3) - 1)) - 1) 15 16 typedef s32 old_time32_t; 17 18 struct old_timespec32 { 19 old_time32_t tv_sec; 20 s32 tv_nsec; 21 }; 22 23 struct old_timeval32 { 24 old_time32_t tv_sec; 25 s32 tv_usec; 26 }; 27 28 struct old_itimerspec32 { 29 struct old_timespec32 it_interval; 30 struct old_timespec32 it_value; 31 }; 32 33 extern int get_old_timespec32(struct timespec64 *, const void __user *); 34 extern int put_old_timespec32(const struct timespec64 *, void __user *); 35 extern int get_old_itimerspec32(struct itimerspec64 *its, 36 const struct old_itimerspec32 __user *uits); 37 extern int put_old_itimerspec32(const struct itimerspec64 *its, 38 struct old_itimerspec32 __user *uits); 39 40 41 #if __BITS_PER_LONG == 64 42 43 /* timespec64 is defined as timespec here */ 44 static inline struct timespec timespec64_to_timespec(const struct timespec64 ts64) 45 { 46 return *(const struct timespec *)&ts64; 47 } 48 49 static inline struct timespec64 timespec_to_timespec64(const struct timespec ts) 50 { 51 return *(const struct timespec64 *)&ts; 52 } 53 54 #else 55 static inline struct timespec timespec64_to_timespec(const struct timespec64 ts64) 56 { 57 struct timespec ret; 58 59 ret.tv_sec = (time_t)ts64.tv_sec; 60 ret.tv_nsec = ts64.tv_nsec; 61 return ret; 62 } 63 64 static inline struct timespec64 timespec_to_timespec64(const struct timespec ts) 65 { 66 struct timespec64 ret; 67 68 ret.tv_sec = ts.tv_sec; 69 ret.tv_nsec = ts.tv_nsec; 70 return ret; 71 } 72 #endif 73 74 static inline int timespec_equal(const struct timespec *a, 75 const struct timespec *b) 76 { 77 return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec); 78 } 79 80 /* 81 * lhs < rhs: return <0 82 * lhs == rhs: return 0 83 * lhs > rhs: return >0 84 */ 85 static inline int timespec_compare(const struct timespec *lhs, const struct timespec *rhs) 86 { 87 if (lhs->tv_sec < rhs->tv_sec) 88 return -1; 89 if (lhs->tv_sec > rhs->tv_sec) 90 return 1; 91 return lhs->tv_nsec - rhs->tv_nsec; 92 } 93 94 extern void set_normalized_timespec(struct timespec *ts, time_t sec, s64 nsec); 95 96 static inline struct timespec timespec_add(struct timespec lhs, 97 struct timespec rhs) 98 { 99 struct timespec ts_delta; 100 101 set_normalized_timespec(&ts_delta, lhs.tv_sec + rhs.tv_sec, 102 lhs.tv_nsec + rhs.tv_nsec); 103 return ts_delta; 104 } 105 106 /* 107 * sub = lhs - rhs, in normalized form 108 */ 109 static inline struct timespec timespec_sub(struct timespec lhs, 110 struct timespec rhs) 111 { 112 struct timespec ts_delta; 113 114 set_normalized_timespec(&ts_delta, lhs.tv_sec - rhs.tv_sec, 115 lhs.tv_nsec - rhs.tv_nsec); 116 return ts_delta; 117 } 118 119 /* 120 * Returns true if the timespec is norm, false if denorm: 121 */ 122 static inline bool timespec_valid(const struct timespec *ts) 123 { 124 /* Dates before 1970 are bogus */ 125 if (ts->tv_sec < 0) 126 return false; 127 /* Can't have more nanoseconds then a second */ 128 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC) 129 return false; 130 return true; 131 } 132 133 /** 134 * timespec_to_ns - Convert timespec to nanoseconds 135 * @ts: pointer to the timespec variable to be converted 136 * 137 * Returns the scalar nanosecond representation of the timespec 138 * parameter. 139 */ 140 static inline s64 timespec_to_ns(const struct timespec *ts) 141 { 142 return ((s64) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec; 143 } 144 145 /** 146 * ns_to_timespec - Convert nanoseconds to timespec 147 * @nsec: the nanoseconds value to be converted 148 * 149 * Returns the timespec representation of the nsec parameter. 150 */ 151 extern struct timespec ns_to_timespec(const s64 nsec); 152 153 /** 154 * timespec_add_ns - Adds nanoseconds to a timespec 155 * @a: pointer to timespec to be incremented 156 * @ns: unsigned nanoseconds value to be added 157 * 158 * This must always be inlined because its used from the x86-64 vdso, 159 * which cannot call other kernel functions. 160 */ 161 static __always_inline void timespec_add_ns(struct timespec *a, u64 ns) 162 { 163 a->tv_sec += __iter_div_u64_rem(a->tv_nsec + ns, NSEC_PER_SEC, &ns); 164 a->tv_nsec = ns; 165 } 166 167 static inline unsigned long mktime(const unsigned int year, 168 const unsigned int mon, const unsigned int day, 169 const unsigned int hour, const unsigned int min, 170 const unsigned int sec) 171 { 172 return mktime64(year, mon, day, hour, min, sec); 173 } 174 175 static inline bool timeval_valid(const struct timeval *tv) 176 { 177 /* Dates before 1970 are bogus */ 178 if (tv->tv_sec < 0) 179 return false; 180 181 /* Can't have more microseconds then a second */ 182 if (tv->tv_usec < 0 || tv->tv_usec >= USEC_PER_SEC) 183 return false; 184 185 return true; 186 } 187 188 /** 189 * timeval_to_ns - Convert timeval to nanoseconds 190 * @ts: pointer to the timeval variable to be converted 191 * 192 * Returns the scalar nanosecond representation of the timeval 193 * parameter. 194 */ 195 static inline s64 timeval_to_ns(const struct timeval *tv) 196 { 197 return ((s64) tv->tv_sec * NSEC_PER_SEC) + 198 tv->tv_usec * NSEC_PER_USEC; 199 } 200 201 /** 202 * ns_to_timeval - Convert nanoseconds to timeval 203 * @nsec: the nanoseconds value to be converted 204 * 205 * Returns the timeval representation of the nsec parameter. 206 */ 207 extern struct timeval ns_to_timeval(const s64 nsec); 208 extern struct __kernel_old_timeval ns_to_kernel_old_timeval(s64 nsec); 209 210 /* 211 * Old names for the 32-bit time_t interfaces, these will be removed 212 * when everything uses the new names. 213 */ 214 #define compat_time_t old_time32_t 215 #define compat_timeval old_timeval32 216 #define compat_timespec old_timespec32 217 #define compat_itimerspec old_itimerspec32 218 #define ns_to_compat_timeval ns_to_old_timeval32 219 #define get_compat_itimerspec64 get_old_itimerspec32 220 #define put_compat_itimerspec64 put_old_itimerspec32 221 #define compat_get_timespec64 get_old_timespec32 222 #define compat_put_timespec64 put_old_timespec32 223 224 #endif 225