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>
|
|
|
|
*
|
2002-08-05 08:27:12 +05:30
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
2002-07-21 22:20:49 +05:30
|
|
|
|
|
|
|
|
2004-02-22 14:41:33 +05:30
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/time.h>
|
2002-07-21 22:20:49 +05:30
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
2004-02-22 14:41:33 +05:30
|
|
|
#include <getopt.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
2002-07-21 22:20:49 +05:30
|
|
|
#include <time.h>
|
2004-02-22 14:41:33 +05:30
|
|
|
#include <unistd.h>
|
2002-07-21 22:20:49 +05:30
|
|
|
#include "busybox.h"
|
|
|
|
|
2004-04-14 23:21:38 +05:30
|
|
|
/* Copied from linux/rtc.h to eliminate the kernel dependency */
|
2003-01-02 12:46:53 +05:30
|
|
|
struct linux_rtc_time {
|
|
|
|
int tm_sec;
|
|
|
|
int tm_min;
|
|
|
|
int tm_hour;
|
|
|
|
int tm_mday;
|
|
|
|
int tm_mon;
|
|
|
|
int tm_year;
|
|
|
|
int tm_wday;
|
|
|
|
int tm_yday;
|
|
|
|
int tm_isdst;
|
|
|
|
};
|
2005-04-16 10:18:48 +05:30
|
|
|
|
2003-01-02 12:46:53 +05:30
|
|
|
#define RTC_SET_TIME _IOW('p', 0x0a, struct linux_rtc_time) /* Set RTC time */
|
|
|
|
#define RTC_RD_TIME _IOR('p', 0x09, struct linux_rtc_time) /* Read RTC time */
|
2002-12-11 09:11:28 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
#ifdef CONFIG_FEATURE_HWCLOCK_LONGOPTIONS
|
|
|
|
# ifndef _GNU_SOURCE
|
|
|
|
# define _GNU_SOURCE
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2004-02-22 14:41:33 +05:30
|
|
|
static time_t read_rtc(int utc)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
|
|
|
int rtc;
|
|
|
|
struct tm tm;
|
|
|
|
char *oldtz = 0;
|
|
|
|
time_t t = 0;
|
|
|
|
|
|
|
|
if (( rtc = open ( "/dev/rtc", O_RDONLY )) < 0 ) {
|
|
|
|
if (( rtc = open ( "/dev/misc/rtc", O_RDONLY )) < 0 )
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ( "Could not access RTC" );
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|
|
|
|
memset ( &tm, 0, sizeof( struct tm ));
|
|
|
|
if ( ioctl ( rtc, RTC_RD_TIME, &tm ) < 0 )
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ( "Could not read time from RTC" );
|
2002-07-21 22:20:49 +05:30
|
|
|
tm. tm_isdst = -1; // not known
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
close ( rtc );
|
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
if ( utc ) {
|
2002-07-21 22:20:49 +05:30
|
|
|
oldtz = getenv ( "TZ" );
|
|
|
|
setenv ( "TZ", "UTC 0", 1 );
|
|
|
|
tzset ( );
|
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
t = mktime ( &tm );
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
if ( utc ) {
|
|
|
|
if ( oldtz )
|
|
|
|
setenv ( "TZ", oldtz, 1 );
|
|
|
|
else
|
|
|
|
unsetenv ( "TZ" );
|
|
|
|
tzset ( );
|
|
|
|
}
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
int rtc;
|
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
if (( rtc = open ( "/dev/rtc", O_WRONLY )) < 0 ) {
|
|
|
|
if (( rtc = open ( "/dev/misc/rtc", O_WRONLY )) < 0 )
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ( "Could not access RTC" );
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
tm = *( utc ? gmtime ( &t ) : localtime ( &t ));
|
|
|
|
tm. tm_isdst = 0;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
if ( ioctl ( rtc, RTC_SET_TIME, &tm ) < 0 )
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ( "Could not set the RTC time" );
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
close ( rtc );
|
|
|
|
}
|
|
|
|
|
2004-02-22 14:41:33 +05:30
|
|
|
static int show_clock(int utc)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
|
|
|
struct tm *ptm;
|
|
|
|
time_t t;
|
|
|
|
char buffer [64];
|
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
t = read_rtc ( utc );
|
2002-07-21 22:20:49 +05:30
|
|
|
ptm = localtime ( &t ); /* Sets 'tzname[]' */
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
safe_strncpy ( buffer, ctime ( &t ), sizeof( buffer ));
|
|
|
|
if ( buffer [0] )
|
2003-03-19 14:43:01 +05:30
|
|
|
buffer [bb_strlen ( buffer ) - 1] = 0;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
//printf ( "%s %.6f seconds %s\n", buffer, 0.0, utc ? "" : ( ptm-> tm_isdst ? tzname [1] : tzname [0] ));
|
|
|
|
printf ( "%s %.6f seconds\n", buffer, 0.0 );
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-02-22 14:41:33 +05:30
|
|
|
static int to_sys_clock(int utc)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
|
|
|
struct timeval tv = { 0, 0 };
|
|
|
|
const struct timezone tz = { timezone/60 - 60*daylight, 0 };
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
tv. tv_sec = read_rtc ( utc );
|
|
|
|
|
|
|
|
if ( settimeofday ( &tv, &tz ))
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ( "settimeofday() failed" );
|
2002-07-21 22:20:49 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-02-22 14:41:33 +05:30
|
|
|
static int from_sys_clock(int utc)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
|
|
|
struct timeval tv = { 0, 0 };
|
|
|
|
struct timezone tz = { 0, 0 };
|
|
|
|
|
|
|
|
if ( gettimeofday ( &tv, &tz ))
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ( "gettimeofday() failed" );
|
2002-07-21 22:20:49 +05:30
|
|
|
|
|
|
|
write_rtc ( tv. tv_sec, utc );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-28 08:51:21 +05:30
|
|
|
#ifdef CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS
|
|
|
|
# define ADJTIME_PATH "/var/lib/hwclock/adjtime"
|
|
|
|
#else
|
|
|
|
# define ADJTIME_PATH "/etc/adjtime"
|
|
|
|
#endif
|
2004-02-22 14:41:33 +05:30
|
|
|
static int check_utc(void)
|
2002-07-21 22:20:49 +05:30
|
|
|
{
|
|
|
|
int utc = 0;
|
2005-09-28 08:51:21 +05:30
|
|
|
FILE *f = fopen ( ADJTIME_PATH, "r" );
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
if ( f ) {
|
|
|
|
char buffer [128];
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
while ( fgets ( buffer, sizeof( buffer ), f )) {
|
2003-03-19 14:43:01 +05:30
|
|
|
int len = bb_strlen ( buffer );
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
while ( len && isspace ( buffer [len - 1] ))
|
|
|
|
len--;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
buffer [len] = 0;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
if ( strncmp ( buffer, "UTC", 3 ) == 0 ) {
|
|
|
|
utc = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose ( f );
|
|
|
|
}
|
|
|
|
return utc;
|
|
|
|
}
|
|
|
|
|
2005-04-16 10:18:48 +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
|
2004-02-22 14:41:33 +05:30
|
|
|
|
2002-07-21 22:20:49 +05:30
|
|
|
extern int hwclock_main ( int argc, char **argv )
|
|
|
|
{
|
2004-02-22 14:41:33 +05:30
|
|
|
unsigned long opt;
|
2004-03-23 02:57:39 +05:30
|
|
|
int utc;
|
2002-07-21 22:20:49 +05:30
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_HWCLOCK_LONGOPTIONS
|
2004-02-22 14:41:33 +05:30
|
|
|
static const struct option hwclock_long_options[] = {
|
2002-07-21 22:20:49 +05:30
|
|
|
{ "localtime", 0, 0, 'l' },
|
2004-02-22 14:41:33 +05:30
|
|
|
{ "utc", 0, 0, 'u' },
|
|
|
|
{ "show", 0, 0, 'r' },
|
2002-07-21 22:20:49 +05:30
|
|
|
{ "hctosys", 0, 0, 's' },
|
|
|
|
{ "systohc", 0, 0, 'w' },
|
|
|
|
{ 0, 0, 0, 0 }
|
|
|
|
};
|
2004-02-22 14:41:33 +05:30
|
|
|
bb_applet_long_options = hwclock_long_options;
|
2002-07-21 22:20:49 +05:30
|
|
|
#endif
|
2004-02-22 14:41:33 +05:30
|
|
|
|
2005-10-14 15:26:52 +05:30
|
|
|
bb_opt_complementally = "?:r--ws:w--rs:s--wr:l--u:u--l";
|
2004-02-22 14:41:33 +05:30
|
|
|
opt = bb_getopt_ulflags(argc, argv, "lursw");
|
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))
|
2004-03-23 02:57:39 +05:30
|
|
|
utc = opt & HWCLOCK_OPT_UTC;
|
|
|
|
else
|
2004-02-22 14:41:33 +05:30
|
|
|
utc = check_utc();
|
2005-04-16 10:18:48 +05:30
|
|
|
|
2004-02-22 14:41:33 +05:30
|
|
|
if (opt & HWCLOCK_OPT_HCTOSYS) {
|
2002-07-21 22:20:49 +05:30
|
|
|
return to_sys_clock ( utc );
|
2004-02-22 14:41:33 +05:30
|
|
|
}
|
|
|
|
else if (opt & HWCLOCK_OPT_SYSTOHC) {
|
|
|
|
return from_sys_clock ( utc );
|
|
|
|
} else {
|
|
|
|
/* default HWCLOCK_OPT_SHOW */
|
2004-03-15 13:59:22 +05:30
|
|
|
return show_clock ( utc );
|
2004-02-22 14:41:33 +05:30
|
|
|
}
|
2002-07-21 22:20:49 +05:30
|
|
|
}
|