]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/job.c
main: use a shorter default $PATH if /usr is merged
[thirdparty/systemd.git] / src / job.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
60918275 2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
60918275 22#include <assert.h>
1ffba6fe 23#include <errno.h>
faf919f1
LP
24#include <sys/timerfd.h>
25#include <sys/epoll.h>
60918275 26
94f04347
LP
27#include "set.h"
28#include "unit.h"
60918275 29#include "macro.h"
94f04347
LP
30#include "strv.h"
31#include "load-fragment.h"
32#include "load-dropin.h"
f50e0a01 33#include "log.h"
4139c1b2 34#include "dbus-job.h"
60918275 35
87f0e418 36Job* job_new(Manager *m, JobType type, Unit *unit) {
60918275
LP
37 Job *j;
38
39 assert(m);
40 assert(type < _JOB_TYPE_MAX);
87f0e418 41 assert(unit);
60918275
LP
42
43 if (!(j = new0(Job, 1)))
44 return NULL;
45
46 j->manager = m;
47 j->id = m->current_job_id++;
48 j->type = type;
87f0e418 49 j->unit = unit;
60918275 50
faf919f1
LP
51 j->timer_watch.type = WATCH_INVALID;
52
e5b5ae50 53 /* We don't link it here, that's what job_dependency() is for */
60918275
LP
54
55 return j;
56}
57
60918275
LP
58void job_free(Job *j) {
59 assert(j);
60
61 /* Detach from next 'bigger' objects */
ac1135be 62 if (j->installed) {
5d44db4a 63 bus_job_send_removed_signal(j);
c1e1601e 64
ac155bb8
MS
65 if (j->unit->job == j) {
66 j->unit->job = NULL;
701cc384
LP
67 unit_add_to_gc_queue(j->unit);
68 }
60918275
LP
69
70 hashmap_remove(j->manager->jobs, UINT32_TO_PTR(j->id));
ac1135be 71 j->installed = false;
60918275
LP
72 }
73
5cb5a6ff 74 /* Detach from next 'smaller' objects */
23a177ef 75 manager_transaction_unlink_job(j->manager, j, true);
60918275 76
c1e1601e
LP
77 if (j->in_run_queue)
78 LIST_REMOVE(Job, run_queue, j->manager->run_queue, j);
79
80 if (j->in_dbus_queue)
81 LIST_REMOVE(Job, dbus_queue, j->manager->dbus_job_queue, j);
82
faf919f1
LP
83 if (j->timer_watch.type != WATCH_INVALID) {
84 assert(j->timer_watch.type == WATCH_JOB_TIMER);
85 assert(j->timer_watch.data.job == j);
86 assert(j->timer_watch.fd >= 0);
87
88 assert_se(epoll_ctl(j->manager->epoll_fd, EPOLL_CTL_DEL, j->timer_watch.fd, NULL) >= 0);
89 close_nointr_nofail(j->timer_watch.fd);
90 }
91
a567261a 92 free(j->bus_client);
60918275
LP
93 free(j);
94}
a66d02c3 95
69dd2852 96JobDependency* job_dependency_new(Job *subject, Job *object, bool matters, bool conflicts) {
e5b5ae50
LP
97 JobDependency *l;
98
99 assert(object);
100
101 /* Adds a new job link, which encodes that the 'subject' job
102 * needs the 'object' job in some way. If 'subject' is NULL
103 * this means the 'anchor' job (i.e. the one the user
35b8ca3a 104 * explicitly asked for) is the requester. */
e5b5ae50 105
ceed3570 106 if (!(l = new0(JobDependency, 1)))
e5b5ae50
LP
107 return NULL;
108
109 l->subject = subject;
110 l->object = object;
111 l->matters = matters;
69dd2852 112 l->conflicts = conflicts;
e5b5ae50 113
44d8db9e
LP
114 if (subject)
115 LIST_PREPEND(JobDependency, subject, subject->subject_list, l);
116 else
117 LIST_PREPEND(JobDependency, subject, object->manager->transaction_anchor, l);
e5b5ae50 118
44d8db9e 119 LIST_PREPEND(JobDependency, object, object->object_list, l);
e5b5ae50
LP
120
121 return l;
122}
123
124void job_dependency_free(JobDependency *l) {
125 assert(l);
126
44d8db9e
LP
127 if (l->subject)
128 LIST_REMOVE(JobDependency, subject, l->subject->subject_list, l);
e5b5ae50 129 else
44d8db9e 130 LIST_REMOVE(JobDependency, subject, l->object->manager->transaction_anchor, l);
e5b5ae50 131
44d8db9e 132 LIST_REMOVE(JobDependency, object, l->object->object_list, l);
e5b5ae50
LP
133
134 free(l);
135}
136
1ffba6fe 137void job_dump(Job *j, FILE*f, const char *prefix) {
a66d02c3
LP
138 assert(j);
139 assert(f);
140
9eb63b3c
LP
141 if (!prefix)
142 prefix = "";
143
ceed3570 144 fprintf(f,
40d50879
LP
145 "%s-> Job %u:\n"
146 "%s\tAction: %s -> %s\n"
5cb5a6ff
LP
147 "%s\tState: %s\n"
148 "%s\tForced: %s\n",
ceed3570 149 prefix, j->id,
ac155bb8 150 prefix, j->unit->id, job_type_to_string(j->type),
94f04347 151 prefix, job_state_to_string(j->state),
9e2f7c11 152 prefix, yes_no(j->override));
a66d02c3 153}
e5b5ae50
LP
154
155bool job_is_anchor(Job *j) {
156 JobDependency *l;
157
158 assert(j);
159
44d8db9e 160 LIST_FOREACH(object, l, j->object_list)
e5b5ae50
LP
161 if (!l->subject)
162 return true;
163
164 return false;
165}
1ffba6fe
LP
166
167static bool types_match(JobType a, JobType b, JobType c, JobType d) {
168 return
169 (a == c && b == d) ||
170 (a == d && b == c);
171}
172
173int job_type_merge(JobType *a, JobType b) {
174 if (*a == b)
175 return 0;
176
177 /* Merging is associative! a merged with b merged with c is
178 * the same as a merged with c merged with b. */
179
180 /* Mergeability is transitive! if a can be merged with b and b
181 * with c then a also with c */
182
183 /* Also, if a merged with b cannot be merged with c, then
184 * either a or b cannot be merged with c either */
185
5cb5a6ff 186 if (types_match(*a, b, JOB_START, JOB_VERIFY_ACTIVE))
1ffba6fe
LP
187 *a = JOB_START;
188 else if (types_match(*a, b, JOB_START, JOB_RELOAD) ||
189 types_match(*a, b, JOB_START, JOB_RELOAD_OR_START) ||
5cb5a6ff 190 types_match(*a, b, JOB_VERIFY_ACTIVE, JOB_RELOAD_OR_START) ||
1ffba6fe
LP
191 types_match(*a, b, JOB_RELOAD, JOB_RELOAD_OR_START))
192 *a = JOB_RELOAD_OR_START;
193 else if (types_match(*a, b, JOB_START, JOB_RESTART) ||
194 types_match(*a, b, JOB_START, JOB_TRY_RESTART) ||
5cb5a6ff 195 types_match(*a, b, JOB_VERIFY_ACTIVE, JOB_RESTART) ||
1ffba6fe
LP
196 types_match(*a, b, JOB_RELOAD, JOB_RESTART) ||
197 types_match(*a, b, JOB_RELOAD_OR_START, JOB_RESTART) ||
198 types_match(*a, b, JOB_RELOAD_OR_START, JOB_TRY_RESTART) ||
199 types_match(*a, b, JOB_RESTART, JOB_TRY_RESTART))
200 *a = JOB_RESTART;
5cb5a6ff 201 else if (types_match(*a, b, JOB_VERIFY_ACTIVE, JOB_RELOAD))
1ffba6fe 202 *a = JOB_RELOAD;
5cb5a6ff 203 else if (types_match(*a, b, JOB_VERIFY_ACTIVE, JOB_TRY_RESTART) ||
1ffba6fe
LP
204 types_match(*a, b, JOB_RELOAD, JOB_TRY_RESTART))
205 *a = JOB_TRY_RESTART;
206 else
207 return -EEXIST;
208
209 return 0;
210}
211
5cb5a6ff 212bool job_type_is_mergeable(JobType a, JobType b) {
1ffba6fe
LP
213 return job_type_merge(&a, b) >= 0;
214}
215
216bool job_type_is_superset(JobType a, JobType b) {
217
5cb5a6ff
LP
218 /* Checks whether operation a is a "superset" of b in its
219 * actions */
1ffba6fe
LP
220
221 if (a == b)
222 return true;
223
224 switch (a) {
225 case JOB_START:
5cb5a6ff 226 return b == JOB_VERIFY_ACTIVE;
1ffba6fe
LP
227
228 case JOB_RELOAD:
5cb5a6ff
LP
229 return
230 b == JOB_VERIFY_ACTIVE;
1ffba6fe
LP
231
232 case JOB_RELOAD_OR_START:
233 return
234 b == JOB_RELOAD ||
5cb5a6ff
LP
235 b == JOB_START ||
236 b == JOB_VERIFY_ACTIVE;
1ffba6fe
LP
237
238 case JOB_RESTART:
239 return
240 b == JOB_START ||
5cb5a6ff 241 b == JOB_VERIFY_ACTIVE ||
1ffba6fe
LP
242 b == JOB_RELOAD ||
243 b == JOB_RELOAD_OR_START ||
244 b == JOB_TRY_RESTART;
245
246 case JOB_TRY_RESTART:
247 return
5cb5a6ff 248 b == JOB_VERIFY_ACTIVE ||
1ffba6fe
LP
249 b == JOB_RELOAD;
250 default:
251 return false;
252
253 }
254}
e094e853
LP
255
256bool job_type_is_conflicting(JobType a, JobType b) {
cd2dbd7d
LP
257 assert(a >= 0 && a < _JOB_TYPE_MAX);
258 assert(b >= 0 && b < _JOB_TYPE_MAX);
e094e853 259
5cb5a6ff 260 return (a == JOB_STOP) != (b == JOB_STOP);
e094e853 261}
cd2dbd7d 262
593fbdd2
LP
263bool job_type_is_redundant(JobType a, UnitActiveState b) {
264 switch (a) {
265
266 case JOB_START:
267 return
268 b == UNIT_ACTIVE ||
032ff4af 269 b == UNIT_RELOADING;
593fbdd2
LP
270
271 case JOB_STOP:
272 return
6124958c 273 b == UNIT_INACTIVE ||
fdf20a31 274 b == UNIT_FAILED;
593fbdd2
LP
275
276 case JOB_VERIFY_ACTIVE:
277 return
278 b == UNIT_ACTIVE ||
032ff4af 279 b == UNIT_RELOADING;
593fbdd2
LP
280
281 case JOB_RELOAD:
282 return
032ff4af 283 b == UNIT_RELOADING;
593fbdd2
LP
284
285 case JOB_RELOAD_OR_START:
286 return
287 b == UNIT_ACTIVATING ||
032ff4af 288 b == UNIT_RELOADING;
593fbdd2
LP
289
290 case JOB_RESTART:
291 return
292 b == UNIT_ACTIVATING;
293
294 case JOB_TRY_RESTART:
295 return
296 b == UNIT_ACTIVATING;
297
298 default:
299 assert_not_reached("Invalid job type");
300 }
301}
302
5cb5a6ff 303bool job_is_runnable(Job *j) {
034c6ed7 304 Iterator i;
87f0e418 305 Unit *other;
5cb5a6ff
LP
306
307 assert(j);
ac1135be 308 assert(j->installed);
5cb5a6ff 309
87f0e418 310 /* Checks whether there is any job running for the units this
5cb5a6ff 311 * job needs to be running after (in the case of a 'positive'
e67c3609
LP
312 * job type) or before (in the case of a 'negative' job
313 * type. */
314
315 /* First check if there is an override */
cebe0d41 316 if (j->ignore_order)
e67c3609 317 return true;
5cb5a6ff
LP
318
319 if (j->type == JOB_START ||
320 j->type == JOB_VERIFY_ACTIVE ||
321 j->type == JOB_RELOAD ||
322 j->type == JOB_RELOAD_OR_START) {
323
324 /* Immediate result is that the job is or might be
325 * started. In this case lets wait for the
326 * dependencies, regardless whether they are
327 * starting or stopping something. */
328
ac155bb8
MS
329 SET_FOREACH(other, j->unit->dependencies[UNIT_AFTER], i)
330 if (other->job)
5cb5a6ff
LP
331 return false;
332 }
333
334 /* Also, if something else is being stopped and we should
335 * change state after it, then lets wait. */
336
ac155bb8
MS
337 SET_FOREACH(other, j->unit->dependencies[UNIT_BEFORE], i)
338 if (other->job &&
339 (other->job->type == JOB_STOP ||
340 other->job->type == JOB_RESTART ||
341 other->job->type == JOB_TRY_RESTART))
5cb5a6ff
LP
342 return false;
343
344 /* This means that for a service a and a service b where b
345 * shall be started after a:
346 *
347 * start a + start b → 1st step start a, 2nd step start b
348 * start a + stop b → 1st step stop b, 2nd step start a
349 * stop a + start b → 1st step stop a, 2nd step start b
350 * stop a + stop b → 1st step stop b, 2nd step stop a
351 *
352 * This has the side effect that restarts are properly
353 * synchronized too. */
354
355 return true;
356}
357
358int job_run_and_invalidate(Job *j) {
359 int r;
2cf19a7a
LP
360 uint32_t id;
361 Manager *m;
ac1135be 362
5cb5a6ff 363 assert(j);
ac1135be 364 assert(j->installed);
5cb5a6ff 365
034c6ed7
LP
366 if (j->in_run_queue) {
367 LIST_REMOVE(Job, run_queue, j->manager->run_queue, j);
368 j->in_run_queue = false;
369 }
5cb5a6ff
LP
370
371 if (j->state != JOB_WAITING)
372 return 0;
373
034c6ed7
LP
374 if (!job_is_runnable(j))
375 return -EAGAIN;
376
83c60c9f 377 j->state = JOB_RUNNING;
c1e1601e 378 job_add_to_dbus_queue(j);
83c60c9f 379
2cf19a7a
LP
380 /* While we execute this operation the job might go away (for
381 * example: because it is replaced by a new, conflicting
382 * job.) To make sure we don't access a freed job later on we
383 * store the id here, so that we can verify the job is still
384 * valid. */
385 id = j->id;
386 m = j->manager;
387
5cb5a6ff
LP
388 switch (j->type) {
389
390 case JOB_START:
87f0e418 391 r = unit_start(j->unit);
57339f47
LP
392
393 /* If this unit cannot be started, then simply
394 * wait */
5cb5a6ff
LP
395 if (r == -EBADR)
396 r = 0;
23e1e0c4 397
5cb5a6ff
LP
398 break;
399
400 case JOB_VERIFY_ACTIVE: {
87f0e418
LP
401 UnitActiveState t = unit_active_state(j->unit);
402 if (UNIT_IS_ACTIVE_OR_RELOADING(t))
5cb5a6ff 403 r = -EALREADY;
87f0e418 404 else if (t == UNIT_ACTIVATING)
5cb5a6ff
LP
405 r = -EAGAIN;
406 else
407 r = -ENOEXEC;
408 break;
409 }
410
411 case JOB_STOP:
87f0e418 412 r = unit_stop(j->unit);
57339f47
LP
413
414 /* If this unit cannot stopped, then simply
415 * wait. */
416 if (r == -EBADR)
417 r = 0;
5cb5a6ff
LP
418 break;
419
420 case JOB_RELOAD:
87f0e418 421 r = unit_reload(j->unit);
5cb5a6ff
LP
422 break;
423
424 case JOB_RELOAD_OR_START:
81253930
LP
425 if (unit_active_state(j->unit) == UNIT_ACTIVE) {
426 j->type = JOB_RELOAD;
87f0e418 427 r = unit_reload(j->unit);
81253930
LP
428 } else {
429 j->type = JOB_START;
87f0e418 430 r = unit_start(j->unit);
81253930
LP
431
432 if (r == -EBADR)
433 r = 0;
434 }
5cb5a6ff
LP
435 break;
436
437 case JOB_RESTART: {
87f0e418 438 UnitActiveState t = unit_active_state(j->unit);
fdf20a31 439 if (t == UNIT_INACTIVE || t == UNIT_FAILED || t == UNIT_ACTIVATING) {
5cb5a6ff 440 j->type = JOB_START;
87f0e418 441 r = unit_start(j->unit);
5cb5a6ff 442 } else
87f0e418 443 r = unit_stop(j->unit);
5cb5a6ff
LP
444 break;
445 }
446
447 case JOB_TRY_RESTART: {
87f0e418 448 UnitActiveState t = unit_active_state(j->unit);
fdf20a31 449 if (t == UNIT_INACTIVE || t == UNIT_FAILED || t == UNIT_DEACTIVATING)
5cb5a6ff 450 r = -ENOEXEC;
87f0e418 451 else if (t == UNIT_ACTIVATING) {
5cb5a6ff 452 j->type = JOB_START;
87f0e418 453 r = unit_start(j->unit);
81253930
LP
454 } else {
455 j->type = JOB_RESTART;
87f0e418 456 r = unit_stop(j->unit);
81253930 457 }
5cb5a6ff
LP
458 break;
459 }
460
461 default:
44d8db9e 462 assert_not_reached("Unknown job type");
5cb5a6ff
LP
463 }
464
2cf19a7a
LP
465 if ((j = manager_get_job(m, id))) {
466 if (r == -EALREADY)
5d44db4a 467 r = job_finish_and_invalidate(j, JOB_DONE);
d68201e9
LP
468 else if (r == -ENOEXEC)
469 r = job_finish_and_invalidate(j, JOB_SKIPPED);
2cf19a7a
LP
470 else if (r == -EAGAIN)
471 j->state = JOB_WAITING;
472 else if (r < 0)
5d44db4a 473 r = job_finish_and_invalidate(j, JOB_FAILED);
2cf19a7a 474 }
5cb5a6ff
LP
475
476 return r;
477}
478
e02cd6f7
LP
479static void job_print_status_message(Unit *u, JobType t, JobResult result) {
480 assert(u);
481
482 if (t == JOB_START) {
483
484 switch (result) {
485
486 case JOB_DONE:
5831e9b7 487 unit_status_printf(u, ANSI_HIGHLIGHT_GREEN_ON " OK " ANSI_HIGHLIGHT_OFF, "Started %s", unit_description(u));
e02cd6f7
LP
488 break;
489
490 case JOB_FAILED:
c1072ea0 491 unit_status_printf(u, ANSI_HIGHLIGHT_RED_ON "FAILED" ANSI_HIGHLIGHT_OFF, "Failed to start %s", unit_description(u));
ac155bb8 492 unit_status_printf(u, NULL, "See 'systemctl status %s' for details.", u->id);
e02cd6f7
LP
493 break;
494
495 case JOB_DEPENDENCY:
c1072ea0 496 unit_status_printf(u, ANSI_HIGHLIGHT_RED_ON " ABORT" ANSI_HIGHLIGHT_OFF, "Dependency failed. Aborted start of %s", unit_description(u));
e02cd6f7
LP
497 break;
498
499 case JOB_TIMEOUT:
c1072ea0 500 unit_status_printf(u, ANSI_HIGHLIGHT_RED_ON " TIME " ANSI_HIGHLIGHT_OFF, "Timed out starting %s", unit_description(u));
e02cd6f7
LP
501 break;
502
503 default:
504 ;
505 }
506
507 } else if (t == JOB_STOP) {
508
509 switch (result) {
510
511 case JOB_TIMEOUT:
c1072ea0 512 unit_status_printf(u, ANSI_HIGHLIGHT_RED_ON " TIME " ANSI_HIGHLIGHT_OFF, "Timed out stopping %s", unit_description(u));
e02cd6f7
LP
513 break;
514
515 case JOB_DONE:
516 case JOB_FAILED:
5831e9b7 517 unit_status_printf(u, ANSI_HIGHLIGHT_GREEN_ON " OK " ANSI_HIGHLIGHT_OFF, "Stopped %s", unit_description(u));
e02cd6f7
LP
518 break;
519
520 default:
521 ;
522 }
523 }
524}
525
5d44db4a 526int job_finish_and_invalidate(Job *j, JobResult result) {
87f0e418
LP
527 Unit *u;
528 Unit *other;
b866264a 529 JobType t;
034c6ed7 530 Iterator i;
563ba9ea 531 bool recursed = false;
5cb5a6ff
LP
532
533 assert(j);
ac1135be 534 assert(j->installed);
5cb5a6ff 535
c1e1601e 536 job_add_to_dbus_queue(j);
f50e0a01 537
034c6ed7 538 /* Patch restart jobs so that they become normal start jobs */
5d44db4a 539 if (result == JOB_DONE && (j->type == JOB_RESTART || j->type == JOB_TRY_RESTART)) {
f50e0a01 540
40d50879 541 log_debug("Converting job %s/%s -> %s/%s",
ac155bb8
MS
542 j->unit->id, job_type_to_string(j->type),
543 j->unit->id, job_type_to_string(JOB_START));
f50e0a01 544
9c2d9caa 545 j->state = JOB_WAITING;
5cb5a6ff 546 j->type = JOB_START;
cc42e081
LP
547
548 job_add_to_run_queue(j);
57981b98
LP
549
550 u = j->unit;
551 goto finish;
5cb5a6ff
LP
552 }
553
5d44db4a 554 j->result = result;
76bf48b7 555
ac155bb8 556 log_debug("Job %s/%s finished, result=%s", j->unit->id, job_type_to_string(j->type), job_result_to_string(result));
9c2d9caa 557
5d44db4a 558 if (result == JOB_FAILED)
76bf48b7
LP
559 j->manager->n_failed_jobs ++;
560
87f0e418 561 u = j->unit;
5cb5a6ff
LP
562 t = j->type;
563 job_free(j);
564
e02cd6f7 565 job_print_status_message(u, t, result);
9e58ff9c 566
5cb5a6ff 567 /* Fail depending jobs on failure */
5d44db4a 568 if (result != JOB_DONE) {
5cb5a6ff
LP
569
570 if (t == JOB_START ||
571 t == JOB_VERIFY_ACTIVE ||
572 t == JOB_RELOAD_OR_START) {
573
ac155bb8
MS
574 SET_FOREACH(other, u->dependencies[UNIT_REQUIRED_BY], i)
575 if (other->job &&
576 (other->job->type == JOB_START ||
577 other->job->type == JOB_VERIFY_ACTIVE ||
578 other->job->type == JOB_RELOAD_OR_START)) {
579 job_finish_and_invalidate(other->job, JOB_DEPENDENCY);
563ba9ea
MS
580 recursed = true;
581 }
5cb5a6ff 582
ac155bb8
MS
583 SET_FOREACH(other, u->dependencies[UNIT_BOUND_BY], i)
584 if (other->job &&
585 (other->job->type == JOB_START ||
586 other->job->type == JOB_VERIFY_ACTIVE ||
587 other->job->type == JOB_RELOAD_OR_START)) {
588 job_finish_and_invalidate(other->job, JOB_DEPENDENCY);
563ba9ea
MS
589 recursed = true;
590 }
e6a3ff95 591
ac155bb8
MS
592 SET_FOREACH(other, u->dependencies[UNIT_REQUIRED_BY_OVERRIDABLE], i)
593 if (other->job &&
594 !other->job->override &&
595 (other->job->type == JOB_START ||
596 other->job->type == JOB_VERIFY_ACTIVE ||
597 other->job->type == JOB_RELOAD_OR_START)) {
598 job_finish_and_invalidate(other->job, JOB_DEPENDENCY);
563ba9ea
MS
599 recursed = true;
600 }
5cb5a6ff
LP
601
602 } else if (t == JOB_STOP) {
603
ac155bb8
MS
604 SET_FOREACH(other, u->dependencies[UNIT_CONFLICTED_BY], i)
605 if (other->job &&
606 (other->job->type == JOB_START ||
607 other->job->type == JOB_VERIFY_ACTIVE ||
608 other->job->type == JOB_RELOAD_OR_START)) {
609 job_finish_and_invalidate(other->job, JOB_DEPENDENCY);
563ba9ea
MS
610 recursed = true;
611 }
5cb5a6ff
LP
612 }
613 }
614
c0daa706
LP
615 /* Trigger OnFailure dependencies that are not generated by
616 * the unit itself. We don't tread JOB_CANCELED as failure in
617 * this context. And JOB_FAILURE is already handled by the
618 * unit itself. */
222ae6a8
LP
619 if (result == JOB_TIMEOUT || result == JOB_DEPENDENCY) {
620 log_notice("Job %s/%s failed with result '%s'.",
ac155bb8 621 u->id,
222ae6a8
LP
622 job_type_to_string(t),
623 job_result_to_string(result));
624
c0daa706 625 unit_trigger_on_failure(u);
222ae6a8 626 }
c0daa706 627
57981b98 628finish:
5cb5a6ff 629 /* Try to start the next jobs that can be started */
ac155bb8
MS
630 SET_FOREACH(other, u->dependencies[UNIT_AFTER], i)
631 if (other->job)
632 job_add_to_run_queue(other->job);
633 SET_FOREACH(other, u->dependencies[UNIT_BEFORE], i)
634 if (other->job)
635 job_add_to_run_queue(other->job);
5cb5a6ff 636
ac155bb8 637 manager_check_finished(u->manager);
b0c918b9 638
563ba9ea 639 return recursed;
5cb5a6ff 640}
034c6ed7 641
faf919f1
LP
642int job_start_timer(Job *j) {
643 struct itimerspec its;
644 struct epoll_event ev;
645 int fd, r;
646 assert(j);
647
ac155bb8 648 if (j->unit->job_timeout <= 0 ||
faf919f1
LP
649 j->timer_watch.type == WATCH_JOB_TIMER)
650 return 0;
651
652 assert(j->timer_watch.type == WATCH_INVALID);
653
654 if ((fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC)) < 0) {
655 r = -errno;
656 goto fail;
657 }
658
659 zero(its);
ac155bb8 660 timespec_store(&its.it_value, j->unit->job_timeout);
faf919f1
LP
661
662 if (timerfd_settime(fd, 0, &its, NULL) < 0) {
663 r = -errno;
664 goto fail;
665 }
666
667 zero(ev);
668 ev.data.ptr = &j->timer_watch;
669 ev.events = EPOLLIN;
670
671 if (epoll_ctl(j->manager->epoll_fd, EPOLL_CTL_ADD, fd, &ev) < 0) {
672 r = -errno;
673 goto fail;
674 }
675
676 j->timer_watch.type = WATCH_JOB_TIMER;
677 j->timer_watch.fd = fd;
678 j->timer_watch.data.job = j;
679
680 return 0;
681
682fail:
683 if (fd >= 0)
684 close_nointr_nofail(fd);
685
686 return r;
687}
688
c1e1601e 689void job_add_to_run_queue(Job *j) {
034c6ed7 690 assert(j);
ac1135be 691 assert(j->installed);
034c6ed7
LP
692
693 if (j->in_run_queue)
694 return;
695
696 LIST_PREPEND(Job, run_queue, j->manager->run_queue, j);
697 j->in_run_queue = true;
698}
94f04347 699
c1e1601e
LP
700void job_add_to_dbus_queue(Job *j) {
701 assert(j);
702 assert(j->installed);
703
704 if (j->in_dbus_queue)
705 return;
706
a567261a
LP
707 /* We don't check if anybody is subscribed here, since this
708 * job might just have been created and not yet assigned to a
709 * connection/client. */
94b6dfa2 710
c1e1601e
LP
711 LIST_PREPEND(Job, dbus_queue, j->manager->dbus_job_queue, j);
712 j->in_dbus_queue = true;
713}
714
ea430986
LP
715char *job_dbus_path(Job *j) {
716 char *p;
717
718 assert(j);
719
720 if (asprintf(&p, "/org/freedesktop/systemd1/job/%lu", (unsigned long) j->id) < 0)
721 return NULL;
722
723 return p;
724}
725
faf919f1
LP
726void job_timer_event(Job *j, uint64_t n_elapsed, Watch *w) {
727 assert(j);
728 assert(w == &j->timer_watch);
729
ac155bb8 730 log_warning("Job %s/%s timed out.", j->unit->id, job_type_to_string(j->type));
5d44db4a 731 job_finish_and_invalidate(j, JOB_TIMEOUT);
faf919f1
LP
732}
733
94f04347
LP
734static const char* const job_state_table[_JOB_STATE_MAX] = {
735 [JOB_WAITING] = "waiting",
736 [JOB_RUNNING] = "running"
737};
738
739DEFINE_STRING_TABLE_LOOKUP(job_state, JobState);
740
741static const char* const job_type_table[_JOB_TYPE_MAX] = {
742 [JOB_START] = "start",
743 [JOB_VERIFY_ACTIVE] = "verify-active",
744 [JOB_STOP] = "stop",
745 [JOB_RELOAD] = "reload",
746 [JOB_RELOAD_OR_START] = "reload-or-start",
747 [JOB_RESTART] = "restart",
748 [JOB_TRY_RESTART] = "try-restart",
749};
750
751DEFINE_STRING_TABLE_LOOKUP(job_type, JobType);
b548631a
LP
752
753static const char* const job_mode_table[_JOB_MODE_MAX] = {
754 [JOB_FAIL] = "fail",
c497c7a9 755 [JOB_REPLACE] = "replace",
e67c3609 756 [JOB_ISOLATE] = "isolate",
cebe0d41
LP
757 [JOB_IGNORE_DEPENDENCIES] = "ignore-dependencies",
758 [JOB_IGNORE_REQUIREMENTS] = "ignore-requirements"
b548631a
LP
759};
760
761DEFINE_STRING_TABLE_LOOKUP(job_mode, JobMode);
5d44db4a
LP
762
763static const char* const job_result_table[_JOB_RESULT_MAX] = {
764 [JOB_DONE] = "done",
765 [JOB_CANCELED] = "canceled",
766 [JOB_TIMEOUT] = "timeout",
767 [JOB_FAILED] = "failed",
d68201e9
LP
768 [JOB_DEPENDENCY] = "dependency",
769 [JOB_SKIPPED] = "skipped"
5d44db4a
LP
770};
771
772DEFINE_STRING_TABLE_LOOKUP(job_result, JobResult);