summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2017-08-30 15:59:57 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2017-08-30 15:59:57 +0900
commit53d133ea1bb4c4ed44c4b6aae42f1feb33d9cb78 (patch)
tree589badcb95b14bdc16e16b66589a674432d07496
parent87a85e25a2ebcc1e519249d0513e34bb20ceed49 (diff)
downloadsystemd-53d133ea1bb4c4ed44c4b6aae42f1feb33d9cb78.tar.gz
timesync: move stamp file to /var/lib/systemd/timesync/clock
-rw-r--r--man/systemd-timesyncd.service.xml2
-rw-r--r--src/timesync/timesyncd-manager.c2
-rw-r--r--src/timesync/timesyncd.c27
-rw-r--r--units/systemd-timesyncd.service.in4
4 files changed, 23 insertions, 12 deletions
diff --git a/man/systemd-timesyncd.service.xml b/man/systemd-timesyncd.service.xml
index 3edcaf1b4e..7860c0d4e4 100644
--- a/man/systemd-timesyncd.service.xml
+++ b/man/systemd-timesyncd.service.xml
@@ -88,7 +88,7 @@
<variablelist>
<varlistentry>
- <term><filename>/var/lib/systemd/clock</filename></term>
+ <term><filename>/var/lib/systemd/timesync/clock</filename></term>
<listitem>
<para>This file contains the timestamp of the last successful
diff --git a/src/timesync/timesyncd-manager.c b/src/timesync/timesyncd-manager.c
index 4458f98ebf..eacb10f1c0 100644
--- a/src/timesync/timesyncd-manager.c
+++ b/src/timesync/timesyncd-manager.c
@@ -373,7 +373,7 @@ static int manager_adjust_clock(Manager *m, double offset, int leap_sec) {
return -errno;
/* If touch fails, there isn't much we can do. Maybe it'll work next time. */
- (void) touch("/var/lib/systemd/clock");
+ (void) touch("/var/lib/systemd/timesync/clock");
m->drift_ppm = tmx.freq / 65536;
diff --git a/src/timesync/timesyncd.c b/src/timesync/timesyncd.c
index 31e84b1aed..6b802c607c 100644
--- a/src/timesync/timesyncd.c
+++ b/src/timesync/timesyncd.c
@@ -24,6 +24,7 @@
#include "clock-util.h"
#include "fd-util.h"
#include "fs-util.h"
+#include "mkdir.h"
#include "network-util.h"
#include "process-util.h"
#include "signal-util.h"
@@ -44,7 +45,7 @@ static int load_clock_timestamp(uid_t uid, gid_t gid) {
* systems lacking a battery backed RTC. We also will adjust
* the time to at least the build time of systemd. */
- fd = open("/var/lib/systemd/clock", O_RDWR|O_CLOEXEC, 0644);
+ fd = open("/var/lib/systemd/timesync/clock", O_RDWR|O_CLOEXEC, 0644);
if (fd >= 0) {
struct stat st;
usec_t stamp;
@@ -57,14 +58,24 @@ static int load_clock_timestamp(uid_t uid, gid_t gid) {
min = stamp;
}
- /* Try to fix the access mode, so that we can still
- touch the file after dropping priviliges */
- (void) fchmod(fd, 0644);
- (void) fchown(fd, uid, gid);
+ if (geteuid() == 0) {
+ /* Try to fix the access mode, so that we can still
+ touch the file after dropping priviliges */
+ r = fchmod(fd, 0644);
+ if (r < 0)
+ return log_error_errno(errno, "Failed to change file access mode: %m");
+ r = fchown(fd, uid, gid);
+ return log_error_errno(errno, "Failed to change file owner: %m");
+ }
+
+ } else {
+ r = mkdir_safe_label("/var/lib/systemd/timesync", 0755, uid, gid);
+ if (r < 0)
+ return log_error_errno(r, "Failed to create state directory: %m");
- } else
/* create stamp file with the compiled-in date */
- (void) touch_file("/var/lib/systemd/clock", true, min, uid, gid, 0644);
+ (void) touch_file("/var/lib/systemd/timesync/clock", false, min, uid, gid, 0644);
+ }
ct = now(CLOCK_REALTIME);
if (ct < min) {
@@ -162,7 +173,7 @@ int main(int argc, char *argv[]) {
/* if we got an authoritative time, store it in the file system */
if (m->sync)
- (void) touch("/var/lib/systemd/clock");
+ (void) touch("/var/lib/systemd/timesync/clock");
sd_event_get_exit_code(m->event, &r);
diff --git a/units/systemd-timesyncd.service.in b/units/systemd-timesyncd.service.in
index e25d86d655..14557a5661 100644
--- a/units/systemd-timesyncd.service.in
+++ b/units/systemd-timesyncd.service.in
@@ -11,7 +11,7 @@ Documentation=man:systemd-timesyncd.service(8)
ConditionCapability=CAP_SYS_TIME
ConditionVirtualization=!container
DefaultDependencies=no
-RequiresMountsFor=/var/lib/systemd/clock
+RequiresMountsFor=/var/lib/systemd/timesync/clock
After=systemd-remount-fs.service systemd-sysusers.service
Before=time-sync.target sysinit.target shutdown.target
Conflicts=shutdown.target
@@ -39,7 +39,7 @@ RestrictNamespaces=yes
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
SystemCallFilter=~@cpu-emulation @debug @keyring @module @mount @obsolete @raw-io @reboot @swap
SystemCallArchitectures=native
-ReadWritePaths=/var/lib/systemd
+StateDirectory=systemd/timesync
[Install]
WantedBy=sysinit.target