blob: a8b0bdf935a77feca113e23ef7d11a6f97a2032e [file] [log] [blame]
Robert Griebl1cd04452002-07-21 16:50:49 +00001/* vi: set sw=4 ts=4: */
2/*
Robert Griebl6859d762002-08-05 02:57:12 +00003 * Mini hwclock implementation for busybox
4 *
Robert Griebl1cd04452002-07-21 16:50:49 +00005 * Copyright (C) 2002 Robert Griebl <griebl@gmx.de>
6 *
Bernhard Reutner-Fischer5cf905a2006-03-31 22:36:15 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Robert Griebl6859d762002-08-05 02:57:12 +00008*/
Robert Griebl1cd04452002-07-21 16:50:49 +00009
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000010#include "libbb.h"
Denys Vlasenko043b1e52009-09-06 12:47:55 +020011/* After libbb.h, since it needs sys/types.h on some systems */
12#include <sys/utsname.h>
Mike Frysinger6b160e42008-02-15 02:27:19 +000013#include "rtc_.h"
Eric Andersen8882ea52002-12-11 03:41:28 +000014
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000015#if ENABLE_FEATURE_HWCLOCK_LONG_OPTIONS
Robert Griebl1cd04452002-07-21 16:50:49 +000016# ifndef _GNU_SOURCE
17# define _GNU_SOURCE
18# endif
19#endif
20
Denis Vlasenko673d4bb2007-03-07 23:02:50 +000021
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010022/* diff code is disabled: it's not sys/hw clock diff, it's some useless
23 * "time between hwclock was started and we saw CMOS tick" quantity.
24 * It's useless since hwclock is started at a random moment,
25 * thus the quantity is also random, useless. Showing 0.000000 does not
Denys Vlasenko0c58cc72010-01-07 10:36:41 +010026 * deprive us from any useful info.
27 *
28 * SHOW_HWCLOCK_DIFF code in this file shows the difference between system
29 * and hw clock. It is useful, but not compatible with standard hwclock.
30 * Thus disabled.
31 */
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010032#define SHOW_HWCLOCK_DIFF 0
33
34
35#if !SHOW_HWCLOCK_DIFF
36# define read_rtc(pp_rtcname, sys_tv, utc) read_rtc(pp_rtcname, utc)
37#endif
38static time_t read_rtc(const char **pp_rtcname, struct timeval *sys_tv, int utc)
Denis Vlasenko92258542006-11-01 10:25:35 +000039{
Denys Vlasenko5e3b1402010-01-06 22:43:39 +010040 struct tm tm;
Mike Frysinger6b160e42008-02-15 02:27:19 +000041 int fd;
Robert Griebl1cd04452002-07-21 16:50:49 +000042
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010043 fd = rtc_xopen(pp_rtcname, O_RDONLY);
Denys Vlasenko5e3b1402010-01-06 22:43:39 +010044
45 rtc_read_tm(&tm, fd);
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010046
47#if SHOW_HWCLOCK_DIFF
Denys Vlasenko0c58cc72010-01-07 10:36:41 +010048 {
49 int before = tm.tm_sec;
50 while (1) {
51 rtc_read_tm(&tm, fd);
52 gettimeofday(sys_tv, NULL);
53 if (before != tm.tm_sec)
54 break;
55 }
Denys Vlasenko5e3b1402010-01-06 22:43:39 +010056 }
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010057#endif
Denys Vlasenko5e3b1402010-01-06 22:43:39 +010058
Denys Vlasenko695fa512010-01-06 18:16:39 +010059 if (ENABLE_FEATURE_CLEAN_UP)
60 close(fd);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000061
Denys Vlasenko5e3b1402010-01-06 22:43:39 +010062 return rtc_tm2time(&tm, utc);
Robert Griebl1cd04452002-07-21 16:50:49 +000063}
64
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010065static void show_clock(const char **pp_rtcname, int utc)
Robert Griebl1cd04452002-07-21 16:50:49 +000066{
Denys Vlasenko0c58cc72010-01-07 10:36:41 +010067#if SHOW_HWCLOCK_DIFF
68 struct timeval sys_tv;
69#endif
Robert Griebl1cd04452002-07-21 16:50:49 +000070 time_t t;
Denis Vlasenko459be352007-06-17 19:09:05 +000071 char *cp;
Robert Griebl1cd04452002-07-21 16:50:49 +000072
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010073 t = read_rtc(pp_rtcname, &sys_tv, utc);
Denis Vlasenko459be352007-06-17 19:09:05 +000074 cp = ctime(&t);
Denys Vlasenko695fa512010-01-06 18:16:39 +010075 strchrnul(cp, '\n')[0] = '\0';
Denys Vlasenko0c58cc72010-01-07 10:36:41 +010076#if !SHOW_HWCLOCK_DIFF
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010077 printf("%s 0.000000 seconds\n", cp);
Denys Vlasenko0c58cc72010-01-07 10:36:41 +010078#else
79 {
80 long diff = sys_tv.tv_sec - t;
81 if (diff < 0 /*&& tv.tv_usec != 0*/) {
82 /* Why? */
83 /* diff >= 0 is ok: diff < 0, can't just use tv.tv_usec: */
84 /* 45.520820 43.520820 */
85 /* - 44.000000 - 45.000000 */
86 /* = 0.520820 = -1.479180, not -2.520820! */
87 diff++;
88 /* should be 1000000 - tv.tv_usec, but then we must check tv.tv_usec != 0 */
89 sys_tv.tv_usec = 999999 - sys_tv.tv_usec;
90 }
91 printf("%s %ld.%06lu seconds\n", cp, diff, (unsigned long)sys_tv.tv_usec);
Denys Vlasenko5e3b1402010-01-06 22:43:39 +010092 }
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010093#endif
Robert Griebl1cd04452002-07-21 16:50:49 +000094}
95
Denys Vlasenko6959f6b2010-01-07 08:31:46 +010096static void to_sys_clock(const char **pp_rtcname, int utc)
Robert Griebl1cd04452002-07-21 16:50:49 +000097{
Denis Vlasenko459be352007-06-17 19:09:05 +000098 struct timeval tv;
Denys Vlasenko043b1e52009-09-06 12:47:55 +020099 struct timezone tz;
100
101 tz.tz_minuteswest = timezone/60 - 60*daylight;
102 tz.tz_dsttime = 0;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000103
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100104 tv.tv_sec = read_rtc(pp_rtcname, NULL, utc);
Denis Vlasenko459be352007-06-17 19:09:05 +0000105 tv.tv_usec = 0;
Denis Vlasenko92258542006-11-01 10:25:35 +0000106 if (settimeofday(&tv, &tz))
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100107 bb_perror_msg_and_die("settimeofday");
Robert Griebl1cd04452002-07-21 16:50:49 +0000108}
109
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100110static void from_sys_clock(const char **pp_rtcname, int utc)
Robert Griebl1cd04452002-07-21 16:50:49 +0000111{
Denys Vlasenko695fa512010-01-06 18:16:39 +0100112#define TWEAK_USEC 200
113 struct tm tm;
Denis Vlasenko459be352007-06-17 19:09:05 +0000114 struct timeval tv;
Denys Vlasenko695fa512010-01-06 18:16:39 +0100115 unsigned adj = TWEAK_USEC;
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100116 int rtc = rtc_xopen(pp_rtcname, O_WRONLY);
Robert Griebl1cd04452002-07-21 16:50:49 +0000117
Denys Vlasenko695fa512010-01-06 18:16:39 +0100118 /* Try to catch the moment when whole second is close */
119 while (1) {
120 unsigned rem_usec;
121 time_t t;
122
123 gettimeofday(&tv, NULL);
124
Denys Vlasenko5e3b1402010-01-06 22:43:39 +0100125 t = tv.tv_sec;
Denys Vlasenko695fa512010-01-06 18:16:39 +0100126 rem_usec = 1000000 - tv.tv_usec;
127 if (rem_usec < 1024) {
128 /* Less than 1ms to next second. Good enough */
129 small_rem:
Denys Vlasenko5e3b1402010-01-06 22:43:39 +0100130 t++;
Denys Vlasenko695fa512010-01-06 18:16:39 +0100131 }
132
133 /* Prepare tm */
Denys Vlasenko695fa512010-01-06 18:16:39 +0100134 if (utc)
135 gmtime_r(&t, &tm); /* may read /etc/xxx (it takes time) */
136 else
137 localtime_r(&t, &tm); /* same */
138 tm.tm_isdst = 0;
139
140 /* gmtime/localtime took some time, re-get cur time */
141 gettimeofday(&tv, NULL);
142
143 if (tv.tv_sec < t /* may happen if rem_usec was < 1024 */
144 || (tv.tv_sec == t && tv.tv_usec < 1024)
145 ) {
146 /* We are not too far into next second. Good. */
147 break;
148 }
149 adj += 32; /* 2^(10-5) = 2^5 = 32 iterations max */
150 if (adj >= 1024) {
151 /* Give up trying to sync */
152 break;
153 }
154
155 /* Try to sync up by sleeping */
156 rem_usec = 1000000 - tv.tv_usec;
157 if (rem_usec < 1024) {
158 goto small_rem; /* already close, don't sleep */
159 }
160 /* Need to sleep.
161 * Note that small adj on slow processors can make us
162 * to always overshoot tv.tv_usec < 1024 check on next
163 * iteration. That's why adj is increased on each iteration.
164 * This also allows it to be reused as a loop limiter.
165 */
166 usleep(rem_usec - adj);
167 }
168
169 xioctl(rtc, RTC_SET_TIME, &tm);
170
171 /* Debug aid to find "good" TWEAK_USEC.
172 * Look for a value which makes tv_usec close to 999999 or 0.
173 * for 2.20GHz Intel Core 2: TWEAK_USEC ~= 200
174 */
175 //bb_error_msg("tv.tv_usec:%d adj:%d", (int)tv.tv_usec, adj);
176
177 if (ENABLE_FEATURE_CLEAN_UP)
178 close(rtc);
Robert Griebl1cd04452002-07-21 16:50:49 +0000179}
180
Denis Vlasenko92258542006-11-01 10:25:35 +0000181#define HWCLOCK_OPT_LOCALTIME 0x01
182#define HWCLOCK_OPT_UTC 0x02
183#define HWCLOCK_OPT_SHOW 0x04
184#define HWCLOCK_OPT_HCTOSYS 0x08
185#define HWCLOCK_OPT_SYSTOHC 0x10
Denis Vlasenko673d4bb2007-03-07 23:02:50 +0000186#define HWCLOCK_OPT_RTCFILE 0x20
Glenn L McGrath689e4b92004-02-22 09:11:33 +0000187
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000188int hwclock_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000189int hwclock_main(int argc UNUSED_PARAM, char **argv)
Robert Griebl1cd04452002-07-21 16:50:49 +0000190{
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100191 const char *rtcname = NULL;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000192 unsigned opt;
Robert Griebl6bb80872004-03-22 21:27:39 +0000193 int utc;
Robert Griebl1cd04452002-07-21 16:50:49 +0000194
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000195#if ENABLE_FEATURE_HWCLOCK_LONG_OPTIONS
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000196 static const char hwclock_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000197 "localtime\0" No_argument "l"
198 "utc\0" No_argument "u"
199 "show\0" No_argument "r"
200 "hctosys\0" No_argument "s"
201 "systohc\0" No_argument "w"
202 "file\0" Required_argument "f"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000203 ;
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000204 applet_long_options = hwclock_longopts;
Robert Griebl1cd04452002-07-21 16:50:49 +0000205#endif
Denis Vlasenko09196572007-07-21 13:27:44 +0000206 opt_complementary = "r--ws:w--rs:s--wr:l--u:u--l";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000207 opt = getopt32(argv, "lurswf:", &rtcname);
Robert Griebl1cd04452002-07-21 16:50:49 +0000208
Robert Griebl6bb80872004-03-22 21:27:39 +0000209 /* If -u or -l wasn't given check if we are using utc */
Mike Frysingerb31566e2005-04-16 04:48:48 +0000210 if (opt & (HWCLOCK_OPT_UTC | HWCLOCK_OPT_LOCALTIME))
Mike Frysinger6b160e42008-02-15 02:27:19 +0000211 utc = (opt & HWCLOCK_OPT_UTC);
Robert Griebl6bb80872004-03-22 21:27:39 +0000212 else
Mike Frysinger6b160e42008-02-15 02:27:19 +0000213 utc = rtc_adjtime_is_utc();
Mike Frysingerb31566e2005-04-16 04:48:48 +0000214
Mike Frysinger6b160e42008-02-15 02:27:19 +0000215 if (opt & HWCLOCK_OPT_HCTOSYS)
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100216 to_sys_clock(&rtcname, utc);
Mike Frysinger6b160e42008-02-15 02:27:19 +0000217 else if (opt & HWCLOCK_OPT_SYSTOHC)
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100218 from_sys_clock(&rtcname, utc);
Mike Frysinger6b160e42008-02-15 02:27:19 +0000219 else
220 /* default HWCLOCK_OPT_SHOW */
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100221 show_clock(&rtcname, utc);
Mike Frysinger6b160e42008-02-15 02:27:19 +0000222
Denis Vlasenko459be352007-06-17 19:09:05 +0000223 return 0;
Robert Griebl1cd04452002-07-21 16:50:49 +0000224}