hwclock.c revision 72edcff5db936e54cfc322d9392ec46e2428fd9b
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010-2012 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <assert.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
#include <signal.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdarg.h>
#include <ctype.h>
#include "macro.h"
#include "util.h"
#include "log.h"
#include "strv.h"
#include "hwclock.h"
int fd;
DIR *d;
* doesn't exist, we open the first RTC which has hctosys=1
* set. If we don't find any we just take the first RTC that
* exists at all. */
if (fd >= 0)
return fd;
if (!d)
goto fallback;
for (;;) {
char *p, *v;
int r;
if (r != 0)
goto fallback;
if (!de)
goto fallback;
continue;
if (!p) {
closedir(d);
return -ENOMEM;
}
r = read_one_line_file(p, &v);
free(p);
if (r < 0)
continue;
r = parse_boolean(v);
free(v);
if (r <= 0)
continue;
free(p);
if (fd >= 0) {
closedir(d);
return fd;
}
}
if (d)
closedir(d);
if (fd < 0)
return -errno;
return fd;
}
int fd;
int err = 0;
if (fd < 0)
return -errno;
/* This leaves the timezone fields of struct tm
* uninitialized! */
/* We don't know daylight saving, so we reset this in order not
* to confused mktime(). */
return err;
}
int fd;
int err = 0;
if (fd < 0)
return -errno;
return err;
}
int hwclock_is_localtime(void) {
FILE *f;
bool local = false;
/*
* The third line of adjtime is "UTC" or "LOCAL" or nothing.
* 0.0 0 0
* 0
* UTC
*/
if (f) {
bool b;
fclose(f);
if (!b)
return -EIO;
return -errno;
return local;
}
int hwclock_set_timezone(int *min) {
int minuteswest;
/*
* If the hardware clock does not run in UTC, but in local time:
* The very first time we set the kernel's timezone, it will warp
* the clock so that it runs in UTC instead of local time.
*/
return -errno;
if (min)
*min = minuteswest;
return 0;
}
int hwclock_reset_timezone(void) {
tz.tz_minuteswest = 0;
/*
* The very first time we set the kernel's timezone, it will warp
* the clock. Do a dummy call here, so the time warping is sealed
* and we set only the time zone with next call.
*/
return -errno;
return 0;
}