timedated.c revision d90bb66996f5e3e9b6987e60980ff721b6fc2aff
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2011 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 <errno.h>
#include <string.h>
#include <unistd.h>
#include "sd-id128.h"
#include "sd-messages.h"
#include "sd-event.h"
#include "sd-bus.h"
#include "util.h"
#include "strv.h"
#include "def.h"
#include "hwclock.h"
#include "conf-files.h"
#include "path-util.h"
#include "fileio-label.h"
#include "label.h"
#include "bus-util.h"
#include "event-util.h"
#define NULL_ADJTIME_UTC "0.0 0 0\n0\nUTC\n"
#define NULL_ADJTIME_LOCAL "0.0 0 0\n0\nLOCAL\n"
typedef struct Context {
char *zone;
bool local_rtc;
unsigned can_ntp;
unsigned use_ntp;
} Context;
static void context_reset(Context *c) {
assert(c);
c->local_rtc = false;
}
assert(c);
context_reset(c);
}
static bool valid_timezone(const char *name) {
const char *p;
char *t;
bool slash = false;
int r;
return false;
for (p = name; *p; p++) {
if (!(*p >= '0' && *p <= '9') &&
!(*p >= 'a' && *p <= 'z') &&
!(*p >= 'A' && *p <= 'Z') &&
!(*p == '-' || *p == '_' || *p == '+' || *p == '/'))
return false;
if (*p == '/') {
if (slash)
return false;
slash = true;
} else
slash = false;
}
if (slash)
return false;
if (!t)
return false;
free(t);
if (r < 0)
return false;
return false;
return true;
}
static int context_read_data(Context *c) {
_cleanup_free_ char *t = NULL;
int r;
assert(c);
context_reset(c);
r = readlink_malloc("/etc/localtime", &t);
if (r < 0) {
if (r == -EINVAL)
log_warning("/etc/localtime should be a symbolic link to a timezone data file in /usr/share/zoneinfo/.");
else
} else {
const char *e;
e = path_startswith(t, "/usr/share/zoneinfo/");
if (!e)
e = path_startswith(t, "../usr/share/zoneinfo/");
if (!e)
log_warning("/etc/localtime should be a symbolic link to a timezone data file in /usr/share/zoneinfo/.");
else {
if (!c->zone)
return log_oom();
goto have_timezone;
}
}
}
c->local_rtc = hwclock_is_localtime() > 0;
return 0;
}
static int context_write_data_timezone(Context *c) {
_cleanup_free_ char *p = NULL;
int r = 0;
assert(c);
r = -errno;
return r;
}
if (!p)
return log_oom();
r = symlink_atomic(p, "/etc/localtime");
if (r < 0)
return r;
return 0;
}
static int context_write_data_local_rtc(Context *c) {
int r;
assert(c);
if (r < 0) {
if (r != -ENOENT)
return r;
if (!c->local_rtc)
return 0;
w = strdup(NULL_ADJTIME_LOCAL);
if (!w)
return -ENOMEM;
} else {
char *p, *e;
size_t a, b;
p = strchr(s, '\n');
if (!p)
return -EIO;
if (!p)
return -EIO;
p++;
e = strchr(p, '\n');
if (!e)
return -EIO;
a = p - s;
b = strlen(e);
if (!w)
return -ENOMEM;
if (streq(w, NULL_ADJTIME_UTC)) {
return -errno;
return 0;
}
}
label_init("/etc");
return write_string_file_atomic_label("/etc/adjtime", w);
}
static char** get_ntp_services(void) {
char **i;
int k;
"/etc/systemd/ntp-units.d",
"/run/systemd/ntp-units.d",
"/usr/local/lib/systemd/ntp-units.d",
"/usr/lib/systemd/ntp-units.d",
NULL);
if (k < 0)
return NULL;
STRV_FOREACH(i, files) {
_cleanup_fclose_ FILE *f;
f = fopen(*i, "re");
if (!f)
continue;
for (;;) {
if (ferror(f))
log_error("Failed to read NTP units file: %m");
break;
}
if (l[0] == 0 || l[0] == '#')
continue;
if (strv_extend(&r, l) < 0) {
log_oom();
return NULL;
}
}
}
i = r;
r = NULL; /* avoid cleanup */
return strv_uniq(i);
}
_cleanup_strv_free_ char **l;
char **i;
int r;
assert(c);
l = get_ntp_services();
STRV_FOREACH(i, l) {
const char *s;
r = sd_bus_call_method(
bus,
"org.freedesktop.systemd1",
"/org/freedesktop/systemd1",
"org.freedesktop.systemd1.Manager",
"GetUnitFileState",
&error,
&reply,
"s",
*i);
if (r < 0) {
/* This implementation does not exist, try next one */
continue;
return r;
}
if (r < 0)
return r;
c->can_ntp = 1;
c->use_ntp =
streq(s, "enabled") ||
streq(s, "enabled-runtime");
return 0;
}
/* NTP is not installed. */
c->can_ntp = 0;
c->use_ntp = 0;
return 0;
}
_cleanup_strv_free_ char **l = NULL;
char **i;
int r;
assert(c);
l = get_ntp_services();
STRV_FOREACH(i, l) {
if (c->use_ntp)
r = sd_bus_call_method(
bus,
"org.freedesktop.systemd1",
"/org/freedesktop/systemd1",
"org.freedesktop.systemd1.Manager",
"StartUnit",
NULL,
"ss", *i, "replace");
else
r = sd_bus_call_method(
bus,
"org.freedesktop.systemd1",
"/org/freedesktop/systemd1",
"org.freedesktop.systemd1.Manager",
"StopUnit",
NULL,
"ss", *i, "replace");
if (r < 0) {
/* This implementation does not exist, try next one */
continue;
}
return r;
}
return 1;
}
return -ENOTSUP;
}
_cleanup_strv_free_ char **l = NULL;
char **i;
int r;
assert(c);
l = get_ntp_services();
STRV_FOREACH(i, l) {
if (c->use_ntp)
r = sd_bus_call_method(
bus,
"org.freedesktop.systemd1",
"/org/freedesktop/systemd1",
"org.freedesktop.systemd1.Manager",
"EnableUnitFiles",
NULL,
"asbb", 1, *i, false, true);
else
r = sd_bus_call_method(
bus,
"org.freedesktop.systemd1",
"/org/freedesktop/systemd1",
"org.freedesktop.systemd1.Manager",
"DisableUnitFiles",
NULL,
"asb", 1, *i, false);
if (r < 0) {
/* This implementation does not exist, try next one */
continue;
}
return r;
}
r = sd_bus_call_method(
bus,
"org.freedesktop.systemd1",
"/org/freedesktop/systemd1",
"org.freedesktop.systemd1.Manager",
"Reload",
NULL,
NULL);
if (r < 0)
return r;
return 1;
}
return -ENOTSUP;
}
static int property_get_rtc_time(
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
usec_t t;
int r;
r = hwclock_get_time(&tm);
if (r == -EBUSY) {
log_warning("/dev/rtc is busy, is somebody keeping it open continously? That's not a good idea... Returning a bogus RTC timestamp.");
t = 0;
} else if (r == -ENOENT) {
t = 0; /* no RTC found */
} else if (r < 0)
else
}
static int property_get_time(
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
}
static int property_get_ntp_sync(
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
}
static int method_set_timezone(sd_bus *bus, sd_bus_message *m, void *userdata, sd_bus_error *error) {
const char *z;
int interactive;
char *t;
int r;
assert(m);
assert(c);
if (r < 0)
return r;
if (!valid_timezone(z))
return sd_bus_reply_method_return(m, NULL);
r = bus_verify_polkit_async(bus, &c->polkit_registry, m, "org.freedesktop.timedate1.set-timezone", interactive, error, method_set_timezone, c);
if (r < 0)
return r;
if (r == 0)
return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
t = strdup(z);
if (!t)
return -ENOMEM;
c->zone = t;
/* 1. Write new configuration file */
r = context_write_data_timezone(c);
if (r < 0) {
}
/* 2. Tell the kernel our timezone */
if (c->local_rtc) {
/* 3. Sync RTC from system clock, with the new delta */
}
"TIMEZONE=%s", c->zone,
"MESSAGE=Changed timezone to '%s'.", c->zone,
NULL);
sd_bus_emit_properties_changed(bus, "/org/freedesktop/timedate1", "org.freedesktop.timedate1", "Timezone", NULL);
return sd_bus_reply_method_return(m, NULL);
}
static int method_set_local_rtc(sd_bus *bus, sd_bus_message *m, void *userdata, sd_bus_error *error) {
int r;
assert(m);
assert(c);
if (r < 0)
return r;
return sd_bus_reply_method_return(m, NULL);
r = bus_verify_polkit_async(bus, &c->polkit_registry, m, "org.freedesktop.timedate1.set-local-rtc", interactive, error, method_set_local_rtc, c);
if (r < 0)
return r;
if (r == 0)
return 1;
/* 1. Write new configuration file */
r = context_write_data_local_rtc(c);
if (r < 0) {
}
/* 2. Tell the kernel our timezone */
/* 3. Synchronize clocks */
if (fix_system) {
/* Sync system clock from RTC; first,
* initialize the timezone fields of
* struct tm. */
if (c->local_rtc)
else
/* Override the main fields of
* struct tm, but not the timezone
* fields */
if (hwclock_get_time(&tm) >= 0) {
/* And set the system clock
* with this */
if (c->local_rtc)
else
}
} else {
/* Sync RTC from system clock */
if (c->local_rtc)
else
}
sd_bus_emit_properties_changed(bus, "/org/freedesktop/timedate1", "org.freedesktop.timedate1", "LocalRTC", NULL);
return sd_bus_reply_method_return(m, NULL);
}
int relative, interactive;
int r;
assert(m);
assert(c);
if (r < 0)
return r;
return sd_bus_reply_method_return(m, NULL);
if (relative) {
usec_t n, x;
n = now(CLOCK_REALTIME);
x = n + utc;
if ((utc > 0 && x < n) ||
(utc < 0 && x > n))
timespec_store(&ts, x);
} else
r = bus_verify_polkit_async(bus, &c->polkit_registry, m, "org.freedesktop.timedate1.set-time", interactive, error, method_set_time, c);
if (r < 0)
return r;
if (r == 0)
return 1;
/* Set system clock */
log_error("Failed to set local time: %m");
}
/* Sync down to RTC */
if (c->local_rtc)
else
NULL);
return sd_bus_reply_method_return(m, NULL);
}
int ntp, interactive;
int r;
if (r < 0)
return r;
return sd_bus_reply_method_return(m, NULL);
r = bus_verify_polkit_async(bus, &c->polkit_registry, m, "org.freedesktop.timedate1.set-ntp", interactive, error, method_set_ntp, c);
if (r < 0)
return r;
if (r == 0)
return 1;
if (r < 0)
return r;
if (r < 0)
return r;
sd_bus_emit_properties_changed(bus, "/org/freedesktop/timedate1", "org.freedesktop.timedate1", "NTP", NULL);
return sd_bus_reply_method_return(m, NULL);
}
#include <sys/capability.h>
static const sd_bus_vtable timedate_vtable[] = {
SD_BUS_PROPERTY("Timezone", "s", NULL, offsetof(Context, zone), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
SD_BUS_PROPERTY("LocalRTC", "b", NULL, offsetof(Context, local_rtc), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
SD_BUS_PROPERTY("NTP", "b", bus_property_get_tristate, offsetof(Context, use_ntp), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
};
int r;
assert(c);
r = sd_bus_default_system(&bus);
if (r < 0) {
return r;
}
r = sd_bus_add_object_vtable(bus, "/org/freedesktop/timedate1", "org.freedesktop.timedate1", timedate_vtable, c);
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
return 0;
}
.local_rtc = false,
.can_ntp = -1,
.use_ntp = -1,
};
int r;
log_open();
umask(0022);
if (argc != 1) {
log_error("This program takes no arguments.");
r = -EINVAL;
goto finish;
}
r = sd_event_default(&event);
if (r < 0) {
goto finish;
}
sd_event_set_watchdog(event, true);
if (r < 0)
goto finish;
r = context_read_data(&context);
if (r < 0) {
goto finish;
}
if (r < 0) {
goto finish;
}
if (r < 0) {
goto finish;
}
r = 0;
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}