2002-07-21 22:20:49 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2002-08-05 08:27:12 +05:30
|
|
|
* Mini hwclock implementation for busybox
|
|
|
|
*
|
2002-07-21 22:20:49 +05:30
|
|
|
* Copyright (C) 2002 Robert Griebl <griebl@gmx.de>
|
|
|
|
*
|
2006-04-01 04:06:15 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-08-05 08:27:12 +05:30
|
|
|
*/
|
2002-07-21 22:20:49 +05:30
|
|
|
|
|
|
|
#include <sys/utsname.h>
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2008-02-15 07:57:19 +05:30
|
|
|
#include "rtc_.h"
|
2002-12-11 09:11:28 +05:30
|
|
|
|
2006-05-27 01:49:22 +05:30
|
|
|
#if ENABLE_FEATURE_HWCLOCK_LONG_OPTIONS
|
2002-07-21 22:20:49 +05:30
|
|
|
# ifndef _GNU_SOURCE
|
|
|
|
# define _GNU_SOURCE
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2007-03-08 04:32:50 +05:30
|
|
|
static const char *rtcname;
|
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
static time_t read_rtc(int utc)
|
|
|
|
{
|
2008-02-15 07:57:19 +05:30
|
|
|
time_t ret;
|
|
|
|
int fd;
|
2002-07-21 22:20:49 +05:30
|
|
|
|
2008-02-15 12:49:03 +05:30
|
|
|
fd = rtc_xopen(&rtcname, O_RDONLY);
|
2008-02-15 07:57:19 +05:30
|
|
|
ret = rtc_read_time(fd, utc);
|
|
|
|
close(fd);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2008-02-15 07:57:19 +05:30
|
|
|
return ret;
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|
|
|
|
|
2004-02-22 14:41:33 +05:30
|
|
|
static void write_rtc(time_t t, int utc)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
|
|
|
struct tm tm;
|
2008-02-15 12:49:03 +05:30
|
|
|
int rtc = rtc_xopen(&rtcname, O_WRONLY);
|
2002-07-21 22:20:49 +05:30
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
tm = *(utc ? gmtime(&t) : localtime(&t));
|
2006-04-01 04:06:15 +05:30
|
|
|
tm.tm_isdst = 0;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-07-15 03:37:14 +05:30
|
|
|
xioctl(rtc, RTC_SET_TIME, &tm);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
close(rtc);
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
static void show_clock(int utc)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
2007-06-18 00:39:05 +05:30
|
|
|
//struct tm *ptm;
|
2002-07-21 22:20:49 +05:30
|
|
|
time_t t;
|
2007-06-18 00:39:05 +05:30
|
|
|
char *cp;
|
2002-07-21 22:20:49 +05:30
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
t = read_rtc(utc);
|
2007-06-18 00:39:05 +05:30
|
|
|
//ptm = localtime(&t); /* Sets 'tzname[]' */
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
cp = ctime(&t);
|
|
|
|
if (cp[0])
|
|
|
|
cp[strlen(cp) - 1] = '\0';
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
//printf("%s %.6f seconds %s\n", cp, 0.0, utc ? "" : (ptm->tm_isdst ? tzname[1] : tzname[0]));
|
|
|
|
printf("%s 0.000000 seconds\n", cp);
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
static void to_sys_clock(int utc)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
2007-06-18 00:39:05 +05:30
|
|
|
struct timeval tv;
|
2002-07-21 22:20:49 +05:30
|
|
|
const struct timezone tz = { timezone/60 - 60*daylight, 0 };
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
tv.tv_sec = read_rtc(utc);
|
2007-06-18 00:39:05 +05:30
|
|
|
tv.tv_usec = 0;
|
2006-11-01 15:55:35 +05:30
|
|
|
if (settimeofday(&tv, &tz))
|
|
|
|
bb_perror_msg_and_die("settimeofday() failed");
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
static void from_sys_clock(int utc)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
2007-06-18 00:39:05 +05:30
|
|
|
struct timeval tv;
|
2002-07-21 22:20:49 +05:30
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
//if (gettimeofday(&tv, NULL))
|
|
|
|
// bb_perror_msg_and_die("gettimeofday() failed");
|
2006-11-01 15:55:35 +05:30
|
|
|
write_rtc(tv.tv_sec, utc);
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
#define HWCLOCK_OPT_LOCALTIME 0x01
|
|
|
|
#define HWCLOCK_OPT_UTC 0x02
|
|
|
|
#define HWCLOCK_OPT_SHOW 0x04
|
|
|
|
#define HWCLOCK_OPT_HCTOSYS 0x08
|
|
|
|
#define HWCLOCK_OPT_SYSTOHC 0x10
|
2007-03-08 04:32:50 +05:30
|
|
|
#define HWCLOCK_OPT_RTCFILE 0x20
|
2004-02-22 14:41:33 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int hwclock_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int hwclock_main(int argc UNUSED_PARAM, char **argv)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
2006-10-04 02:30:06 +05:30
|
|
|
unsigned opt;
|
2004-03-23 02:57:39 +05:30
|
|
|
int utc;
|
2002-07-21 22:20:49 +05:30
|
|
|
|
2006-05-27 01:49:22 +05:30
|
|
|
#if ENABLE_FEATURE_HWCLOCK_LONG_OPTIONS
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char hwclock_longopts[] ALIGN1 =
|
2007-07-23 22:44:14 +05:30
|
|
|
"localtime\0" No_argument "l"
|
|
|
|
"utc\0" No_argument "u"
|
|
|
|
"show\0" No_argument "r"
|
|
|
|
"hctosys\0" No_argument "s"
|
|
|
|
"systohc\0" No_argument "w"
|
|
|
|
"file\0" Required_argument "f"
|
2007-07-24 21:24:42 +05:30
|
|
|
;
|
2007-07-23 22:44:14 +05:30
|
|
|
applet_long_options = hwclock_longopts;
|
2002-07-21 22:20:49 +05:30
|
|
|
#endif
|
2007-07-21 18:57:44 +05:30
|
|
|
opt_complementary = "r--ws:w--rs:s--wr:l--u:u--l";
|
2007-08-18 21:02:12 +05:30
|
|
|
opt = getopt32(argv, "lurswf:", &rtcname);
|
2002-07-21 22:20:49 +05:30
|
|
|
|
2004-03-23 02:57:39 +05:30
|
|
|
/* If -u or -l wasn't given check if we are using utc */
|
2005-04-16 10:18:48 +05:30
|
|
|
if (opt & (HWCLOCK_OPT_UTC | HWCLOCK_OPT_LOCALTIME))
|
2008-02-15 07:57:19 +05:30
|
|
|
utc = (opt & HWCLOCK_OPT_UTC);
|
2004-03-23 02:57:39 +05:30
|
|
|
else
|
2008-02-15 07:57:19 +05:30
|
|
|
utc = rtc_adjtime_is_utc();
|
2005-04-16 10:18:48 +05:30
|
|
|
|
2008-02-15 07:57:19 +05:30
|
|
|
if (opt & HWCLOCK_OPT_HCTOSYS)
|
2007-06-18 00:39:05 +05:30
|
|
|
to_sys_clock(utc);
|
2008-02-15 07:57:19 +05:30
|
|
|
else if (opt & HWCLOCK_OPT_SYSTOHC)
|
2007-06-18 00:39:05 +05:30
|
|
|
from_sys_clock(utc);
|
2008-02-15 07:57:19 +05:30
|
|
|
else
|
|
|
|
/* default HWCLOCK_OPT_SHOW */
|
|
|
|
show_clock(utc);
|
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
return 0;
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|