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