Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Robert Griebl | 6859d76 | 2002-08-05 02:57:12 +0000 | [diff] [blame] | 3 | * Mini hwclock implementation for busybox |
| 4 | * |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 5 | * Copyright (C) 2002 Robert Griebl <griebl@gmx.de> |
| 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 8 | */ |
| 9 | //config:config HWCLOCK |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 10 | //config: bool "hwclock (5.8 kb)" |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 11 | //config: default y |
| 12 | //config: select PLATFORM_LINUX |
| 13 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 14 | //config: The hwclock utility is used to read and set the hardware clock |
| 15 | //config: on a system. This is primarily used to set the current time on |
| 16 | //config: shutdown in the hardware clock, so the hardware will keep the |
| 17 | //config: correct time when Linux is _not_ running. |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 18 | //config: |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 19 | //config:config FEATURE_HWCLOCK_ADJTIME_FHS |
| 20 | //config: bool "Use FHS /var/lib/hwclock/adjtime" |
| 21 | //config: default n # util-linux-ng in Fedora 13 still uses /etc/adjtime |
| 22 | //config: depends on HWCLOCK |
| 23 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 24 | //config: Starting with FHS 2.3, the adjtime state file is supposed to exist |
| 25 | //config: at /var/lib/hwclock/adjtime instead of /etc/adjtime. If you wish |
| 26 | //config: to use the FHS behavior, answer Y here, otherwise answer N for the |
| 27 | //config: classic /etc/adjtime path. |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 28 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 29 | //config: pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 30 | |
| 31 | //applet:IF_HWCLOCK(APPLET(hwclock, BB_DIR_SBIN, BB_SUID_DROP)) |
| 32 | |
| 33 | //kbuild:lib-$(CONFIG_HWCLOCK) += hwclock.o |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 34 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 35 | #include "libbb.h" |
Denys Vlasenko | 043b1e5 | 2009-09-06 12:47:55 +0200 | [diff] [blame] | 36 | /* After libbb.h, since it needs sys/types.h on some systems */ |
| 37 | #include <sys/utsname.h> |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 38 | #include "rtc_.h" |
Eric Andersen | 8882ea5 | 2002-12-11 03:41:28 +0000 | [diff] [blame] | 39 | |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 40 | /* diff code is disabled: it's not sys/hw clock diff, it's some useless |
| 41 | * "time between hwclock was started and we saw CMOS tick" quantity. |
| 42 | * It's useless since hwclock is started at a random moment, |
| 43 | * thus the quantity is also random, useless. Showing 0.000000 does not |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 44 | * deprive us from any useful info. |
| 45 | * |
| 46 | * SHOW_HWCLOCK_DIFF code in this file shows the difference between system |
| 47 | * and hw clock. It is useful, but not compatible with standard hwclock. |
| 48 | * Thus disabled. |
| 49 | */ |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 50 | #define SHOW_HWCLOCK_DIFF 0 |
| 51 | |
| 52 | |
| 53 | #if !SHOW_HWCLOCK_DIFF |
| 54 | # define read_rtc(pp_rtcname, sys_tv, utc) read_rtc(pp_rtcname, utc) |
| 55 | #endif |
| 56 | static time_t read_rtc(const char **pp_rtcname, struct timeval *sys_tv, int utc) |
Denis Vlasenko | 9225854 | 2006-11-01 10:25:35 +0000 | [diff] [blame] | 57 | { |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 58 | struct tm tm_time; |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 59 | int fd; |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 60 | |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 61 | fd = rtc_xopen(pp_rtcname, O_RDONLY); |
Denys Vlasenko | 5e3b140 | 2010-01-06 22:43:39 +0100 | [diff] [blame] | 62 | |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 63 | rtc_read_tm(&tm_time, fd); |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 64 | |
| 65 | #if SHOW_HWCLOCK_DIFF |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 66 | { |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 67 | int before = tm_time.tm_sec; |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 68 | while (1) { |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 69 | rtc_read_tm(&tm_time, fd); |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 70 | gettimeofday(sys_tv, NULL); |
Denys Vlasenko | d778e6c | 2012-04-17 19:25:13 +0200 | [diff] [blame] | 71 | if (before != (int)tm_time.tm_sec) |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 72 | break; |
| 73 | } |
Denys Vlasenko | 5e3b140 | 2010-01-06 22:43:39 +0100 | [diff] [blame] | 74 | } |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 75 | #endif |
Denys Vlasenko | 5e3b140 | 2010-01-06 22:43:39 +0100 | [diff] [blame] | 76 | |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 77 | if (ENABLE_FEATURE_CLEAN_UP) |
| 78 | close(fd); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 79 | |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 80 | return rtc_tm2time(&tm_time, utc); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 83 | static void show_clock(const char **pp_rtcname, int utc) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 84 | { |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 85 | #if SHOW_HWCLOCK_DIFF |
| 86 | struct timeval sys_tv; |
| 87 | #endif |
Denys Vlasenko | 319b8bb | 2011-07-08 06:40:25 +0200 | [diff] [blame] | 88 | time_t t = read_rtc(pp_rtcname, &sys_tv, utc); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 89 | |
Denys Vlasenko | 319b8bb | 2011-07-08 06:40:25 +0200 | [diff] [blame] | 90 | #if ENABLE_LOCALE_SUPPORT |
| 91 | /* Standard hwclock uses locale-specific output format */ |
| 92 | char cp[64]; |
| 93 | struct tm *ptm = localtime(&t); |
| 94 | strftime(cp, sizeof(cp), "%c", ptm); |
| 95 | #else |
| 96 | char *cp = ctime(&t); |
Ron Yorston | 8ec1ff3 | 2015-03-12 20:18:51 +0100 | [diff] [blame] | 97 | chomp(cp); |
Denys Vlasenko | 319b8bb | 2011-07-08 06:40:25 +0200 | [diff] [blame] | 98 | #endif |
| 99 | |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 100 | #if !SHOW_HWCLOCK_DIFF |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 101 | printf("%s 0.000000 seconds\n", cp); |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 102 | #else |
| 103 | { |
| 104 | long diff = sys_tv.tv_sec - t; |
| 105 | if (diff < 0 /*&& tv.tv_usec != 0*/) { |
Denys Vlasenko | 319b8bb | 2011-07-08 06:40:25 +0200 | [diff] [blame] | 106 | /* Why we need diff++? */ |
| 107 | /* diff >= 0 is ok: | diff < 0, can't just use tv.tv_usec: */ |
| 108 | /* 45.520820 | 43.520820 */ |
| 109 | /* - 44.000000 | - 45.000000 */ |
| 110 | /* = 1.520820 | = -1.479180, not -2.520820! */ |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 111 | diff++; |
Denys Vlasenko | 319b8bb | 2011-07-08 06:40:25 +0200 | [diff] [blame] | 112 | /* Should be 1000000 - tv.tv_usec, but then we must check tv.tv_usec != 0 */ |
Denys Vlasenko | 0c58cc7 | 2010-01-07 10:36:41 +0100 | [diff] [blame] | 113 | sys_tv.tv_usec = 999999 - sys_tv.tv_usec; |
| 114 | } |
| 115 | printf("%s %ld.%06lu seconds\n", cp, diff, (unsigned long)sys_tv.tv_usec); |
Denys Vlasenko | 5e3b140 | 2010-01-06 22:43:39 +0100 | [diff] [blame] | 116 | } |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 117 | #endif |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 120 | static void to_sys_clock(const char **pp_rtcname, int utc) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 121 | { |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 122 | struct timeval tv; |
Denys Vlasenko | 043b1e5 | 2009-09-06 12:47:55 +0200 | [diff] [blame] | 123 | struct timezone tz; |
| 124 | |
Denys Vlasenko | 589051b | 2014-02-25 17:52:10 +0100 | [diff] [blame] | 125 | tz.tz_minuteswest = timezone/60; |
| 126 | /* ^^^ used to also subtract 60*daylight, but it's wrong: |
| 127 | * daylight!=0 means "this timezone has some DST |
| 128 | * during the year", not "DST is in effect now". |
| 129 | */ |
Denys Vlasenko | 043b1e5 | 2009-09-06 12:47:55 +0200 | [diff] [blame] | 130 | tz.tz_dsttime = 0; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 131 | |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 132 | tv.tv_sec = read_rtc(pp_rtcname, NULL, utc); |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 133 | tv.tv_usec = 0; |
Denis Vlasenko | 9225854 | 2006-11-01 10:25:35 +0000 | [diff] [blame] | 134 | if (settimeofday(&tv, &tz)) |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 135 | bb_perror_msg_and_die("settimeofday"); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 138 | static void from_sys_clock(const char **pp_rtcname, int utc) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 139 | { |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 140 | #if 1 |
| 141 | struct timeval tv; |
| 142 | struct tm tm_time; |
| 143 | int rtc; |
| 144 | |
| 145 | rtc = rtc_xopen(pp_rtcname, O_WRONLY); |
| 146 | gettimeofday(&tv, NULL); |
| 147 | /* Prepare tm_time */ |
| 148 | if (sizeof(time_t) == sizeof(tv.tv_sec)) { |
| 149 | if (utc) |
| 150 | gmtime_r((time_t*)&tv.tv_sec, &tm_time); |
| 151 | else |
| 152 | localtime_r((time_t*)&tv.tv_sec, &tm_time); |
| 153 | } else { |
| 154 | time_t t = tv.tv_sec; |
| 155 | if (utc) |
| 156 | gmtime_r(&t, &tm_time); |
| 157 | else |
| 158 | localtime_r(&t, &tm_time); |
| 159 | } |
| 160 | #else |
| 161 | /* Bloated code which tries to set hw clock with better precision. |
| 162 | * On x86, even though code does set hw clock within <1ms of exact |
| 163 | * whole seconds, apparently hw clock (at least on some machines) |
| 164 | * doesn't reset internal fractional seconds to 0, |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 165 | * making all this a pointless exercise. |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 166 | */ |
| 167 | /* If we see that we are N usec away from whole second, |
| 168 | * we'll sleep for N-ADJ usecs. ADJ corrects for the fact |
| 169 | * that CPU is not infinitely fast. |
| 170 | * On infinitely fast CPU, next wakeup would be |
| 171 | * on (exactly_next_whole_second - ADJ). On real CPUs, |
| 172 | * this difference between current time and whole second |
| 173 | * is less than ADJ (assuming system isn't heavily loaded). |
| 174 | */ |
| 175 | /* Small value of 256us gives very precise sync for 2+ GHz CPUs. |
| 176 | * Slower CPUs will fail to sync and will go to bigger |
| 177 | * ADJ values. qemu-emulated armv4tl with ~100 MHz |
| 178 | * performance ends up using ADJ ~= 4*1024 and it takes |
| 179 | * 2+ secs (2 tries with successively larger ADJ) |
| 180 | * to sync. Even straced one on the same qemu (very slow) |
| 181 | * takes only 4 tries. |
| 182 | */ |
| 183 | #define TWEAK_USEC 256 |
| 184 | unsigned adj = TWEAK_USEC; |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 185 | struct tm tm_time; |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 186 | struct timeval tv; |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 187 | int rtc = rtc_xopen(pp_rtcname, O_WRONLY); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 188 | |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 189 | /* Try to catch the moment when whole second is close */ |
| 190 | while (1) { |
| 191 | unsigned rem_usec; |
| 192 | time_t t; |
| 193 | |
| 194 | gettimeofday(&tv, NULL); |
| 195 | |
Denys Vlasenko | 5e3b140 | 2010-01-06 22:43:39 +0100 | [diff] [blame] | 196 | t = tv.tv_sec; |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 197 | rem_usec = 1000000 - tv.tv_usec; |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 198 | if (rem_usec < adj) { |
| 199 | /* Close enough */ |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 200 | small_rem: |
Denys Vlasenko | 5e3b140 | 2010-01-06 22:43:39 +0100 | [diff] [blame] | 201 | t++; |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 202 | } |
| 203 | |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 204 | /* Prepare tm_time from t */ |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 205 | if (utc) |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 206 | gmtime_r(&t, &tm_time); /* may read /etc/xxx (it takes time) */ |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 207 | else |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 208 | localtime_r(&t, &tm_time); /* same */ |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 209 | |
| 210 | if (adj >= 32*1024) { |
| 211 | break; /* 32 ms diff and still no luck?? give up trying to sync */ |
| 212 | } |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 213 | |
| 214 | /* gmtime/localtime took some time, re-get cur time */ |
| 215 | gettimeofday(&tv, NULL); |
| 216 | |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 217 | if (tv.tv_sec < t /* we are still in old second */ |
| 218 | || (tv.tv_sec == t && tv.tv_usec < adj) /* not too far into next second */ |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 219 | ) { |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 220 | break; /* good, we are in sync! */ |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 221 | } |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 222 | |
| 223 | rem_usec = 1000000 - tv.tv_usec; |
| 224 | if (rem_usec < adj) { |
| 225 | t = tv.tv_sec; |
| 226 | goto small_rem; /* already close to next sec, don't sleep */ |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | /* Try to sync up by sleeping */ |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 230 | usleep(rem_usec - adj); |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 231 | |
| 232 | /* Jump to 1ms diff, then increase fast (x2): EVERY loop |
| 233 | * takes ~1 sec, people won't like slowly converging code here! |
| 234 | */ |
| 235 | //bb_error_msg("adj:%d tv.tv_usec:%d", adj, (int)tv.tv_usec); |
| 236 | if (adj < 512) |
| 237 | adj = 512; |
| 238 | /* ... and if last "overshoot" does not look insanely big, |
| 239 | * just use it as adj increment. This makes convergence faster. |
| 240 | */ |
| 241 | if (tv.tv_usec < adj * 8) { |
| 242 | adj += tv.tv_usec; |
| 243 | continue; |
| 244 | } |
| 245 | adj *= 2; |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 246 | } |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 247 | /* Debug aid to find "optimal" TWEAK_USEC with nearly exact sync. |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 248 | * Look for a value which makes tv_usec close to 999999 or 0. |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 249 | * For 2.20GHz Intel Core 2: optimal TWEAK_USEC ~= 200 |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 250 | */ |
Denys Vlasenko | 60f659f | 2010-04-14 09:19:20 -0700 | [diff] [blame] | 251 | //bb_error_msg("tv.tv_usec:%d", (int)tv.tv_usec); |
| 252 | #endif |
| 253 | |
| 254 | tm_time.tm_isdst = 0; |
| 255 | xioctl(rtc, RTC_SET_TIME, &tm_time); |
Denys Vlasenko | 695fa51 | 2010-01-06 18:16:39 +0100 | [diff] [blame] | 256 | |
| 257 | if (ENABLE_FEATURE_CLEAN_UP) |
| 258 | close(rtc); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 261 | /* |
| 262 | * At system boot, kernel may set system time from RTC, |
| 263 | * but it knows nothing about timezones. If RTC is in local time, |
| 264 | * then system time is wrong - it is offset by timezone. |
| 265 | * This option corrects system time if RTC is in local time, |
| 266 | * and (always) sets in-kernel timezone. |
| 267 | * |
| 268 | * This is an alternate option to --hctosys that does not read the |
| 269 | * hardware clock. |
| 270 | */ |
| 271 | static void set_system_clock_timezone(int utc) |
| 272 | { |
| 273 | struct timeval tv; |
| 274 | struct tm *broken; |
| 275 | struct timezone tz; |
| 276 | |
| 277 | gettimeofday(&tv, NULL); |
| 278 | broken = localtime(&tv.tv_sec); |
| 279 | tz.tz_minuteswest = timezone / 60; |
Denys Vlasenko | 589051b | 2014-02-25 17:52:10 +0100 | [diff] [blame] | 280 | if (broken->tm_isdst > 0) |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 281 | tz.tz_minuteswest -= 60; |
| 282 | tz.tz_dsttime = 0; |
| 283 | gettimeofday(&tv, NULL); |
| 284 | if (!utc) |
| 285 | tv.tv_sec += tz.tz_minuteswest * 60; |
| 286 | if (settimeofday(&tv, &tz)) |
| 287 | bb_perror_msg_and_die("settimeofday"); |
| 288 | } |
| 289 | |
| 290 | //usage:#define hwclock_trivial_usage |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 291 | //usage: IF_LONG_OPTS( |
| 292 | //usage: "[-r|--show] [-s|--hctosys] [-w|--systohc] [--systz]" |
| 293 | //usage: " [--localtime] [-u|--utc]" |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 294 | //usage: " [-f|--rtc FILE]" |
| 295 | //usage: ) |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 296 | //usage: IF_NOT_LONG_OPTS( |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 297 | //usage: "[-r] [-s] [-w] [-t] [-l] [-u] [-f FILE]" |
| 298 | //usage: ) |
| 299 | //usage:#define hwclock_full_usage "\n\n" |
| 300 | //usage: "Query and set hardware clock (RTC)\n" |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 301 | //usage: "\n -r Show hardware clock time" |
| 302 | //usage: "\n -s Set system time from hardware clock" |
| 303 | //usage: "\n -w Set hardware clock from system time" |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 304 | //usage: IF_LONG_OPTS( |
| 305 | //usage: "\n --systz Set in-kernel timezone, correct system time" |
| 306 | //usage: ) |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 307 | //usage: "\n if hardware clock is in local time" |
Denys Vlasenko | 46465ec | 2011-07-04 04:34:57 +0200 | [diff] [blame] | 308 | //usage: "\n -u Assume hardware clock is kept in UTC" |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 309 | //usage: IF_LONG_OPTS( |
| 310 | //usage: "\n --localtime Assume hardware clock is kept in local time" |
| 311 | //usage: ) |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 312 | //usage: "\n -f FILE Use specified device (e.g. /dev/rtc2)" |
| 313 | |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 314 | //TODO: get rid of incompatible -t and -l aliases to --systz and --localtime |
| 315 | |
Denis Vlasenko | 9225854 | 2006-11-01 10:25:35 +0000 | [diff] [blame] | 316 | #define HWCLOCK_OPT_LOCALTIME 0x01 |
| 317 | #define HWCLOCK_OPT_UTC 0x02 |
| 318 | #define HWCLOCK_OPT_SHOW 0x04 |
| 319 | #define HWCLOCK_OPT_HCTOSYS 0x08 |
| 320 | #define HWCLOCK_OPT_SYSTOHC 0x10 |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 321 | #define HWCLOCK_OPT_SYSTZ 0x20 |
| 322 | #define HWCLOCK_OPT_RTCFILE 0x40 |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 323 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 324 | int hwclock_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 325 | int hwclock_main(int argc UNUSED_PARAM, char **argv) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 326 | { |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 327 | const char *rtcname = NULL; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 328 | unsigned opt; |
Robert Griebl | 6bb8087 | 2004-03-22 21:27:39 +0000 | [diff] [blame] | 329 | int utc; |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 330 | |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 331 | #if ENABLE_LONG_OPTS |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 332 | static const char hwclock_longopts[] ALIGN1 = |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 333 | "localtime\0" No_argument "l" /* short opt is non-standard */ |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 334 | "utc\0" No_argument "u" |
| 335 | "show\0" No_argument "r" |
| 336 | "hctosys\0" No_argument "s" |
| 337 | "systohc\0" No_argument "w" |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 338 | "systz\0" No_argument "t" /* short opt is non-standard */ |
| 339 | "rtc\0" Required_argument "f" |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 340 | ; |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 341 | #endif |
Denys Vlasenko | 589051b | 2014-02-25 17:52:10 +0100 | [diff] [blame] | 342 | |
| 343 | /* Initialize "timezone" (libc global variable) */ |
| 344 | tzset(); |
| 345 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 346 | opt = getopt32long(argv, |
| 347 | "^lurswtf:" "\0" "r--wst:w--rst:s--wrt:t--rsw:l--u:u--l", |
| 348 | hwclock_longopts, |
| 349 | &rtcname |
| 350 | ); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 351 | |
Robert Griebl | 6bb8087 | 2004-03-22 21:27:39 +0000 | [diff] [blame] | 352 | /* If -u or -l wasn't given check if we are using utc */ |
Mike Frysinger | b31566e | 2005-04-16 04:48:48 +0000 | [diff] [blame] | 353 | if (opt & (HWCLOCK_OPT_UTC | HWCLOCK_OPT_LOCALTIME)) |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 354 | utc = (opt & HWCLOCK_OPT_UTC); |
Robert Griebl | 6bb8087 | 2004-03-22 21:27:39 +0000 | [diff] [blame] | 355 | else |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 356 | utc = rtc_adjtime_is_utc(); |
Mike Frysinger | b31566e | 2005-04-16 04:48:48 +0000 | [diff] [blame] | 357 | |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 358 | if (opt & HWCLOCK_OPT_HCTOSYS) |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 359 | to_sys_clock(&rtcname, utc); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 360 | else if (opt & HWCLOCK_OPT_SYSTOHC) |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 361 | from_sys_clock(&rtcname, utc); |
Davide Cavalca | 658a437 | 2011-01-22 18:55:32 +0100 | [diff] [blame] | 362 | else if (opt & HWCLOCK_OPT_SYSTZ) |
| 363 | set_system_clock_timezone(utc); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 364 | else |
| 365 | /* default HWCLOCK_OPT_SHOW */ |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 366 | show_clock(&rtcname, utc); |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 367 | |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 368 | return 0; |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 369 | } |