more C standard compat fixes from Dan Fandrich
[platform/upstream/busybox.git] / util-linux / hwclock.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini hwclock implementation for busybox
4  *
5  * Copyright (C) 2002 Robert Griebl <griebl@gmx.de>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */
9
10 #include "libbb.h"
11 /* After libbb.h, since it needs sys/types.h on some systems */
12 #include <sys/utsname.h>
13 #include "rtc_.h"
14
15 #if ENABLE_FEATURE_HWCLOCK_LONG_OPTIONS
16 # ifndef _GNU_SOURCE
17 #  define _GNU_SOURCE
18 # endif
19 #endif
20
21 static const char *rtcname;
22
23 static time_t read_rtc(int utc)
24 {
25         time_t ret;
26         int fd;
27
28         fd = rtc_xopen(&rtcname, O_RDONLY);
29         ret = rtc_read_time(fd, utc);
30         close(fd);
31
32         return ret;
33 }
34
35 static void write_rtc(time_t t, int utc)
36 {
37         struct tm tm;
38         int rtc = rtc_xopen(&rtcname, O_WRONLY);
39
40         if (utc)
41                 gmtime_r(&t, &tm);
42         else
43                 localtime_r(&t, &tm);
44         tm.tm_isdst = 0;
45
46         xioctl(rtc, RTC_SET_TIME, &tm);
47
48         close(rtc);
49 }
50
51 static void show_clock(int utc)
52 {
53         //struct tm *ptm;
54         time_t t;
55         char *cp;
56
57         t = read_rtc(utc);
58         //ptm = localtime(&t);  /* Sets 'tzname[]' */
59
60         cp = ctime(&t);
61         if (cp[0])
62                 cp[strlen(cp) - 1] = '\0';
63
64         //printf("%s  %.6f seconds %s\n", cp, 0.0, utc ? "" : (ptm->tm_isdst ? tzname[1] : tzname[0]));
65         printf("%s  0.000000 seconds\n", cp);
66 }
67
68 static void to_sys_clock(int utc)
69 {
70         struct timeval tv;
71         struct timezone tz;
72
73         tz.tz_minuteswest = timezone/60 - 60*daylight;
74         tz.tz_dsttime = 0;
75
76         tv.tv_sec = read_rtc(utc);
77         tv.tv_usec = 0;
78         if (settimeofday(&tv, &tz))
79                 bb_perror_msg_and_die("settimeofday() failed");
80 }
81
82 static void from_sys_clock(int utc)
83 {
84         struct timeval tv;
85
86         gettimeofday(&tv, NULL);
87         //if (gettimeofday(&tv, NULL))
88         //      bb_perror_msg_and_die("gettimeofday() failed");
89         write_rtc(tv.tv_sec, utc);
90 }
91
92 #define HWCLOCK_OPT_LOCALTIME   0x01
93 #define HWCLOCK_OPT_UTC         0x02
94 #define HWCLOCK_OPT_SHOW        0x04
95 #define HWCLOCK_OPT_HCTOSYS     0x08
96 #define HWCLOCK_OPT_SYSTOHC     0x10
97 #define HWCLOCK_OPT_RTCFILE     0x20
98
99 int hwclock_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
100 int hwclock_main(int argc UNUSED_PARAM, char **argv)
101 {
102         unsigned opt;
103         int utc;
104
105 #if ENABLE_FEATURE_HWCLOCK_LONG_OPTIONS
106         static const char hwclock_longopts[] ALIGN1 =
107                 "localtime\0" No_argument "l"
108                 "utc\0"       No_argument "u"
109                 "show\0"      No_argument "r"
110                 "hctosys\0"   No_argument "s"
111                 "systohc\0"   No_argument "w"
112                 "file\0"      Required_argument "f"
113                 ;
114         applet_long_options = hwclock_longopts;
115 #endif
116         opt_complementary = "r--ws:w--rs:s--wr:l--u:u--l";
117         opt = getopt32(argv, "lurswf:", &rtcname);
118
119         /* If -u or -l wasn't given check if we are using utc */
120         if (opt & (HWCLOCK_OPT_UTC | HWCLOCK_OPT_LOCALTIME))
121                 utc = (opt & HWCLOCK_OPT_UTC);
122         else
123                 utc = rtc_adjtime_is_utc();
124
125         if (opt & HWCLOCK_OPT_HCTOSYS)
126                 to_sys_clock(utc);
127         else if (opt & HWCLOCK_OPT_SYSTOHC)
128                 from_sys_clock(utc);
129         else
130                 /* default HWCLOCK_OPT_SHOW */
131                 show_clock(utc);
132
133         return 0;
134 }