diff options
author | pang.xunlei <pang.xunlei@linaro.org> | 2014-11-18 06:15:19 -0500 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2014-11-21 15:00:00 -0500 |
commit | c2c11ae4b6bc03b41720337028b940cbec9e316f (patch) | |
tree | 84ea760eb63dc0e9b99eca1ef1564d526b8c82c9 | |
parent | 5322e4c2649844c04f480ca45572022eb684b872 (diff) |
rtc/lib: Provide y2038 safe rtc_tm_to_time()/rtc_time_to_tm() replacement
As part of addressing "y2038 problem" for in-kernel uses, this patch
adds safe rtc_tm_to_time64()/rtc_time64_to_tm() respectively using
time64_t.
After this patch, rtc_tm_to_time() is deprecated and all its call
sites will be fixed using corresponding safe versions, it can be
removed when having no users. Also change rtc_tm_to_time64() to
return time64_t directly instead of just as a parameter like
rtc_tm_to_time() does.
After this patch, rtc_time_to_tm() is deprecated and all its call
sites will be fixed using corresponding safe versions, it can be
removed when having no users.
In addition, change rtc_tm_to_ktime() and rtc_ktime_to_tm() to use
the safe version in passing.
Signed-off-by: pang.xunlei <pang.xunlei@linaro.org>
Signed-off-by: John Stultz <john.stultz@linaro.org>
-rw-r--r-- | drivers/rtc/rtc-lib.c | 38 | ||||
-rw-r--r-- | include/linux/rtc.h | 21 |
2 files changed, 39 insertions, 20 deletions
diff --git a/drivers/rtc/rtc-lib.c b/drivers/rtc/rtc-lib.c index c4cf05731118..e6bfb9c42a10 100644 --- a/drivers/rtc/rtc-lib.c +++ b/drivers/rtc/rtc-lib.c | |||
@@ -45,16 +45,20 @@ int rtc_year_days(unsigned int day, unsigned int month, unsigned int year) | |||
45 | } | 45 | } |
46 | EXPORT_SYMBOL(rtc_year_days); | 46 | EXPORT_SYMBOL(rtc_year_days); |
47 | 47 | ||
48 | |||
48 | /* | 49 | /* |
50 | * rtc_time_to_tm64 - Converts time64_t to rtc_time. | ||
49 | * Convert seconds since 01-01-1970 00:00:00 to Gregorian date. | 51 | * Convert seconds since 01-01-1970 00:00:00 to Gregorian date. |
50 | */ | 52 | */ |
51 | void rtc_time_to_tm(unsigned long time, struct rtc_time *tm) | 53 | void rtc_time64_to_tm(time64_t time, struct rtc_time *tm) |
52 | { | 54 | { |
53 | unsigned int month, year; | 55 | unsigned int month, year; |
56 | unsigned long secs; | ||
54 | int days; | 57 | int days; |
55 | 58 | ||
56 | days = time / 86400; | 59 | /* time must be positive */ |
57 | time -= (unsigned int) days * 86400; | 60 | days = div_s64(time, 86400); |
61 | secs = time - (unsigned int) days * 86400; | ||
58 | 62 | ||
59 | /* day of the week, 1970-01-01 was a Thursday */ | 63 | /* day of the week, 1970-01-01 was a Thursday */ |
60 | tm->tm_wday = (days + 4) % 7; | 64 | tm->tm_wday = (days + 4) % 7; |
@@ -81,14 +85,14 @@ void rtc_time_to_tm(unsigned long time, struct rtc_time *tm) | |||
81 | tm->tm_mon = month; | 85 | tm->tm_mon = month; |
82 | tm->tm_mday = days + 1; | 86 | tm->tm_mday = days + 1; |
83 | 87 | ||
84 | tm->tm_hour = time / 3600; | 88 | tm->tm_hour = secs / 3600; |
85 | time -= tm->tm_hour * 3600; | 89 | secs -= tm->tm_hour * 3600; |
86 | tm->tm_min = time / 60; | 90 | tm->tm_min = secs / 60; |
87 | tm->tm_sec = time - tm->tm_min * 60; | 91 | tm->tm_sec = secs - tm->tm_min * 60; |
88 | 92 | ||
89 | tm->tm_isdst = 0; | 93 | tm->tm_isdst = 0; |
90 | } | 94 | } |
91 | EXPORT_SYMBOL(rtc_time_to_tm); | 95 | EXPORT_SYMBOL(rtc_time64_to_tm); |
92 | 96 | ||
93 | /* | 97 | /* |
94 | * Does the rtc_time represent a valid date/time? | 98 | * Does the rtc_time represent a valid date/time? |
@@ -109,24 +113,22 @@ int rtc_valid_tm(struct rtc_time *tm) | |||
109 | EXPORT_SYMBOL(rtc_valid_tm); | 113 | EXPORT_SYMBOL(rtc_valid_tm); |
110 | 114 | ||
111 | /* | 115 | /* |
116 | * rtc_tm_to_time64 - Converts rtc_time to time64_t. | ||
112 | * Convert Gregorian date to seconds since 01-01-1970 00:00:00. | 117 | * Convert Gregorian date to seconds since 01-01-1970 00:00:00. |
113 | */ | 118 | */ |
114 | int rtc_tm_to_time(struct rtc_time *tm, unsigned long *time) | 119 | time64_t rtc_tm_to_time64(struct rtc_time *tm) |
115 | { | 120 | { |
116 | *time = mktime(tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, | 121 | return mktime64(tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, |
117 | tm->tm_hour, tm->tm_min, tm->tm_sec); | 122 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
118 | return 0; | ||
119 | } | 123 | } |
120 | EXPORT_SYMBOL(rtc_tm_to_time); | 124 | EXPORT_SYMBOL(rtc_tm_to_time64); |
121 | 125 | ||
122 | /* | 126 | /* |
123 | * Convert rtc_time to ktime | 127 | * Convert rtc_time to ktime |
124 | */ | 128 | */ |
125 | ktime_t rtc_tm_to_ktime(struct rtc_time tm) | 129 | ktime_t rtc_tm_to_ktime(struct rtc_time tm) |
126 | { | 130 | { |
127 | time_t time; | 131 | return ktime_set(rtc_tm_to_time64(&tm), 0); |
128 | rtc_tm_to_time(&tm, &time); | ||
129 | return ktime_set(time, 0); | ||
130 | } | 132 | } |
131 | EXPORT_SYMBOL_GPL(rtc_tm_to_ktime); | 133 | EXPORT_SYMBOL_GPL(rtc_tm_to_ktime); |
132 | 134 | ||
@@ -135,14 +137,14 @@ EXPORT_SYMBOL_GPL(rtc_tm_to_ktime); | |||
135 | */ | 137 | */ |
136 | struct rtc_time rtc_ktime_to_tm(ktime_t kt) | 138 | struct rtc_time rtc_ktime_to_tm(ktime_t kt) |
137 | { | 139 | { |
138 | struct timespec ts; | 140 | struct timespec64 ts; |
139 | struct rtc_time ret; | 141 | struct rtc_time ret; |
140 | 142 | ||
141 | ts = ktime_to_timespec(kt); | 143 | ts = ktime_to_timespec64(kt); |
142 | /* Round up any ns */ | 144 | /* Round up any ns */ |
143 | if (ts.tv_nsec) | 145 | if (ts.tv_nsec) |
144 | ts.tv_sec++; | 146 | ts.tv_sec++; |
145 | rtc_time_to_tm(ts.tv_sec, &ret); | 147 | rtc_time64_to_tm(ts.tv_sec, &ret); |
146 | return ret; | 148 | return ret; |
147 | } | 149 | } |
148 | EXPORT_SYMBOL_GPL(rtc_ktime_to_tm); | 150 | EXPORT_SYMBOL_GPL(rtc_ktime_to_tm); |
diff --git a/include/linux/rtc.h b/include/linux/rtc.h index c2c28975293c..6d6be09a2fe5 100644 --- a/include/linux/rtc.h +++ b/include/linux/rtc.h | |||
@@ -19,11 +19,28 @@ | |||
19 | extern int rtc_month_days(unsigned int month, unsigned int year); | 19 | extern int rtc_month_days(unsigned int month, unsigned int year); |
20 | extern int rtc_year_days(unsigned int day, unsigned int month, unsigned int year); | 20 | extern int rtc_year_days(unsigned int day, unsigned int month, unsigned int year); |
21 | extern int rtc_valid_tm(struct rtc_time *tm); | 21 | extern int rtc_valid_tm(struct rtc_time *tm); |
22 | extern int rtc_tm_to_time(struct rtc_time *tm, unsigned long *time); | 22 | extern time64_t rtc_tm_to_time64(struct rtc_time *tm); |
23 | extern void rtc_time_to_tm(unsigned long time, struct rtc_time *tm); | 23 | extern void rtc_time64_to_tm(time64_t time, struct rtc_time *tm); |
24 | ktime_t rtc_tm_to_ktime(struct rtc_time tm); | 24 | ktime_t rtc_tm_to_ktime(struct rtc_time tm); |
25 | struct rtc_time rtc_ktime_to_tm(ktime_t kt); | 25 | struct rtc_time rtc_ktime_to_tm(ktime_t kt); |
26 | 26 | ||
27 | /** | ||
28 | * Deprecated. Use rtc_time64_to_tm(). | ||
29 | */ | ||
30 | static inline void rtc_time_to_tm(unsigned long time, struct rtc_time *tm) | ||
31 | { | ||
32 | rtc_time64_to_tm(time, tm); | ||
33 | } | ||
34 | |||
35 | /** | ||
36 | * Deprecated. Use rtc_tm_to_time64(). | ||
37 | */ | ||
38 | static inline int rtc_tm_to_time(struct rtc_time *tm, unsigned long *time) | ||
39 | { | ||
40 | *time = rtc_tm_to_time64(tm); | ||
41 | |||
42 | return 0; | ||
43 | } | ||
27 | 44 | ||
28 | #include <linux/device.h> | 45 | #include <linux/device.h> |
29 | #include <linux/seq_file.h> | 46 | #include <linux/seq_file.h> |