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