]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/timer.c
Merge pull request #17732 from yuwata/core-use-synthetic_errno
[thirdparty/systemd.git] / src / core / timer.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
a7334b09 2
ca78ad1d
ZJS
3#include <sys/stat.h>
4#include <sys/types.h>
5#include <unistd.h>
6
d46de8a1
LP
7#include <errno.h>
8
b5efdb8a 9#include "alloc-util.h"
07630cea
LP
10#include "bus-error.h"
11#include "bus-util.h"
871d7de4 12#include "dbus-timer.h"
6fcbec6f 13#include "dbus-unit.h"
f4f15635 14#include "fs-util.h"
6bedfcbb 15#include "parse-util.h"
744c7693 16#include "random-util.h"
d68c645b 17#include "serialize.h"
a40eb732 18#include "special.h"
8b43440b 19#include "string-table.h"
07630cea 20#include "string-util.h"
b1d4f8e1 21#include "timer.h"
07630cea
LP
22#include "unit-name.h"
23#include "unit.h"
b1d4f8e1 24#include "user-util.h"
c1d9ba99 25#include "virt.h"
871d7de4
LP
26
27static const UnitActiveState state_translation_table[_TIMER_STATE_MAX] = {
28 [TIMER_DEAD] = UNIT_INACTIVE,
29 [TIMER_WAITING] = UNIT_ACTIVE,
30 [TIMER_RUNNING] = UNIT_ACTIVE,
31 [TIMER_ELAPSED] = UNIT_ACTIVE,
fdf20a31 32 [TIMER_FAILED] = UNIT_FAILED
871d7de4
LP
33};
34
718db961
LP
35static int timer_dispatch(sd_event_source *s, uint64_t usec, void *userdata);
36
871d7de4
LP
37static void timer_init(Unit *u) {
38 Timer *t = TIMER(u);
39
40 assert(u);
ac155bb8 41 assert(u->load_state == UNIT_STUB);
871d7de4 42
3a43da28
KS
43 t->next_elapse_monotonic_or_boottime = USEC_INFINITY;
44 t->next_elapse_realtime = USEC_INFINITY;
bd8f585b 45 t->accuracy_usec = u->manager->default_timer_accuracy_usec;
3e0c30ac 46 t->remain_after_elapse = true;
871d7de4 47}
5cb5a6ff 48
74051b9b 49void timer_free_values(Timer *t) {
871d7de4
LP
50 TimerValue *v;
51
52 assert(t);
53
54 while ((v = t->values)) {
71fda00f 55 LIST_REMOVE(value, t->values, v);
3e044c49 56 calendar_spec_free(v->calendar_spec);
871d7de4
LP
57 free(v);
58 }
74051b9b
LP
59}
60
61static void timer_done(Unit *u) {
62 Timer *t = TIMER(u);
63
64 assert(t);
65
66 timer_free_values(t);
871d7de4 67
718db961
LP
68 t->monotonic_event_source = sd_event_source_unref(t->monotonic_event_source);
69 t->realtime_event_source = sd_event_source_unref(t->realtime_event_source);
06642d17
LP
70
71 free(t->stamp_path);
871d7de4
LP
72}
73
74static int timer_verify(Timer *t) {
75 assert(t);
75193d41 76 assert(UNIT(t)->load_state == UNIT_LOADED);
871d7de4 77
d85ff944
YW
78 if (!t->values && !t->on_clock_change && !t->on_timezone_change)
79 return log_unit_error_errno(UNIT(t), SYNTHETIC_ERRNO(ENOEXEC), "Timer unit lacks value setting. Refusing.");
871d7de4
LP
80
81 return 0;
82}
83
6c155fe3
LP
84static int timer_add_default_dependencies(Timer *t) {
85 int r;
19f8d037 86 TimerValue *v;
6c155fe3
LP
87
88 assert(t);
89
4c9ea260
LP
90 if (!UNIT(t)->default_dependencies)
91 return 0;
92
35d8c19a 93 r = unit_add_dependency_by_name(UNIT(t), UNIT_BEFORE, SPECIAL_TIMERS_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
e3d84721
LP
94 if (r < 0)
95 return r;
2a77d31d 96
463d0d15 97 if (MANAGER_IS_SYSTEM(UNIT(t)->manager)) {
5a724170 98 r = unit_add_two_dependencies_by_name(UNIT(t), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SYSINIT_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
36697dc0 99 if (r < 0)
6c155fe3 100 return r;
19f8d037 101
2762ce2d 102 LIST_FOREACH(value, v, t->values)
19f8d037 103 if (v->base == TIMER_CALENDAR) {
35d8c19a 104 r = unit_add_dependency_by_name(UNIT(t), UNIT_AFTER, SPECIAL_TIME_SYNC_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
19f8d037
TGR
105 if (r < 0)
106 return r;
107 break;
108 }
2a77d31d 109 }
6c155fe3 110
5a724170 111 return unit_add_two_dependencies_by_name(UNIT(t), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
eef85c4a
LP
112}
113
114static int timer_add_trigger_dependencies(Timer *t) {
115 Unit *x;
116 int r;
117
118 assert(t);
119
120 if (!hashmap_isempty(UNIT(t)->dependencies[UNIT_TRIGGERS]))
121 return 0;
122
123 r = unit_load_related_unit(UNIT(t), ".service", &x);
124 if (r < 0)
125 return r;
126
127 return unit_add_two_dependencies(UNIT(t), UNIT_BEFORE, UNIT_TRIGGERS, x, true, UNIT_DEPENDENCY_IMPLICIT);
6c155fe3
LP
128}
129
06642d17
LP
130static int timer_setup_persistent(Timer *t) {
131 int r;
132
133 assert(t);
134
135 if (!t->persistent)
136 return 0;
137
463d0d15 138 if (MANAGER_IS_SYSTEM(UNIT(t)->manager)) {
06642d17 139
eef85c4a 140 r = unit_require_mounts_for(UNIT(t), "/var/lib/systemd/timers", UNIT_DEPENDENCY_FILE);
06642d17
LP
141 if (r < 0)
142 return r;
143
b910cc72 144 t->stamp_path = strjoin("/var/lib/systemd/timers/stamp-", UNIT(t)->id);
06642d17
LP
145 } else {
146 const char *e;
147
148 e = getenv("XDG_DATA_HOME");
149 if (e)
605405c6 150 t->stamp_path = strjoin(e, "/systemd/timers/stamp-", UNIT(t)->id);
06642d17
LP
151 else {
152
153 _cleanup_free_ char *h = NULL;
154
155 r = get_home_dir(&h);
23bbb0de 156 if (r < 0)
f2341e0a 157 return log_unit_error_errno(UNIT(t), r, "Failed to determine home directory: %m");
06642d17 158
605405c6 159 t->stamp_path = strjoin(h, "/.local/share/systemd/timers/stamp-", UNIT(t)->id);
06642d17
LP
160 }
161 }
162
163 if (!t->stamp_path)
164 return log_oom();
165
166 return 0;
167}
168
acf24a1a
KG
169static uint64_t timer_get_fixed_delay_hash(Timer *t) {
170 static const uint8_t hash_key[] = {
171 0x51, 0x0a, 0xdb, 0x76, 0x29, 0x51, 0x42, 0xc2,
172 0x80, 0x35, 0xea, 0xe6, 0x8e, 0x3a, 0x37, 0xbd
173 };
174
175 struct siphash state;
176 sd_id128_t machine_id;
177 uid_t uid;
178 int r;
179
180 assert(t);
181
182 uid = getuid();
183 r = sd_id128_get_machine(&machine_id);
184 if (r < 0) {
185 log_unit_debug_errno(UNIT(t), r,
186 "Failed to get machine ID for the fixed delay calculation, proceeding with 0: %m");
187 machine_id = SD_ID128_NULL;
188 }
189
190 siphash24_init(&state, hash_key);
191 siphash24_compress(&machine_id, sizeof(sd_id128_t), &state);
192 siphash24_compress_boolean(MANAGER_IS_SYSTEM(UNIT(t)->manager), &state);
193 siphash24_compress(&uid, sizeof(uid_t), &state);
194 siphash24_compress_string(UNIT(t)->id, &state);
195
196 return siphash24_finalize(&state);
197}
198
871d7de4
LP
199static int timer_load(Unit *u) {
200 Timer *t = TIMER(u);
201 int r;
202
203 assert(u);
ac155bb8 204 assert(u->load_state == UNIT_STUB);
871d7de4 205
c3620770 206 r = unit_load_fragment_and_dropin(u, true);
36697dc0 207 if (r < 0)
871d7de4
LP
208 return r;
209
75193d41
ZJS
210 if (u->load_state != UNIT_LOADED)
211 return 0;
871d7de4 212
75193d41
ZJS
213 /* This is a new unit? Then let's add in some extras */
214 r = timer_add_trigger_dependencies(t);
215 if (r < 0)
216 return r;
57020a3a 217
75193d41
ZJS
218 r = timer_setup_persistent(t);
219 if (r < 0)
220 return r;
06642d17 221
75193d41
ZJS
222 r = timer_add_default_dependencies(t);
223 if (r < 0)
224 return r;
871d7de4
LP
225
226 return timer_verify(t);
227}
228
229static void timer_dump(Unit *u, FILE *f, const char *prefix) {
9f5eb56a 230 char buf[FORMAT_TIMESPAN_MAX];
871d7de4 231 Timer *t = TIMER(u);
3ecaa09b 232 Unit *trigger;
871d7de4 233 TimerValue *v;
034c6ed7 234
3ecaa09b
LP
235 trigger = UNIT_TRIGGER(u);
236
871d7de4
LP
237 fprintf(f,
238 "%sTimer State: %s\n"
067d72c9 239 "%sResult: %s\n"
9f5eb56a 240 "%sUnit: %s\n"
dedabea4
LP
241 "%sPersistent: %s\n"
242 "%sWakeSystem: %s\n"
3e0c30ac 243 "%sAccuracy: %s\n"
efebb613 244 "%sRemainAfterElapse: %s\n"
acf24a1a 245 "%sFixedRandomDelay: %s\n"
efebb613 246 "%sOnClockChange: %s\n"
0810e396 247 "%sOnTimeZoneChange: %s\n",
871d7de4 248 prefix, timer_state_to_string(t->state),
067d72c9 249 prefix, timer_result_to_string(t->result),
9f5eb56a 250 prefix, trigger ? trigger->id : "n/a",
dedabea4
LP
251 prefix, yes_no(t->persistent),
252 prefix, yes_no(t->wake_system),
3e0c30ac 253 prefix, format_timespan(buf, sizeof(buf), t->accuracy_usec, 1),
efebb613 254 prefix, yes_no(t->remain_after_elapse),
acf24a1a 255 prefix, yes_no(t->fixed_random_delay),
efebb613
LP
256 prefix, yes_no(t->on_clock_change),
257 prefix, yes_no(t->on_timezone_change));
871d7de4 258
2762ce2d 259 LIST_FOREACH(value, v, t->values)
36697dc0
LP
260 if (v->base == TIMER_CALENDAR) {
261 _cleanup_free_ char *p = NULL;
262
25cb94d4 263 (void) calendar_spec_to_string(v->calendar_spec, &p);
36697dc0
LP
264
265 fprintf(f,
266 "%s%s: %s\n",
267 prefix,
268 timer_base_to_string(v->base),
269 strna(p));
270 } else {
271 char timespan1[FORMAT_TIMESPAN_MAX];
272
273 fprintf(f,
274 "%s%s: %s\n",
275 prefix,
276 timer_base_to_string(v->base),
b1d6dcf5 277 format_timespan(timespan1, sizeof(timespan1), v->value, 0));
36697dc0 278 }
871d7de4
LP
279}
280
281static void timer_set_state(Timer *t, TimerState state) {
282 TimerState old_state;
034c6ed7 283 assert(t);
871d7de4 284
6fcbec6f
LP
285 if (t->state != state)
286 bus_unit_send_pending_change_signal(UNIT(t), false);
287
871d7de4
LP
288 old_state = t->state;
289 t->state = state;
290
36697dc0 291 if (state != TIMER_WAITING) {
718db961
LP
292 t->monotonic_event_source = sd_event_source_unref(t->monotonic_event_source);
293 t->realtime_event_source = sd_event_source_unref(t->realtime_event_source);
6e2c9ce1
ZJS
294 t->next_elapse_monotonic_or_boottime = USEC_INFINITY;
295 t->next_elapse_realtime = USEC_INFINITY;
36697dc0 296 }
871d7de4
LP
297
298 if (state != old_state)
f2341e0a 299 log_unit_debug(UNIT(t), "Changed %s -> %s", timer_state_to_string(old_state), timer_state_to_string(state));
871d7de4 300
2ad2e41a 301 unit_notify(UNIT(t), state_translation_table[old_state], state_translation_table[state], 0);
871d7de4
LP
302}
303
aa1f95d2 304static void timer_enter_waiting(Timer *t, bool time_change);
871d7de4 305
be847e82 306static int timer_coldplug(Unit *u) {
871d7de4
LP
307 Timer *t = TIMER(u);
308
309 assert(t);
310 assert(t->state == TIMER_DEAD);
311
3e0c30ac
LP
312 if (t->deserialized_state == t->state)
313 return 0;
871d7de4 314
3e0c30ac 315 if (t->deserialized_state == TIMER_WAITING)
aa1f95d2 316 timer_enter_waiting(t, false);
3e0c30ac
LP
317 else
318 timer_set_state(t, t->deserialized_state);
871d7de4
LP
319
320 return 0;
321}
322
067d72c9 323static void timer_enter_dead(Timer *t, TimerResult f) {
871d7de4
LP
324 assert(t);
325
a0fef983 326 if (t->result == TIMER_SUCCESS)
067d72c9 327 t->result = f;
871d7de4 328
aac99f30 329 unit_log_result(UNIT(t), t->result == TIMER_SUCCESS, timer_result_to_string(t->result));
067d72c9 330 timer_set_state(t, t->result != TIMER_SUCCESS ? TIMER_FAILED : TIMER_DEAD);
871d7de4
LP
331}
332
3e0c30ac
LP
333static void timer_enter_elapsed(Timer *t, bool leave_around) {
334 assert(t);
335
336 /* If a unit is marked with RemainAfterElapse=yes we leave it
337 * around even after it elapsed once, so that starting it
338 * later again does not necessarily mean immediate
339 * retriggering. We unconditionally leave units with
340 * TIMER_UNIT_ACTIVE or TIMER_UNIT_INACTIVE triggers around,
341 * since they might be restarted automatically at any time
342 * later on. */
343
344 if (t->remain_after_elapse || leave_around)
345 timer_set_state(t, TIMER_ELAPSED);
346 else
347 timer_enter_dead(t, TIMER_SUCCESS);
348}
349
744c7693
LP
350static void add_random(Timer *t, usec_t *v) {
351 char s[FORMAT_TIMESPAN_MAX];
352 usec_t add;
353
354 assert(t);
3f51aec8 355 assert(v);
744c7693
LP
356
357 if (t->random_usec == 0)
358 return;
359 if (*v == USEC_INFINITY)
360 return;
361
acf24a1a 362 add = (t->fixed_random_delay ? timer_get_fixed_delay_hash(t) : random_u64()) % t->random_usec;
744c7693
LP
363
364 if (*v + add < *v) /* overflow */
365 *v = (usec_t) -2; /* Highest possible value, that is not USEC_INFINITY */
366 else
367 *v += add;
368
382852fd 369 log_unit_debug(UNIT(t), "Adding %s random time.", format_timespan(s, sizeof(s), add, 0));
744c7693
LP
370}
371
aa1f95d2 372static void timer_enter_waiting(Timer *t, bool time_change) {
36697dc0 373 bool found_monotonic = false, found_realtime = false;
3e0c30ac 374 bool leave_around = false;
c54be90b 375 triple_timestamp ts;
dedabea4 376 TimerValue *v;
e903182e 377 Unit *trigger;
871d7de4
LP
378 int r;
379
e903182e
LP
380 assert(t);
381
382 trigger = UNIT_TRIGGER(UNIT(t));
383 if (!trigger) {
384 log_unit_error(UNIT(t), "Unit to trigger vanished.");
385 timer_enter_dead(t, TIMER_FAILURE_RESOURCES);
386 return;
387 }
388
c54be90b 389 triple_timestamp_get(&ts);
dedabea4 390 t->next_elapse_monotonic_or_boottime = t->next_elapse_realtime = 0;
871d7de4
LP
391
392 LIST_FOREACH(value, v, t->values) {
871d7de4
LP
393 if (v->disabled)
394 continue;
395
36697dc0 396 if (v->base == TIMER_CALENDAR) {
58afc4f8 397 usec_t b, rebased;
06642d17
LP
398
399 /* If we know the last time this was
400 * triggered, schedule the job based relative
9ea9faff
AJ
401 * to that. If we don't, just start from
402 * the activation time. */
403
404 if (t->last_trigger.realtime > 0)
405 b = t->last_trigger.realtime;
406 else {
407 if (state_translation_table[t->state] == UNIT_ACTIVE)
408 b = UNIT(t)->inactive_exit_timestamp.realtime;
409 else
410 b = ts.realtime;
411 }
06642d17
LP
412
413 r = calendar_spec_next_usec(v->calendar_spec, b, &v->next_elapse);
36697dc0
LP
414 if (r < 0)
415 continue;
416
58afc4f8
LP
417 /* To make the delay due to RandomizedDelaySec= work even at boot, if the scheduled
418 * time has already passed, set the time when systemd first started as the scheduled
419 * time. Note that we base this on the monotonic timestamp of the boot, not the
420 * realtime one, since the wallclock might have been off during boot. */
421 rebased = map_clock_usec(UNIT(t)->manager->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic,
422 CLOCK_MONOTONIC, CLOCK_REALTIME);
423 if (v->next_elapse < rebased)
424 v->next_elapse = rebased;
a87c1d3a 425
36697dc0
LP
426 if (!found_realtime)
427 t->next_elapse_realtime = v->next_elapse;
10717a1a 428 else
36697dc0 429 t->next_elapse_realtime = MIN(t->next_elapse_realtime, v->next_elapse);
871d7de4 430
36697dc0 431 found_realtime = true;
871d7de4 432
60933bb8
AJ
433 } else {
434 usec_t base;
c54be90b 435
36697dc0 436 switch (v->base) {
871d7de4 437
36697dc0
LP
438 case TIMER_ACTIVE:
439 if (state_translation_table[t->state] == UNIT_ACTIVE)
440 base = UNIT(t)->inactive_exit_timestamp.monotonic;
441 else
c54be90b 442 base = ts.monotonic;
36697dc0 443 break;
871d7de4 444
36697dc0 445 case TIMER_BOOT:
c1d9ba99
MS
446 if (detect_container() <= 0) {
447 /* CLOCK_MONOTONIC equals the uptime on Linux */
448 base = 0;
449 break;
450 }
451 /* In a container we don't want to include the time the host
452 * was already up when the container started, so count from
ec251fe7 453 * our own startup. */
4831981d 454 _fallthrough_;
36697dc0 455 case TIMER_STARTUP:
9f9f0342 456 base = UNIT(t)->manager->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic;
36697dc0 457 break;
871d7de4 458
36697dc0 459 case TIMER_UNIT_ACTIVE:
3e0c30ac 460 leave_around = true;
525b95f1 461 base = MAX(trigger->inactive_exit_timestamp.monotonic, t->last_trigger.monotonic);
e41e1943 462 if (base <= 0)
36697dc0 463 continue;
36697dc0 464 break;
871d7de4 465
36697dc0 466 case TIMER_UNIT_INACTIVE:
3e0c30ac 467 leave_around = true;
525b95f1 468 base = MAX(trigger->inactive_enter_timestamp.monotonic, t->last_trigger.monotonic);
e41e1943 469 if (base <= 0)
36697dc0 470 continue;
36697dc0 471 break;
871d7de4 472
36697dc0
LP
473 default:
474 assert_not_reached("Unknown timer base");
475 }
871d7de4 476
c54be90b 477 v->next_elapse = usec_add(usec_shift_clock(base, CLOCK_MONOTONIC, TIMER_MONOTONIC_CLOCK(t)), v->value);
36697dc0 478
aa1f95d2
MK
479 if (dual_timestamp_is_set(&t->last_trigger) &&
480 !time_change &&
c54be90b
LP
481 v->next_elapse < triple_timestamp_by_clock(&ts, TIMER_MONOTONIC_CLOCK(t)) &&
482 IN_SET(v->base, TIMER_ACTIVE, TIMER_BOOT, TIMER_STARTUP)) {
e41e1943 483 /* This is a one time trigger, disable it now */
36697dc0
LP
484 v->disabled = true;
485 continue;
486 }
487
488 if (!found_monotonic)
dedabea4 489 t->next_elapse_monotonic_or_boottime = v->next_elapse;
36697dc0 490 else
dedabea4 491 t->next_elapse_monotonic_or_boottime = MIN(t->next_elapse_monotonic_or_boottime, v->next_elapse);
36697dc0
LP
492
493 found_monotonic = true;
494 }
871d7de4
LP
495 }
496
efebb613 497 if (!found_monotonic && !found_realtime && !t->on_timezone_change && !t->on_clock_change) {
f2341e0a 498 log_unit_debug(UNIT(t), "Timer is elapsed.");
3e0c30ac 499 timer_enter_elapsed(t, leave_around);
871d7de4
LP
500 return;
501 }
502
36697dc0
LP
503 if (found_monotonic) {
504 char buf[FORMAT_TIMESPAN_MAX];
3e0c30ac 505 usec_t left;
dedabea4 506
744c7693
LP
507 add_random(t, &t->next_elapse_monotonic_or_boottime);
508
c54be90b 509 left = usec_sub_unsigned(t->next_elapse_monotonic_or_boottime, triple_timestamp_by_clock(&ts, TIMER_MONOTONIC_CLOCK(t)));
3e0c30ac 510 log_unit_debug(UNIT(t), "Monotonic timer elapses in %s.", format_timespan(buf, sizeof(buf), left, 0));
871d7de4 511
718db961 512 if (t->monotonic_event_source) {
dedabea4 513 r = sd_event_source_set_time(t->monotonic_event_source, t->next_elapse_monotonic_or_boottime);
718db961
LP
514 if (r < 0)
515 goto fail;
516
517 r = sd_event_source_set_enabled(t->monotonic_event_source, SD_EVENT_ONESHOT);
cbf60d0a
LP
518 if (r < 0)
519 goto fail;
520 } else {
521
6a0f1f6d
LP
522 r = sd_event_add_time(
523 UNIT(t)->manager->event,
524 &t->monotonic_event_source,
dedabea4
LP
525 t->wake_system ? CLOCK_BOOTTIME_ALARM : CLOCK_MONOTONIC,
526 t->next_elapse_monotonic_or_boottime, t->accuracy_usec,
6a0f1f6d 527 timer_dispatch, t);
cbf60d0a
LP
528 if (r < 0)
529 goto fail;
718db961 530
cbf60d0a
LP
531 (void) sd_event_source_set_description(t->monotonic_event_source, "timer-monotonic");
532 }
7dfbe2e3 533
718db961 534 } else if (t->monotonic_event_source) {
718db961 535
06642d17 536 r = sd_event_source_set_enabled(t->monotonic_event_source, SD_EVENT_OFF);
718db961
LP
537 if (r < 0)
538 goto fail;
539 }
36697dc0
LP
540
541 if (found_realtime) {
542 char buf[FORMAT_TIMESTAMP_MAX];
744c7693
LP
543
544 add_random(t, &t->next_elapse_realtime);
545
f2341e0a 546 log_unit_debug(UNIT(t), "Realtime timer elapses at %s.", format_timestamp(buf, sizeof(buf), t->next_elapse_realtime));
36697dc0 547
718db961
LP
548 if (t->realtime_event_source) {
549 r = sd_event_source_set_time(t->realtime_event_source, t->next_elapse_realtime);
550 if (r < 0)
551 goto fail;
552
553 r = sd_event_source_set_enabled(t->realtime_event_source, SD_EVENT_ONESHOT);
cbf60d0a
LP
554 if (r < 0)
555 goto fail;
556 } else {
6a0f1f6d
LP
557 r = sd_event_add_time(
558 UNIT(t)->manager->event,
559 &t->realtime_event_source,
dedabea4 560 t->wake_system ? CLOCK_REALTIME_ALARM : CLOCK_REALTIME,
6a0f1f6d
LP
561 t->next_elapse_realtime, t->accuracy_usec,
562 timer_dispatch, t);
cbf60d0a
LP
563 if (r < 0)
564 goto fail;
718db961 565
cbf60d0a
LP
566 (void) sd_event_source_set_description(t->realtime_event_source, "timer-realtime");
567 }
7dfbe2e3 568
718db961 569 } else if (t->realtime_event_source) {
718db961 570
06642d17 571 r = sd_event_source_set_enabled(t->realtime_event_source, SD_EVENT_OFF);
718db961
LP
572 if (r < 0)
573 goto fail;
574 }
871d7de4
LP
575
576 timer_set_state(t, TIMER_WAITING);
577 return;
578
579fail:
f2341e0a 580 log_unit_warning_errno(UNIT(t), r, "Failed to enter waiting state: %m");
067d72c9 581 timer_enter_dead(t, TIMER_FAILURE_RESOURCES);
871d7de4
LP
582}
583
584static void timer_enter_running(Timer *t) {
4afd3348 585 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
e903182e 586 Unit *trigger;
871d7de4 587 int r;
398ef8ba 588
871d7de4
LP
589 assert(t);
590
ba3e67a7 591 /* Don't start job if we are supposed to go down */
31afa0a4 592 if (unit_stop_pending(UNIT(t)))
ba3e67a7
LP
593 return;
594
e903182e
LP
595 trigger = UNIT_TRIGGER(UNIT(t));
596 if (!trigger) {
597 log_unit_error(UNIT(t), "Unit to trigger vanished.");
598 timer_enter_dead(t, TIMER_FAILURE_RESOURCES);
599 return;
600 }
601
50cbaba4 602 r = manager_add_job(UNIT(t)->manager, JOB_START, trigger, JOB_REPLACE, NULL, &error, NULL);
36697dc0 603 if (r < 0)
871d7de4
LP
604 goto fail;
605
06642d17
LP
606 dual_timestamp_get(&t->last_trigger);
607
472fc28f 608 if (t->stamp_path)
ee735086 609 touch_file(t->stamp_path, true, t->last_trigger.realtime, UID_INVALID, GID_INVALID, MODE_INVALID);
e41e1943 610
871d7de4
LP
611 timer_set_state(t, TIMER_RUNNING);
612 return;
613
614fail:
f2341e0a 615 log_unit_warning(UNIT(t), "Failed to queue unit startup job: %s", bus_error_message(&error, r));
067d72c9 616 timer_enter_dead(t, TIMER_FAILURE_RESOURCES);
871d7de4
LP
617}
618
619static int timer_start(Unit *u) {
620 Timer *t = TIMER(u);
779042e7 621 TimerValue *v;
07299350 622 int r;
871d7de4
LP
623
624 assert(t);
3742095b 625 assert(IN_SET(t->state, TIMER_DEAD, TIMER_FAILED));
01f78473 626
a4191c9f
LP
627 r = unit_test_trigger_loaded(u);
628 if (r < 0)
629 return r;
871d7de4 630
97a3f4ee 631 r = unit_test_start_limit(u);
07299350
LP
632 if (r < 0) {
633 timer_enter_dead(t, TIMER_FAILURE_START_LIMIT_HIT);
634 return r;
635 }
636
4b58153d
LP
637 r = unit_acquire_invocation_id(u);
638 if (r < 0)
639 return r;
640
06642d17
LP
641 t->last_trigger = DUAL_TIMESTAMP_NULL;
642
779042e7
MC
643 /* Reenable all timers that depend on unit activation time */
644 LIST_FOREACH(value, v, t->values)
645 if (v->base == TIMER_ACTIVE)
646 v->disabled = false;
647
06642d17
LP
648 if (t->stamp_path) {
649 struct stat st;
650
77542a79
LP
651 if (stat(t->stamp_path, &st) >= 0) {
652 usec_t ft;
653
654 /* Load the file timestamp, but only if it is actually in the past. If it is in the future,
655 * something is wrong with the system clock. */
656
657 ft = timespec_load(&st.st_mtim);
658 if (ft < now(CLOCK_REALTIME))
659 t->last_trigger.realtime = ft;
660 else {
661 char z[FORMAT_TIMESTAMP_MAX];
662
663 log_unit_warning(u, "Not using persistent file timestamp %s as it is in the future.",
664 format_timestamp(z, sizeof(z), ft));
665 }
666
667 } else if (errno == ENOENT)
2762ce2d 668 /* The timer has never run before, make sure a stamp file exists. */
4b58153d 669 (void) touch_file(t->stamp_path, true, USEC_INFINITY, UID_INVALID, GID_INVALID, MODE_INVALID);
06642d17
LP
670 }
671
067d72c9 672 t->result = TIMER_SUCCESS;
aa1f95d2 673 timer_enter_waiting(t, false);
82a2b6bb 674 return 1;
871d7de4
LP
675}
676
677static int timer_stop(Unit *u) {
678 Timer *t = TIMER(u);
679
680 assert(t);
3742095b 681 assert(IN_SET(t->state, TIMER_WAITING, TIMER_RUNNING, TIMER_ELAPSED));
871d7de4 682
067d72c9 683 timer_enter_dead(t, TIMER_SUCCESS);
82a2b6bb 684 return 1;
871d7de4
LP
685}
686
687static int timer_serialize(Unit *u, FILE *f, FDSet *fds) {
688 Timer *t = TIMER(u);
689
690 assert(u);
691 assert(f);
692 assert(fds);
693
d68c645b
LP
694 (void) serialize_item(f, "state", timer_state_to_string(t->state));
695 (void) serialize_item(f, "result", timer_result_to_string(t->result));
871d7de4 696
06642d17 697 if (t->last_trigger.realtime > 0)
d68c645b 698 (void) serialize_usec(f, "last-trigger-realtime", t->last_trigger.realtime);
06642d17
LP
699
700 if (t->last_trigger.monotonic > 0)
d68c645b 701 (void) serialize_usec(f, "last-trigger-monotonic", t->last_trigger.monotonic);
06642d17 702
871d7de4
LP
703 return 0;
704}
705
706static int timer_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
707 Timer *t = TIMER(u);
708
709 assert(u);
710 assert(key);
711 assert(value);
712 assert(fds);
713
714 if (streq(key, "state")) {
715 TimerState state;
716
36697dc0
LP
717 state = timer_state_from_string(value);
718 if (state < 0)
f2341e0a 719 log_unit_debug(u, "Failed to parse state value: %s", value);
871d7de4
LP
720 else
721 t->deserialized_state = state;
d68c645b 722
067d72c9
LP
723 } else if (streq(key, "result")) {
724 TimerResult f;
725
726 f = timer_result_from_string(value);
727 if (f < 0)
f2341e0a 728 log_unit_debug(u, "Failed to parse result value: %s", value);
067d72c9
LP
729 else if (f != TIMER_SUCCESS)
730 t->result = f;
06642d17 731
d68c645b
LP
732 } else if (streq(key, "last-trigger-realtime"))
733 (void) deserialize_usec(value, &t->last_trigger.realtime);
734 else if (streq(key, "last-trigger-monotonic"))
735 (void) deserialize_usec(value, &t->last_trigger.monotonic);
736 else
f2341e0a 737 log_unit_debug(u, "Unknown serialization key: %s", key);
871d7de4
LP
738
739 return 0;
034c6ed7
LP
740}
741
44a6b1b6 742_pure_ static UnitActiveState timer_active_state(Unit *u) {
871d7de4
LP
743 assert(u);
744
745 return state_translation_table[TIMER(u)->state];
746}
747
44a6b1b6 748_pure_ static const char *timer_sub_state_to_string(Unit *u) {
871d7de4
LP
749 assert(u);
750
751 return timer_state_to_string(TIMER(u)->state);
752}
753
718db961
LP
754static int timer_dispatch(sd_event_source *s, uint64_t usec, void *userdata) {
755 Timer *t = TIMER(userdata);
871d7de4
LP
756
757 assert(t);
5cb5a6ff 758
871d7de4 759 if (t->state != TIMER_WAITING)
718db961 760 return 0;
5cb5a6ff 761
f2341e0a 762 log_unit_debug(UNIT(t), "Timer elapsed.");
871d7de4 763 timer_enter_running(t);
718db961 764 return 0;
5cb5a6ff
LP
765}
766
3ecaa09b
LP
767static void timer_trigger_notify(Unit *u, Unit *other) {
768 Timer *t = TIMER(u);
769 TimerValue *v;
871d7de4 770
3ecaa09b
LP
771 assert(u);
772 assert(other);
871d7de4 773
0377cd29
LP
774 /* Filter out invocations with bogus state */
775 assert(UNIT_IS_LOAD_COMPLETE(other->load_state));
871d7de4 776
3ecaa09b
LP
777 /* Reenable all timers that depend on unit state */
778 LIST_FOREACH(value, v, t->values)
3742095b 779 if (IN_SET(v->base, TIMER_UNIT_ACTIVE, TIMER_UNIT_INACTIVE))
3ecaa09b 780 v->disabled = false;
01f78473 781
3ecaa09b 782 switch (t->state) {
871d7de4 783
3ecaa09b
LP
784 case TIMER_WAITING:
785 case TIMER_ELAPSED:
871d7de4 786
3ecaa09b 787 /* Recalculate sleep time */
aa1f95d2 788 timer_enter_waiting(t, false);
3ecaa09b 789 break;
871d7de4 790
3ecaa09b 791 case TIMER_RUNNING:
871d7de4 792
3ecaa09b 793 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other))) {
f2341e0a 794 log_unit_debug(UNIT(t), "Got notified about unit deactivation.");
aa1f95d2 795 timer_enter_waiting(t, false);
3ecaa09b
LP
796 }
797 break;
871d7de4 798
3ecaa09b
LP
799 case TIMER_DEAD:
800 case TIMER_FAILED:
801 break;
871d7de4 802
3ecaa09b
LP
803 default:
804 assert_not_reached("Unknown timer state");
871d7de4 805 }
871d7de4
LP
806}
807
fdf20a31 808static void timer_reset_failed(Unit *u) {
5632e374
LP
809 Timer *t = TIMER(u);
810
811 assert(t);
812
fdf20a31 813 if (t->state == TIMER_FAILED)
5632e374
LP
814 timer_set_state(t, TIMER_DEAD);
815
067d72c9 816 t->result = TIMER_SUCCESS;
5632e374
LP
817}
818
8742514c
LP
819static void timer_time_change(Unit *u) {
820 Timer *t = TIMER(u);
13f512d3 821 usec_t ts;
8742514c
LP
822
823 assert(u);
824
825 if (t->state != TIMER_WAITING)
826 return;
827
13f512d3
AJ
828 /* If we appear to have triggered in the future, the system clock must
829 * have been set backwards. So let's rewind our own clock and allow
830 * the future trigger(s) to happen again :). Exactly the same as when
831 * you start a timer unit with Persistent=yes. */
832 ts = now(CLOCK_REALTIME);
833 if (t->last_trigger.realtime > ts)
834 t->last_trigger.realtime = ts;
835
efebb613
LP
836 if (t->on_clock_change) {
837 log_unit_debug(u, "Time change, triggering activation.");
838 timer_enter_running(t);
839 } else {
840 log_unit_debug(u, "Time change, recalculating next elapse.");
841 timer_enter_waiting(t, true);
842 }
8742514c
LP
843}
844
bbf5fd8e
LP
845static void timer_timezone_change(Unit *u) {
846 Timer *t = TIMER(u);
847
848 assert(u);
849
850 if (t->state != TIMER_WAITING)
851 return;
852
efebb613
LP
853 if (t->on_timezone_change) {
854 log_unit_debug(u, "Timezone change, triggering activation.");
855 timer_enter_running(t);
856 } else {
857 log_unit_debug(u, "Timezone change, recalculating next elapse.");
858 timer_enter_waiting(t, false);
859 }
bbf5fd8e
LP
860}
861
89f6fe7b
LP
862static int timer_clean(Unit *u, ExecCleanMask mask) {
863 Timer *t = TIMER(u);
864 int r;
865
866 assert(t);
867 assert(mask != 0);
868
869 if (t->state != TIMER_DEAD)
870 return -EBUSY;
871
872 if (!IN_SET(mask, EXEC_CLEAN_STATE))
873 return -EUNATCH;
874
875 r = timer_setup_persistent(t);
876 if (r < 0)
877 return r;
878
879 if (!t->stamp_path)
880 return -EUNATCH;
881
882 if (unlink(t->stamp_path) && errno != ENOENT)
883 return log_unit_error_errno(u, errno, "Failed to clean stamp file of timer: %m");
884
885 return 0;
886}
887
888static int timer_can_clean(Unit *u, ExecCleanMask *ret) {
889 Timer *t = TIMER(u);
890
891 assert(t);
892
893 *ret = t->persistent ? EXEC_CLEAN_STATE : 0;
894 return 0;
895}
896
871d7de4 897static const char* const timer_base_table[_TIMER_BASE_MAX] = {
03fae018
LP
898 [TIMER_ACTIVE] = "OnActiveSec",
899 [TIMER_BOOT] = "OnBootSec",
900 [TIMER_STARTUP] = "OnStartupSec",
901 [TIMER_UNIT_ACTIVE] = "OnUnitActiveSec",
36697dc0
LP
902 [TIMER_UNIT_INACTIVE] = "OnUnitInactiveSec",
903 [TIMER_CALENDAR] = "OnCalendar"
871d7de4
LP
904};
905
906DEFINE_STRING_TABLE_LOOKUP(timer_base, TimerBase);
907
067d72c9
LP
908static const char* const timer_result_table[_TIMER_RESULT_MAX] = {
909 [TIMER_SUCCESS] = "success",
07299350
LP
910 [TIMER_FAILURE_RESOURCES] = "resources",
911 [TIMER_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
067d72c9
LP
912};
913
914DEFINE_STRING_TABLE_LOOKUP(timer_result, TimerResult);
915
87f0e418 916const UnitVTable timer_vtable = {
7d17cfbc 917 .object_size = sizeof(Timer),
718db961 918
f975e971
LP
919 .sections =
920 "Unit\0"
921 "Timer\0"
922 "Install\0",
d8a812d1 923 .private_section = "Timer",
5cb5a6ff 924
c80a9a33
LP
925 .can_transient = true,
926 .can_fail = true,
927 .can_trigger = true,
928
871d7de4 929 .init = timer_init,
034c6ed7 930 .done = timer_done,
871d7de4
LP
931 .load = timer_load,
932
933 .coldplug = timer_coldplug,
934
935 .dump = timer_dump,
936
937 .start = timer_start,
938 .stop = timer_stop,
939
89f6fe7b
LP
940 .clean = timer_clean,
941 .can_clean = timer_can_clean,
942
871d7de4
LP
943 .serialize = timer_serialize,
944 .deserialize_item = timer_deserialize_item,
945
946 .active_state = timer_active_state,
947 .sub_state_to_string = timer_sub_state_to_string,
948
3ecaa09b
LP
949 .trigger_notify = timer_trigger_notify,
950
fdf20a31 951 .reset_failed = timer_reset_failed,
8742514c 952 .time_change = timer_time_change,
bbf5fd8e 953 .timezone_change = timer_timezone_change,
5632e374 954
d8a812d1 955 .bus_set_property = bus_timer_set_property,
5cb5a6ff 956};