dbus: minor coding style fixes
[systemd_ALT/systemd_imz.git] / src / shared / hwclock.c
blob9f8ab08e2bdd0589b9fd5a0d7446c713afbbe5dc
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
3 /***
4 This file is part of systemd.
6 Copyright 2010-2012 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
22 #include <assert.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <errno.h>
26 #include <stdlib.h>
27 #include <signal.h>
28 #include <stdio.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <fcntl.h>
32 #include <sys/ioctl.h>
33 #include <stdarg.h>
34 #include <ctype.h>
35 #include <sys/prctl.h>
36 #include <sys/time.h>
37 #include <linux/rtc.h>
39 #include "macro.h"
40 #include "util.h"
41 #include "log.h"
42 #include "strv.h"
43 #include "hwclock.h"
45 static int rtc_open(int flags) {
46 int fd;
47 DIR *d;
49 /* First, we try to make use of the /dev/rtc symlink. If that
50 * doesn't exist, we open the first RTC which has hctosys=1
51 * set. If we don't find any we just take the first RTC that
52 * exists at all. */
54 fd = open("/dev/rtc", flags);
55 if (fd >= 0)
56 return fd;
58 d = opendir("/sys/class/rtc");
59 if (!d)
60 goto fallback;
62 for (;;) {
63 char *p, *v;
64 struct dirent buf, *de;
65 int r;
67 r = readdir_r(d, &buf, &de);
68 if (r != 0)
69 goto fallback;
71 if (!de)
72 goto fallback;
74 if (ignore_file(de->d_name))
75 continue;
77 p = strjoin("/sys/class/rtc/", de->d_name, "/hctosys", NULL);
78 if (!p) {
79 closedir(d);
80 return -ENOMEM;
83 r = read_one_line_file(p, &v);
84 free(p);
86 if (r < 0)
87 continue;
89 r = parse_boolean(v);
90 free(v);
92 if (r <= 0)
93 continue;
95 p = strappend("/dev/", de->d_name);
96 fd = open(p, flags);
97 free(p);
99 if (fd >= 0) {
100 closedir(d);
101 return fd;
105 fallback:
106 if (d)
107 closedir(d);
109 fd = open("/dev/rtc0", flags);
110 if (fd < 0)
111 return -errno;
113 return fd;
116 int hwclock_get_time(struct tm *tm) {
117 int fd;
118 int err = 0;
120 assert(tm);
122 fd = rtc_open(O_RDONLY|O_CLOEXEC);
123 if (fd < 0)
124 return -errno;
126 /* This leaves the timezone fields of struct tm
127 * uninitialized! */
128 if (ioctl(fd, RTC_RD_TIME, tm) < 0)
129 err = -errno;
131 /* We don't know daylight saving, so we reset this in order not
132 * to confused mktime(). */
133 tm->tm_isdst = -1;
135 close_nointr_nofail(fd);
137 return err;
140 int hwclock_set_time(const struct tm *tm) {
141 int fd;
142 int err = 0;
144 assert(tm);
146 fd = rtc_open(O_RDONLY|O_CLOEXEC);
147 if (fd < 0)
148 return -errno;
150 if (ioctl(fd, RTC_SET_TIME, tm) < 0)
151 err = -errno;
153 close_nointr_nofail(fd);
155 return err;
157 int hwclock_is_localtime(void) {
158 FILE *f;
159 bool local = false;
162 * The third line of adjtime is "UTC" or "LOCAL" or nothing.
163 * # /etc/adjtime
164 * 0.0 0 0
166 * UTC
168 f = fopen("/etc/adjtime", "re");
169 if (f) {
170 char line[LINE_MAX];
171 bool b;
173 b = fgets(line, sizeof(line), f) &&
174 fgets(line, sizeof(line), f) &&
175 fgets(line, sizeof(line), f);
177 fclose(f);
179 if (!b)
180 return -EIO;
182 truncate_nl(line);
183 local = streq(line, "LOCAL");
185 } else if (errno != -ENOENT)
186 return -errno;
188 return local;
191 int hwclock_apply_localtime_delta(int *min) {
192 const struct timeval *tv_null = NULL;
193 struct timespec ts;
194 struct tm *tm;
195 int minuteswest;
196 struct timezone tz;
198 assert_se(clock_gettime(CLOCK_REALTIME, &ts) == 0);
199 assert_se(tm = localtime(&ts.tv_sec));
200 minuteswest = tm->tm_gmtoff / 60;
202 tz.tz_minuteswest = -minuteswest;
203 tz.tz_dsttime = 0; /* DST_NONE*/
206 * If the hardware clock does not run in UTC, but in local time:
207 * The very first time we set the kernel's timezone, it will warp
208 * the clock so that it runs in UTC instead of local time.
210 if (settimeofday(tv_null, &tz) < 0)
211 return -errno;
212 if (min)
213 *min = minuteswest;
214 return 0;
217 int hwclock_reset_localtime_delta(void) {
218 const struct timeval *tv_null = NULL;
219 struct timezone tz;
221 tz.tz_minuteswest = 0;
222 tz.tz_dsttime = 0; /* DST_NONE*/
224 if (settimeofday(tv_null, &tz) < 0)
225 return -errno;
227 return 0;