]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/timer.c
Merge pull request #6746 from yuwata/parse-empty-string
[thirdparty/systemd.git] / src / core / timer.c
CommitLineData
a7334b09
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 14 Lesser General Public License for more details.
a7334b09 15
5430f7f2 16 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
d46de8a1
LP
20#include <errno.h>
21
b5efdb8a 22#include "alloc-util.h"
07630cea
LP
23#include "bus-error.h"
24#include "bus-util.h"
871d7de4 25#include "dbus-timer.h"
f4f15635 26#include "fs-util.h"
6bedfcbb 27#include "parse-util.h"
744c7693 28#include "random-util.h"
a40eb732 29#include "special.h"
8b43440b 30#include "string-table.h"
07630cea 31#include "string-util.h"
b1d4f8e1 32#include "timer.h"
07630cea
LP
33#include "unit-name.h"
34#include "unit.h"
b1d4f8e1 35#include "user-util.h"
c1d9ba99 36#include "virt.h"
871d7de4
LP
37
38static const UnitActiveState state_translation_table[_TIMER_STATE_MAX] = {
39 [TIMER_DEAD] = UNIT_INACTIVE,
40 [TIMER_WAITING] = UNIT_ACTIVE,
41 [TIMER_RUNNING] = UNIT_ACTIVE,
42 [TIMER_ELAPSED] = UNIT_ACTIVE,
fdf20a31 43 [TIMER_FAILED] = UNIT_FAILED
871d7de4
LP
44};
45
718db961
LP
46static int timer_dispatch(sd_event_source *s, uint64_t usec, void *userdata);
47
871d7de4
LP
48static void timer_init(Unit *u) {
49 Timer *t = TIMER(u);
50
51 assert(u);
ac155bb8 52 assert(u->load_state == UNIT_STUB);
871d7de4 53
3a43da28
KS
54 t->next_elapse_monotonic_or_boottime = USEC_INFINITY;
55 t->next_elapse_realtime = USEC_INFINITY;
bd8f585b 56 t->accuracy_usec = u->manager->default_timer_accuracy_usec;
3e0c30ac 57 t->remain_after_elapse = true;
871d7de4 58}
5cb5a6ff 59
74051b9b 60void timer_free_values(Timer *t) {
871d7de4
LP
61 TimerValue *v;
62
63 assert(t);
64
65 while ((v = t->values)) {
71fda00f 66 LIST_REMOVE(value, t->values, v);
3e044c49 67 calendar_spec_free(v->calendar_spec);
871d7de4
LP
68 free(v);
69 }
74051b9b
LP
70}
71
72static void timer_done(Unit *u) {
73 Timer *t = TIMER(u);
74
75 assert(t);
76
77 timer_free_values(t);
871d7de4 78
718db961
LP
79 t->monotonic_event_source = sd_event_source_unref(t->monotonic_event_source);
80 t->realtime_event_source = sd_event_source_unref(t->realtime_event_source);
06642d17
LP
81
82 free(t->stamp_path);
871d7de4
LP
83}
84
85static int timer_verify(Timer *t) {
86 assert(t);
87
1124fe6f 88 if (UNIT(t)->load_state != UNIT_LOADED)
871d7de4
LP
89 return 0;
90
91 if (!t->values) {
f2341e0a 92 log_unit_error(UNIT(t), "Timer unit lacks value setting. Refusing.");
871d7de4
LP
93 return -EINVAL;
94 }
95
96 return 0;
97}
98
6c155fe3
LP
99static int timer_add_default_dependencies(Timer *t) {
100 int r;
19f8d037 101 TimerValue *v;
6c155fe3
LP
102
103 assert(t);
104
4c9ea260
LP
105 if (!UNIT(t)->default_dependencies)
106 return 0;
107
e3d84721
LP
108 r = unit_add_dependency_by_name(UNIT(t), UNIT_BEFORE, SPECIAL_TIMERS_TARGET, NULL, true);
109 if (r < 0)
110 return r;
2a77d31d 111
463d0d15 112 if (MANAGER_IS_SYSTEM(UNIT(t)->manager)) {
36697dc0
LP
113 r = unit_add_two_dependencies_by_name(UNIT(t), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SYSINIT_TARGET, NULL, true);
114 if (r < 0)
6c155fe3 115 return r;
19f8d037
TGR
116
117 LIST_FOREACH(value, v, t->values) {
118 if (v->base == TIMER_CALENDAR) {
119 r = unit_add_dependency_by_name(UNIT(t), UNIT_AFTER, SPECIAL_TIME_SYNC_TARGET, NULL, true);
120 if (r < 0)
121 return r;
122 break;
123 }
124 }
2a77d31d 125 }
6c155fe3 126
ead8e478 127 return unit_add_two_dependencies_by_name(UNIT(t), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true);
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
LP
139
140 r = unit_require_mounts_for(UNIT(t), "/var/lib/systemd/timers");
141 if (r < 0)
142 return r;
143
144 t->stamp_path = strappend("/var/lib/systemd/timers/stamp-", UNIT(t)->id);
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
871d7de4
LP
169static int timer_load(Unit *u) {
170 Timer *t = TIMER(u);
171 int r;
172
173 assert(u);
ac155bb8 174 assert(u->load_state == UNIT_STUB);
871d7de4 175
36697dc0
LP
176 r = unit_load_fragment_and_dropin(u);
177 if (r < 0)
871d7de4
LP
178 return r;
179
ac155bb8 180 if (u->load_state == UNIT_LOADED) {
871d7de4 181
3ecaa09b 182 if (set_isempty(u->dependencies[UNIT_TRIGGERS])) {
57020a3a
LP
183 Unit *x;
184
185 r = unit_load_related_unit(u, ".service", &x);
186 if (r < 0)
871d7de4
LP
187 return r;
188
3ecaa09b
LP
189 r = unit_add_two_dependencies(u, UNIT_BEFORE, UNIT_TRIGGERS, x, true);
190 if (r < 0)
191 return r;
57020a3a
LP
192 }
193
06642d17
LP
194 r = timer_setup_persistent(t);
195 if (r < 0)
196 return r;
197
4c9ea260
LP
198 r = timer_add_default_dependencies(t);
199 if (r < 0)
200 return r;
871d7de4
LP
201 }
202
203 return timer_verify(t);
204}
205
206static void timer_dump(Unit *u, FILE *f, const char *prefix) {
9f5eb56a 207 char buf[FORMAT_TIMESPAN_MAX];
871d7de4 208 Timer *t = TIMER(u);
3ecaa09b 209 Unit *trigger;
871d7de4 210 TimerValue *v;
034c6ed7 211
3ecaa09b
LP
212 trigger = UNIT_TRIGGER(u);
213
871d7de4
LP
214 fprintf(f,
215 "%sTimer State: %s\n"
067d72c9 216 "%sResult: %s\n"
9f5eb56a 217 "%sUnit: %s\n"
dedabea4
LP
218 "%sPersistent: %s\n"
219 "%sWakeSystem: %s\n"
3e0c30ac
LP
220 "%sAccuracy: %s\n"
221 "%sRemainAfterElapse: %s\n",
871d7de4 222 prefix, timer_state_to_string(t->state),
067d72c9 223 prefix, timer_result_to_string(t->result),
9f5eb56a 224 prefix, trigger ? trigger->id : "n/a",
dedabea4
LP
225 prefix, yes_no(t->persistent),
226 prefix, yes_no(t->wake_system),
3e0c30ac
LP
227 prefix, format_timespan(buf, sizeof(buf), t->accuracy_usec, 1),
228 prefix, yes_no(t->remain_after_elapse));
871d7de4 229
36697dc0
LP
230 LIST_FOREACH(value, v, t->values) {
231
232 if (v->base == TIMER_CALENDAR) {
233 _cleanup_free_ char *p = NULL;
234
25cb94d4 235 (void) calendar_spec_to_string(v->calendar_spec, &p);
36697dc0
LP
236
237 fprintf(f,
238 "%s%s: %s\n",
239 prefix,
240 timer_base_to_string(v->base),
241 strna(p));
242 } else {
243 char timespan1[FORMAT_TIMESPAN_MAX];
244
245 fprintf(f,
246 "%s%s: %s\n",
247 prefix,
248 timer_base_to_string(v->base),
b1d6dcf5 249 format_timespan(timespan1, sizeof(timespan1), v->value, 0));
36697dc0
LP
250 }
251 }
871d7de4
LP
252}
253
254static void timer_set_state(Timer *t, TimerState state) {
255 TimerState old_state;
034c6ed7 256 assert(t);
871d7de4
LP
257
258 old_state = t->state;
259 t->state = state;
260
36697dc0 261 if (state != TIMER_WAITING) {
718db961
LP
262 t->monotonic_event_source = sd_event_source_unref(t->monotonic_event_source);
263 t->realtime_event_source = sd_event_source_unref(t->realtime_event_source);
6e2c9ce1
ZJS
264 t->next_elapse_monotonic_or_boottime = USEC_INFINITY;
265 t->next_elapse_realtime = USEC_INFINITY;
36697dc0 266 }
871d7de4
LP
267
268 if (state != old_state)
f2341e0a 269 log_unit_debug(UNIT(t), "Changed %s -> %s", timer_state_to_string(old_state), timer_state_to_string(state));
871d7de4 270
e2f3b44c 271 unit_notify(UNIT(t), state_translation_table[old_state], state_translation_table[state], true);
871d7de4
LP
272}
273
274static void timer_enter_waiting(Timer *t, bool initial);
275
be847e82 276static int timer_coldplug(Unit *u) {
871d7de4
LP
277 Timer *t = TIMER(u);
278
279 assert(t);
280 assert(t->state == TIMER_DEAD);
281
3e0c30ac
LP
282 if (t->deserialized_state == t->state)
283 return 0;
871d7de4 284
3e0c30ac
LP
285 if (t->deserialized_state == TIMER_WAITING)
286 timer_enter_waiting(t, false);
287 else
288 timer_set_state(t, t->deserialized_state);
871d7de4
LP
289
290 return 0;
291}
292
067d72c9 293static void timer_enter_dead(Timer *t, TimerResult f) {
871d7de4
LP
294 assert(t);
295
a0fef983 296 if (t->result == TIMER_SUCCESS)
067d72c9 297 t->result = f;
871d7de4 298
067d72c9 299 timer_set_state(t, t->result != TIMER_SUCCESS ? TIMER_FAILED : TIMER_DEAD);
871d7de4
LP
300}
301
3e0c30ac
LP
302static void timer_enter_elapsed(Timer *t, bool leave_around) {
303 assert(t);
304
305 /* If a unit is marked with RemainAfterElapse=yes we leave it
306 * around even after it elapsed once, so that starting it
307 * later again does not necessarily mean immediate
308 * retriggering. We unconditionally leave units with
309 * TIMER_UNIT_ACTIVE or TIMER_UNIT_INACTIVE triggers around,
310 * since they might be restarted automatically at any time
311 * later on. */
312
313 if (t->remain_after_elapse || leave_around)
314 timer_set_state(t, TIMER_ELAPSED);
315 else
316 timer_enter_dead(t, TIMER_SUCCESS);
317}
318
744c7693
LP
319static void add_random(Timer *t, usec_t *v) {
320 char s[FORMAT_TIMESPAN_MAX];
321 usec_t add;
322
323 assert(t);
3f51aec8 324 assert(v);
744c7693
LP
325
326 if (t->random_usec == 0)
327 return;
328 if (*v == USEC_INFINITY)
329 return;
330
331 add = random_u64() % t->random_usec;
332
333 if (*v + add < *v) /* overflow */
334 *v = (usec_t) -2; /* Highest possible value, that is not USEC_INFINITY */
335 else
336 *v += add;
337
382852fd 338 log_unit_debug(UNIT(t), "Adding %s random time.", format_timespan(s, sizeof(s), add, 0));
744c7693
LP
339}
340
871d7de4 341static void timer_enter_waiting(Timer *t, bool initial) {
36697dc0 342 bool found_monotonic = false, found_realtime = false;
3e0c30ac 343 bool leave_around = false;
c54be90b
LP
344 triple_timestamp ts;
345 usec_t base = 0;
dedabea4 346 TimerValue *v;
e903182e 347 Unit *trigger;
871d7de4
LP
348 int r;
349
e903182e
LP
350 assert(t);
351
352 trigger = UNIT_TRIGGER(UNIT(t));
353 if (!trigger) {
354 log_unit_error(UNIT(t), "Unit to trigger vanished.");
355 timer_enter_dead(t, TIMER_FAILURE_RESOURCES);
356 return;
357 }
358
c54be90b 359 triple_timestamp_get(&ts);
dedabea4 360 t->next_elapse_monotonic_or_boottime = t->next_elapse_realtime = 0;
871d7de4
LP
361
362 LIST_FOREACH(value, v, t->values) {
363
364 if (v->disabled)
365 continue;
366
36697dc0 367 if (v->base == TIMER_CALENDAR) {
06642d17
LP
368 usec_t b;
369
370 /* If we know the last time this was
371 * triggered, schedule the job based relative
372 * to that. If we don't just start from
373 * now. */
36697dc0 374
c54be90b 375 b = t->last_trigger.realtime > 0 ? t->last_trigger.realtime : ts.realtime;
06642d17
LP
376
377 r = calendar_spec_next_usec(v->calendar_spec, b, &v->next_elapse);
36697dc0
LP
378 if (r < 0)
379 continue;
380
36697dc0
LP
381 if (!found_realtime)
382 t->next_elapse_realtime = v->next_elapse;
10717a1a 383 else
36697dc0 384 t->next_elapse_realtime = MIN(t->next_elapse_realtime, v->next_elapse);
871d7de4 385
36697dc0 386 found_realtime = true;
871d7de4 387
36697dc0 388 } else {
c54be90b 389
36697dc0 390 switch (v->base) {
871d7de4 391
36697dc0
LP
392 case TIMER_ACTIVE:
393 if (state_translation_table[t->state] == UNIT_ACTIVE)
394 base = UNIT(t)->inactive_exit_timestamp.monotonic;
395 else
c54be90b 396 base = ts.monotonic;
36697dc0 397 break;
871d7de4 398
36697dc0 399 case TIMER_BOOT:
c1d9ba99
MS
400 if (detect_container() <= 0) {
401 /* CLOCK_MONOTONIC equals the uptime on Linux */
402 base = 0;
403 break;
404 }
405 /* In a container we don't want to include the time the host
406 * was already up when the container started, so count from
ec251fe7
ZJS
407 * our own startup. */
408 /* fall through */
36697dc0
LP
409 case TIMER_STARTUP:
410 base = UNIT(t)->manager->userspace_timestamp.monotonic;
411 break;
871d7de4 412
36697dc0 413 case TIMER_UNIT_ACTIVE:
3e0c30ac 414 leave_around = true;
e903182e 415 base = trigger->inactive_exit_timestamp.monotonic;
e41e1943
LP
416
417 if (base <= 0)
06642d17 418 base = t->last_trigger.monotonic;
e41e1943
LP
419
420 if (base <= 0)
36697dc0 421 continue;
871d7de4 422
36697dc0 423 break;
871d7de4 424
36697dc0 425 case TIMER_UNIT_INACTIVE:
3e0c30ac 426 leave_around = true;
e903182e 427 base = trigger->inactive_enter_timestamp.monotonic;
e41e1943
LP
428
429 if (base <= 0)
06642d17 430 base = t->last_trigger.monotonic;
e41e1943
LP
431
432 if (base <= 0)
36697dc0 433 continue;
871d7de4 434
36697dc0 435 break;
871d7de4 436
36697dc0
LP
437 default:
438 assert_not_reached("Unknown timer base");
439 }
871d7de4 440
c54be90b 441 v->next_elapse = usec_add(usec_shift_clock(base, CLOCK_MONOTONIC, TIMER_MONOTONIC_CLOCK(t)), v->value);
36697dc0 442
c54be90b
LP
443 if (!initial &&
444 v->next_elapse < triple_timestamp_by_clock(&ts, TIMER_MONOTONIC_CLOCK(t)) &&
445 IN_SET(v->base, TIMER_ACTIVE, TIMER_BOOT, TIMER_STARTUP)) {
e41e1943 446 /* This is a one time trigger, disable it now */
36697dc0
LP
447 v->disabled = true;
448 continue;
449 }
450
451 if (!found_monotonic)
dedabea4 452 t->next_elapse_monotonic_or_boottime = v->next_elapse;
36697dc0 453 else
dedabea4 454 t->next_elapse_monotonic_or_boottime = MIN(t->next_elapse_monotonic_or_boottime, v->next_elapse);
36697dc0
LP
455
456 found_monotonic = true;
457 }
871d7de4
LP
458 }
459
36697dc0 460 if (!found_monotonic && !found_realtime) {
f2341e0a 461 log_unit_debug(UNIT(t), "Timer is elapsed.");
3e0c30ac 462 timer_enter_elapsed(t, leave_around);
871d7de4
LP
463 return;
464 }
465
36697dc0
LP
466 if (found_monotonic) {
467 char buf[FORMAT_TIMESPAN_MAX];
3e0c30ac 468 usec_t left;
dedabea4 469
744c7693
LP
470 add_random(t, &t->next_elapse_monotonic_or_boottime);
471
c54be90b 472 left = usec_sub_unsigned(t->next_elapse_monotonic_or_boottime, triple_timestamp_by_clock(&ts, TIMER_MONOTONIC_CLOCK(t)));
3e0c30ac 473 log_unit_debug(UNIT(t), "Monotonic timer elapses in %s.", format_timespan(buf, sizeof(buf), left, 0));
871d7de4 474
718db961 475 if (t->monotonic_event_source) {
dedabea4 476 r = sd_event_source_set_time(t->monotonic_event_source, t->next_elapse_monotonic_or_boottime);
718db961
LP
477 if (r < 0)
478 goto fail;
479
480 r = sd_event_source_set_enabled(t->monotonic_event_source, SD_EVENT_ONESHOT);
cbf60d0a
LP
481 if (r < 0)
482 goto fail;
483 } else {
484
6a0f1f6d
LP
485 r = sd_event_add_time(
486 UNIT(t)->manager->event,
487 &t->monotonic_event_source,
dedabea4
LP
488 t->wake_system ? CLOCK_BOOTTIME_ALARM : CLOCK_MONOTONIC,
489 t->next_elapse_monotonic_or_boottime, t->accuracy_usec,
6a0f1f6d 490 timer_dispatch, t);
cbf60d0a
LP
491 if (r < 0)
492 goto fail;
718db961 493
cbf60d0a
LP
494 (void) sd_event_source_set_description(t->monotonic_event_source, "timer-monotonic");
495 }
7dfbe2e3 496
718db961 497 } else if (t->monotonic_event_source) {
718db961 498
06642d17 499 r = sd_event_source_set_enabled(t->monotonic_event_source, SD_EVENT_OFF);
718db961
LP
500 if (r < 0)
501 goto fail;
502 }
36697dc0
LP
503
504 if (found_realtime) {
505 char buf[FORMAT_TIMESTAMP_MAX];
744c7693
LP
506
507 add_random(t, &t->next_elapse_realtime);
508
f2341e0a 509 log_unit_debug(UNIT(t), "Realtime timer elapses at %s.", format_timestamp(buf, sizeof(buf), t->next_elapse_realtime));
36697dc0 510
718db961
LP
511 if (t->realtime_event_source) {
512 r = sd_event_source_set_time(t->realtime_event_source, t->next_elapse_realtime);
513 if (r < 0)
514 goto fail;
515
516 r = sd_event_source_set_enabled(t->realtime_event_source, SD_EVENT_ONESHOT);
cbf60d0a
LP
517 if (r < 0)
518 goto fail;
519 } else {
6a0f1f6d
LP
520 r = sd_event_add_time(
521 UNIT(t)->manager->event,
522 &t->realtime_event_source,
dedabea4 523 t->wake_system ? CLOCK_REALTIME_ALARM : CLOCK_REALTIME,
6a0f1f6d
LP
524 t->next_elapse_realtime, t->accuracy_usec,
525 timer_dispatch, t);
cbf60d0a
LP
526 if (r < 0)
527 goto fail;
718db961 528
cbf60d0a
LP
529 (void) sd_event_source_set_description(t->realtime_event_source, "timer-realtime");
530 }
7dfbe2e3 531
718db961 532 } else if (t->realtime_event_source) {
718db961 533
06642d17 534 r = sd_event_source_set_enabled(t->realtime_event_source, SD_EVENT_OFF);
718db961
LP
535 if (r < 0)
536 goto fail;
537 }
871d7de4
LP
538
539 timer_set_state(t, TIMER_WAITING);
540 return;
541
542fail:
f2341e0a 543 log_unit_warning_errno(UNIT(t), r, "Failed to enter waiting state: %m");
067d72c9 544 timer_enter_dead(t, TIMER_FAILURE_RESOURCES);
871d7de4
LP
545}
546
547static void timer_enter_running(Timer *t) {
4afd3348 548 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
e903182e 549 Unit *trigger;
871d7de4 550 int r;
398ef8ba 551
871d7de4
LP
552 assert(t);
553
ba3e67a7 554 /* Don't start job if we are supposed to go down */
31afa0a4 555 if (unit_stop_pending(UNIT(t)))
ba3e67a7
LP
556 return;
557
e903182e
LP
558 trigger = UNIT_TRIGGER(UNIT(t));
559 if (!trigger) {
560 log_unit_error(UNIT(t), "Unit to trigger vanished.");
561 timer_enter_dead(t, TIMER_FAILURE_RESOURCES);
562 return;
563 }
564
565 r = manager_add_job(UNIT(t)->manager, JOB_START, trigger, JOB_REPLACE, &error, NULL);
36697dc0 566 if (r < 0)
871d7de4
LP
567 goto fail;
568
06642d17
LP
569 dual_timestamp_get(&t->last_trigger);
570
472fc28f 571 if (t->stamp_path)
ee735086 572 touch_file(t->stamp_path, true, t->last_trigger.realtime, UID_INVALID, GID_INVALID, MODE_INVALID);
e41e1943 573
871d7de4
LP
574 timer_set_state(t, TIMER_RUNNING);
575 return;
576
577fail:
f2341e0a 578 log_unit_warning(UNIT(t), "Failed to queue unit startup job: %s", bus_error_message(&error, r));
067d72c9 579 timer_enter_dead(t, TIMER_FAILURE_RESOURCES);
871d7de4
LP
580}
581
582static int timer_start(Unit *u) {
583 Timer *t = TIMER(u);
779042e7 584 TimerValue *v;
e903182e 585 Unit *trigger;
07299350 586 int r;
871d7de4
LP
587
588 assert(t);
fdf20a31 589 assert(t->state == TIMER_DEAD || t->state == TIMER_FAILED);
01f78473 590
e903182e
LP
591 trigger = UNIT_TRIGGER(u);
592 if (!trigger || trigger->load_state != UNIT_LOADED) {
593 log_unit_error(u, "Refusing to start, unit to trigger not loaded.");
01f78473 594 return -ENOENT;
e903182e 595 }
871d7de4 596
07299350
LP
597 r = unit_start_limit_test(u);
598 if (r < 0) {
599 timer_enter_dead(t, TIMER_FAILURE_START_LIMIT_HIT);
600 return r;
601 }
602
4b58153d
LP
603 r = unit_acquire_invocation_id(u);
604 if (r < 0)
605 return r;
606
06642d17
LP
607 t->last_trigger = DUAL_TIMESTAMP_NULL;
608
779042e7
MC
609 /* Reenable all timers that depend on unit activation time */
610 LIST_FOREACH(value, v, t->values)
611 if (v->base == TIMER_ACTIVE)
612 v->disabled = false;
613
06642d17
LP
614 if (t->stamp_path) {
615 struct stat st;
616
617 if (stat(t->stamp_path, &st) >= 0)
618 t->last_trigger.realtime = timespec_load(&st.st_atim);
472fc28f
TB
619 else if (errno == ENOENT)
620 /* The timer has never run before,
621 * make sure a stamp file exists.
622 */
4b58153d 623 (void) touch_file(t->stamp_path, true, USEC_INFINITY, UID_INVALID, GID_INVALID, MODE_INVALID);
06642d17
LP
624 }
625
067d72c9 626 t->result = TIMER_SUCCESS;
871d7de4 627 timer_enter_waiting(t, true);
82a2b6bb 628 return 1;
871d7de4
LP
629}
630
631static int timer_stop(Unit *u) {
632 Timer *t = TIMER(u);
633
634 assert(t);
635 assert(t->state == TIMER_WAITING || t->state == TIMER_RUNNING || t->state == TIMER_ELAPSED);
636
067d72c9 637 timer_enter_dead(t, TIMER_SUCCESS);
82a2b6bb 638 return 1;
871d7de4
LP
639}
640
641static int timer_serialize(Unit *u, FILE *f, FDSet *fds) {
642 Timer *t = TIMER(u);
643
644 assert(u);
645 assert(f);
646 assert(fds);
647
648 unit_serialize_item(u, f, "state", timer_state_to_string(t->state));
067d72c9 649 unit_serialize_item(u, f, "result", timer_result_to_string(t->result));
871d7de4 650
06642d17
LP
651 if (t->last_trigger.realtime > 0)
652 unit_serialize_item_format(u, f, "last-trigger-realtime", "%" PRIu64, t->last_trigger.realtime);
653
654 if (t->last_trigger.monotonic > 0)
655 unit_serialize_item_format(u, f, "last-trigger-monotonic", "%" PRIu64, t->last_trigger.monotonic);
656
871d7de4
LP
657 return 0;
658}
659
660static int timer_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
661 Timer *t = TIMER(u);
06642d17 662 int r;
871d7de4
LP
663
664 assert(u);
665 assert(key);
666 assert(value);
667 assert(fds);
668
669 if (streq(key, "state")) {
670 TimerState state;
671
36697dc0
LP
672 state = timer_state_from_string(value);
673 if (state < 0)
f2341e0a 674 log_unit_debug(u, "Failed to parse state value: %s", value);
871d7de4
LP
675 else
676 t->deserialized_state = state;
067d72c9
LP
677 } else if (streq(key, "result")) {
678 TimerResult f;
679
680 f = timer_result_from_string(value);
681 if (f < 0)
f2341e0a 682 log_unit_debug(u, "Failed to parse result value: %s", value);
067d72c9
LP
683 else if (f != TIMER_SUCCESS)
684 t->result = f;
06642d17
LP
685 } else if (streq(key, "last-trigger-realtime")) {
686
687 r = safe_atou64(value, &t->last_trigger.realtime);
688 if (r < 0)
f2341e0a 689 log_unit_debug(u, "Failed to parse last-trigger-realtime value: %s", value);
06642d17
LP
690
691 } else if (streq(key, "last-trigger-monotonic")) {
692
693 r = safe_atou64(value, &t->last_trigger.monotonic);
694 if (r < 0)
f2341e0a 695 log_unit_debug(u, "Failed to parse last-trigger-monotonic value: %s", value);
067d72c9 696
871d7de4 697 } else
f2341e0a 698 log_unit_debug(u, "Unknown serialization key: %s", key);
871d7de4
LP
699
700 return 0;
034c6ed7
LP
701}
702
44a6b1b6 703_pure_ static UnitActiveState timer_active_state(Unit *u) {
871d7de4
LP
704 assert(u);
705
706 return state_translation_table[TIMER(u)->state];
707}
708
44a6b1b6 709_pure_ static const char *timer_sub_state_to_string(Unit *u) {
871d7de4
LP
710 assert(u);
711
712 return timer_state_to_string(TIMER(u)->state);
713}
714
718db961
LP
715static int timer_dispatch(sd_event_source *s, uint64_t usec, void *userdata) {
716 Timer *t = TIMER(userdata);
871d7de4
LP
717
718 assert(t);
5cb5a6ff 719
871d7de4 720 if (t->state != TIMER_WAITING)
718db961 721 return 0;
5cb5a6ff 722
f2341e0a 723 log_unit_debug(UNIT(t), "Timer elapsed.");
871d7de4 724 timer_enter_running(t);
718db961 725 return 0;
5cb5a6ff
LP
726}
727
3ecaa09b
LP
728static void timer_trigger_notify(Unit *u, Unit *other) {
729 Timer *t = TIMER(u);
730 TimerValue *v;
871d7de4 731
3ecaa09b
LP
732 assert(u);
733 assert(other);
871d7de4 734
3ecaa09b
LP
735 if (other->load_state != UNIT_LOADED)
736 return;
871d7de4 737
3ecaa09b
LP
738 /* Reenable all timers that depend on unit state */
739 LIST_FOREACH(value, v, t->values)
740 if (v->base == TIMER_UNIT_ACTIVE ||
741 v->base == TIMER_UNIT_INACTIVE)
742 v->disabled = false;
01f78473 743
3ecaa09b 744 switch (t->state) {
871d7de4 745
3ecaa09b
LP
746 case TIMER_WAITING:
747 case TIMER_ELAPSED:
871d7de4 748
3ecaa09b
LP
749 /* Recalculate sleep time */
750 timer_enter_waiting(t, false);
751 break;
871d7de4 752
3ecaa09b 753 case TIMER_RUNNING:
871d7de4 754
3ecaa09b 755 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other))) {
f2341e0a 756 log_unit_debug(UNIT(t), "Got notified about unit deactivation.");
871d7de4 757 timer_enter_waiting(t, false);
3ecaa09b
LP
758 }
759 break;
871d7de4 760
3ecaa09b
LP
761 case TIMER_DEAD:
762 case TIMER_FAILED:
763 break;
871d7de4 764
3ecaa09b
LP
765 default:
766 assert_not_reached("Unknown timer state");
871d7de4 767 }
871d7de4
LP
768}
769
fdf20a31 770static void timer_reset_failed(Unit *u) {
5632e374
LP
771 Timer *t = TIMER(u);
772
773 assert(t);
774
fdf20a31 775 if (t->state == TIMER_FAILED)
5632e374
LP
776 timer_set_state(t, TIMER_DEAD);
777
067d72c9 778 t->result = TIMER_SUCCESS;
5632e374
LP
779}
780
8742514c
LP
781static void timer_time_change(Unit *u) {
782 Timer *t = TIMER(u);
783
784 assert(u);
785
786 if (t->state != TIMER_WAITING)
787 return;
788
f2341e0a 789 log_unit_debug(u, "Time change, recalculating next elapse.");
8742514c
LP
790 timer_enter_waiting(t, false);
791}
792
871d7de4 793static const char* const timer_base_table[_TIMER_BASE_MAX] = {
03fae018
LP
794 [TIMER_ACTIVE] = "OnActiveSec",
795 [TIMER_BOOT] = "OnBootSec",
796 [TIMER_STARTUP] = "OnStartupSec",
797 [TIMER_UNIT_ACTIVE] = "OnUnitActiveSec",
36697dc0
LP
798 [TIMER_UNIT_INACTIVE] = "OnUnitInactiveSec",
799 [TIMER_CALENDAR] = "OnCalendar"
871d7de4
LP
800};
801
802DEFINE_STRING_TABLE_LOOKUP(timer_base, TimerBase);
803
067d72c9
LP
804static const char* const timer_result_table[_TIMER_RESULT_MAX] = {
805 [TIMER_SUCCESS] = "success",
07299350
LP
806 [TIMER_FAILURE_RESOURCES] = "resources",
807 [TIMER_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
067d72c9
LP
808};
809
810DEFINE_STRING_TABLE_LOOKUP(timer_result, TimerResult);
811
87f0e418 812const UnitVTable timer_vtable = {
7d17cfbc 813 .object_size = sizeof(Timer),
718db961 814
f975e971
LP
815 .sections =
816 "Unit\0"
817 "Timer\0"
818 "Install\0",
d8a812d1 819 .private_section = "Timer",
5cb5a6ff 820
871d7de4 821 .init = timer_init,
034c6ed7 822 .done = timer_done,
871d7de4
LP
823 .load = timer_load,
824
825 .coldplug = timer_coldplug,
826
827 .dump = timer_dump,
828
829 .start = timer_start,
830 .stop = timer_stop,
831
832 .serialize = timer_serialize,
833 .deserialize_item = timer_deserialize_item,
834
835 .active_state = timer_active_state,
836 .sub_state_to_string = timer_sub_state_to_string,
837
3ecaa09b
LP
838 .trigger_notify = timer_trigger_notify,
839
fdf20a31 840 .reset_failed = timer_reset_failed,
8742514c 841 .time_change = timer_time_change,
5632e374 842
718db961 843 .bus_vtable = bus_timer_vtable,
d8a812d1
WC
844 .bus_set_property = bus_timer_set_property,
845
846 .can_transient = true,
5cb5a6ff 847};