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 | * |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Robert Griebl | 6859d76 | 2002-08-05 02:57:12 +0000 | [diff] [blame] | 8 | */ |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 9 | |
| 10 | |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 11 | #include <sys/ioctl.h> |
| 12 | #include <sys/time.h> |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 13 | #include <sys/utsname.h> |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 14 | #include <ctype.h> |
| 15 | #include <fcntl.h> |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 16 | #include <getopt.h> |
| 17 | #include <stdlib.h> |
| 18 | #include <string.h> |
| 19 | #include <syslog.h> |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 20 | #include <time.h> |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 21 | #include <unistd.h> |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 22 | #include "busybox.h" |
| 23 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 24 | /* Copied from linux/rtc.h to eliminate the kernel dependency */ |
Robert Griebl | 7ce75f4 | 2003-01-02 07:16:53 +0000 | [diff] [blame] | 25 | struct linux_rtc_time { |
| 26 | int tm_sec; |
| 27 | int tm_min; |
| 28 | int tm_hour; |
| 29 | int tm_mday; |
| 30 | int tm_mon; |
| 31 | int tm_year; |
| 32 | int tm_wday; |
| 33 | int tm_yday; |
| 34 | int tm_isdst; |
| 35 | }; |
Mike Frysinger | b31566e | 2005-04-16 04:48:48 +0000 | [diff] [blame] | 36 | |
Robert Griebl | 7ce75f4 | 2003-01-02 07:16:53 +0000 | [diff] [blame] | 37 | #define RTC_SET_TIME _IOW('p', 0x0a, struct linux_rtc_time) /* Set RTC time */ |
| 38 | #define RTC_RD_TIME _IOR('p', 0x09, struct linux_rtc_time) /* Read RTC time */ |
Eric Andersen | 8882ea5 | 2002-12-11 03:41:28 +0000 | [diff] [blame] | 39 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 40 | #ifdef CONFIG_FEATURE_HWCLOCK_LONGOPTIONS |
| 41 | # ifndef _GNU_SOURCE |
| 42 | # define _GNU_SOURCE |
| 43 | # endif |
| 44 | #endif |
| 45 | |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 46 | static time_t read_rtc(int utc) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 47 | { |
| 48 | int rtc; |
| 49 | struct tm tm; |
| 50 | char *oldtz = 0; |
| 51 | time_t t = 0; |
| 52 | |
| 53 | if (( rtc = open ( "/dev/rtc", O_RDONLY )) < 0 ) { |
| 54 | if (( rtc = open ( "/dev/misc/rtc", O_RDONLY )) < 0 ) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 55 | bb_perror_msg_and_die ( "Could not access RTC" ); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 56 | } |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 57 | memset ( &tm, 0, sizeof( struct tm )); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 58 | if ( ioctl ( rtc, RTC_RD_TIME, &tm ) < 0 ) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 59 | bb_perror_msg_and_die ( "Could not read time from RTC" ); |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 60 | tm.tm_isdst = -1; /* not known */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 61 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 62 | close ( rtc ); |
| 63 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 64 | if ( utc ) { |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 65 | oldtz = getenv ( "TZ" ); |
| 66 | setenv ( "TZ", "UTC 0", 1 ); |
| 67 | tzset ( ); |
| 68 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 69 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 70 | t = mktime ( &tm ); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 71 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 72 | if ( utc ) { |
| 73 | if ( oldtz ) |
| 74 | setenv ( "TZ", oldtz, 1 ); |
| 75 | else |
| 76 | unsetenv ( "TZ" ); |
| 77 | tzset ( ); |
| 78 | } |
| 79 | return t; |
| 80 | } |
| 81 | |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 82 | static void write_rtc(time_t t, int utc) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 83 | { |
| 84 | int rtc; |
| 85 | struct tm tm; |
| 86 | |
| 87 | if (( rtc = open ( "/dev/rtc", O_WRONLY )) < 0 ) { |
| 88 | if (( rtc = open ( "/dev/misc/rtc", O_WRONLY )) < 0 ) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 89 | bb_perror_msg_and_die ( "Could not access RTC" ); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 90 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 91 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 92 | tm = *( utc ? gmtime ( &t ) : localtime ( &t )); |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 93 | tm.tm_isdst = 0; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 94 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 95 | if ( ioctl ( rtc, RTC_SET_TIME, &tm ) < 0 ) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 96 | bb_perror_msg_and_die ( "Could not set the RTC time" ); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 97 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 98 | close ( rtc ); |
| 99 | } |
| 100 | |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 101 | static int show_clock(int utc) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 102 | { |
| 103 | struct tm *ptm; |
| 104 | time_t t; |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 105 | RESERVE_CONFIG_BUFFER(buffer, 64); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 106 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 107 | t = read_rtc ( utc ); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 108 | ptm = localtime ( &t ); /* Sets 'tzname[]' */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 109 | |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 110 | safe_strncpy ( buffer, ctime ( &t ), 64); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 111 | if ( buffer [0] ) |
Rob Landley | a389651 | 2006-05-07 20:20:34 +0000 | [diff] [blame^] | 112 | buffer [strlen ( buffer ) - 1] = 0; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 113 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 114 | //printf ( "%s %.6f seconds %s\n", buffer, 0.0, utc ? "" : ( ptm-> tm_isdst ? tzname [1] : tzname [0] )); |
| 115 | printf ( "%s %.6f seconds\n", buffer, 0.0 ); |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 116 | RELEASE_CONFIG_BUFFER(buffer); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 117 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 118 | return 0; |
| 119 | } |
| 120 | |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 121 | static int to_sys_clock(int utc) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 122 | { |
| 123 | struct timeval tv = { 0, 0 }; |
| 124 | const struct timezone tz = { timezone/60 - 60*daylight, 0 }; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 125 | |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 126 | tv.tv_sec = read_rtc ( utc ); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 127 | |
| 128 | if ( settimeofday ( &tv, &tz )) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 129 | bb_perror_msg_and_die ( "settimeofday() failed" ); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 130 | |
| 131 | return 0; |
| 132 | } |
| 133 | |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 134 | static int from_sys_clock(int utc) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 135 | { |
| 136 | struct timeval tv = { 0, 0 }; |
| 137 | struct timezone tz = { 0, 0 }; |
| 138 | |
| 139 | if ( gettimeofday ( &tv, &tz )) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 140 | bb_perror_msg_and_die ( "gettimeofday() failed" ); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 141 | |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 142 | write_rtc ( tv.tv_sec, utc ); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 143 | return 0; |
| 144 | } |
| 145 | |
Mike Frysinger | 747fc5d | 2005-09-28 03:21:21 +0000 | [diff] [blame] | 146 | #ifdef CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS |
| 147 | # define ADJTIME_PATH "/var/lib/hwclock/adjtime" |
| 148 | #else |
| 149 | # define ADJTIME_PATH "/etc/adjtime" |
| 150 | #endif |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 151 | static int check_utc(void) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 152 | { |
| 153 | int utc = 0; |
Mike Frysinger | 747fc5d | 2005-09-28 03:21:21 +0000 | [diff] [blame] | 154 | FILE *f = fopen ( ADJTIME_PATH, "r" ); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 155 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 156 | if ( f ) { |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 157 | RESERVE_CONFIG_BUFFER(buffer, 128); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 158 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 159 | while ( fgets ( buffer, sizeof( buffer ), f )) { |
Rob Landley | a389651 | 2006-05-07 20:20:34 +0000 | [diff] [blame^] | 160 | int len = strlen ( buffer ); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 161 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 162 | while ( len && isspace ( buffer [len - 1] )) |
| 163 | len--; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 164 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 165 | buffer [len] = 0; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 166 | |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 167 | if ( strncmp ( buffer, "UTC", 3 ) == 0 ) { |
| 168 | utc = 1; |
| 169 | break; |
| 170 | } |
| 171 | } |
| 172 | fclose ( f ); |
Bernhard Reutner-Fischer | 5cf905a | 2006-03-31 22:36:15 +0000 | [diff] [blame] | 173 | RELEASE_CONFIG_BUFFER(buffer); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 174 | } |
| 175 | return utc; |
| 176 | } |
| 177 | |
Mike Frysinger | b31566e | 2005-04-16 04:48:48 +0000 | [diff] [blame] | 178 | #define HWCLOCK_OPT_LOCALTIME 0x01 |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 179 | #define HWCLOCK_OPT_UTC 0x02 |
| 180 | #define HWCLOCK_OPT_SHOW 0x04 |
| 181 | #define HWCLOCK_OPT_HCTOSYS 0x08 |
| 182 | #define HWCLOCK_OPT_SYSTOHC 0x10 |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 183 | |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 184 | int hwclock_main ( int argc, char **argv ) |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 185 | { |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 186 | unsigned long opt; |
Robert Griebl | 6bb8087 | 2004-03-22 21:27:39 +0000 | [diff] [blame] | 187 | int utc; |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 188 | |
| 189 | #ifdef CONFIG_FEATURE_HWCLOCK_LONGOPTIONS |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 190 | static const struct option hwclock_long_options[] = { |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 191 | { "localtime", 0, 0, 'l' }, |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 192 | { "utc", 0, 0, 'u' }, |
| 193 | { "show", 0, 0, 'r' }, |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 194 | { "hctosys", 0, 0, 's' }, |
| 195 | { "systohc", 0, 0, 'w' }, |
| 196 | { 0, 0, 0, 0 } |
| 197 | }; |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 198 | bb_applet_long_options = hwclock_long_options; |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 199 | #endif |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 200 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 201 | bb_opt_complementally = "?:r--ws:w--rs:s--wr:l--u:u--l"; |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 202 | opt = bb_getopt_ulflags(argc, argv, "lursw"); |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 203 | |
Robert Griebl | 6bb8087 | 2004-03-22 21:27:39 +0000 | [diff] [blame] | 204 | /* 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] | 205 | if (opt & (HWCLOCK_OPT_UTC | HWCLOCK_OPT_LOCALTIME)) |
Robert Griebl | 6bb8087 | 2004-03-22 21:27:39 +0000 | [diff] [blame] | 206 | utc = opt & HWCLOCK_OPT_UTC; |
| 207 | else |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 208 | utc = check_utc(); |
Mike Frysinger | b31566e | 2005-04-16 04:48:48 +0000 | [diff] [blame] | 209 | |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 210 | if (opt & HWCLOCK_OPT_HCTOSYS) { |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 211 | return to_sys_clock ( utc ); |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 212 | } |
| 213 | else if (opt & HWCLOCK_OPT_SYSTOHC) { |
| 214 | return from_sys_clock ( utc ); |
| 215 | } else { |
| 216 | /* default HWCLOCK_OPT_SHOW */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 217 | return show_clock ( utc ); |
Glenn L McGrath | 689e4b9 | 2004-02-22 09:11:33 +0000 | [diff] [blame] | 218 | } |
Robert Griebl | 1cd0445 | 2002-07-21 16:50:49 +0000 | [diff] [blame] | 219 | } |