]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/transaction.c
core: when determining system state, don't bother with JOB_TRY_RESTART
[thirdparty/systemd.git] / src / core / transaction.c
CommitLineData
7c0436b9
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
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 Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
f2b68789 22#include <fcntl.h>
cf0fbc49 23#include <unistd.h>
f2b68789 24
b5efdb8a 25#include "alloc-util.h"
96aad8d1 26#include "bus-common-errors.h"
718db961 27#include "bus-error.h"
288a74cc 28#include "terminal-util.h"
b5efdb8a 29#include "transaction.h"
ee87525c 30#include "dbus-unit.h"
75778e21
MS
31
32static void transaction_unlink_job(Transaction *tr, Job *j, bool delete_dependencies);
33
34static void transaction_delete_job(Transaction *tr, Job *j, bool delete_dependencies) {
35 assert(tr);
36 assert(j);
37
38 /* Deletes one job from the transaction */
39
40 transaction_unlink_job(tr, j, delete_dependencies);
41
d6a093d0 42 job_free(j);
75778e21
MS
43}
44
45static void transaction_delete_unit(Transaction *tr, Unit *u) {
46 Job *j;
47
48 /* Deletes all jobs associated with a certain unit from the
49 * transaction */
50
51 while ((j = hashmap_get(tr->jobs, u)))
52 transaction_delete_job(tr, j, true);
53}
54
55void transaction_abort(Transaction *tr) {
56 Job *j;
57
58 assert(tr);
59
60 while ((j = hashmap_first(tr->jobs)))
1b9cea0c 61 transaction_delete_job(tr, j, false);
75778e21
MS
62
63 assert(hashmap_isempty(tr->jobs));
75778e21
MS
64}
65
0d9989aa 66static void transaction_find_jobs_that_matter_to_anchor(Job *j, unsigned generation) {
75778e21
MS
67 JobDependency *l;
68
75778e21
MS
69 /* A recursive sweep through the graph that marks all units
70 * that matter to the anchor job, i.e. are directly or
71 * indirectly a dependency of the anchor job via paths that
72 * are fully marked as mattering. */
73
0d9989aa
MS
74 j->matters_to_anchor = true;
75 j->generation = generation;
75778e21 76
0d9989aa 77 LIST_FOREACH(subject, l, j->subject_list) {
75778e21
MS
78
79 /* This link does not matter */
80 if (!l->matters)
81 continue;
82
83 /* This unit has already been marked */
84 if (l->object->generation == generation)
85 continue;
86
0d9989aa 87 transaction_find_jobs_that_matter_to_anchor(l->object, generation);
75778e21
MS
88 }
89}
90
91static void transaction_merge_and_delete_job(Transaction *tr, Job *j, Job *other, JobType t) {
92 JobDependency *l, *last;
93
94 assert(j);
95 assert(other);
96 assert(j->unit == other->unit);
97 assert(!j->installed);
98
99 /* Merges 'other' into 'j' and then deletes 'other'. */
100
101 j->type = t;
102 j->state = JOB_WAITING;
23ade460 103 j->irreversible = j->irreversible || other->irreversible;
75778e21
MS
104 j->matters_to_anchor = j->matters_to_anchor || other->matters_to_anchor;
105
106 /* Patch us in as new owner of the JobDependency objects */
107 last = NULL;
108 LIST_FOREACH(subject, l, other->subject_list) {
109 assert(l->subject == other);
110 l->subject = j;
111 last = l;
112 }
113
114 /* Merge both lists */
115 if (last) {
116 last->subject_next = j->subject_list;
117 if (j->subject_list)
118 j->subject_list->subject_prev = last;
119 j->subject_list = other->subject_list;
120 }
121
122 /* Patch us in as new owner of the JobDependency objects */
123 last = NULL;
124 LIST_FOREACH(object, l, other->object_list) {
125 assert(l->object == other);
126 l->object = j;
127 last = l;
128 }
129
130 /* Merge both lists */
131 if (last) {
132 last->object_next = j->object_list;
133 if (j->object_list)
134 j->object_list->object_prev = last;
135 j->object_list = other->object_list;
136 }
137
138 /* Kill the other job */
139 other->subject_list = NULL;
140 other->object_list = NULL;
141 transaction_delete_job(tr, other, true);
142}
143
44a6b1b6 144_pure_ static bool job_is_conflicted_by(Job *j) {
75778e21
MS
145 JobDependency *l;
146
147 assert(j);
148
149 /* Returns true if this job is pulled in by a least one
150 * ConflictedBy dependency. */
151
152 LIST_FOREACH(object, l, j->object_list)
153 if (l->conflicts)
154 return true;
155
156 return false;
157}
158
159static int delete_one_unmergeable_job(Transaction *tr, Job *j) {
160 Job *k;
161
162 assert(j);
163
164 /* Tries to delete one item in the linked list
165 * j->transaction_next->transaction_next->... that conflicts
166 * with another one, in an attempt to make an inconsistent
167 * transaction work. */
168
169 /* We rely here on the fact that if a merged with b does not
170 * merge with c, either a or b merge with c neither */
171 LIST_FOREACH(transaction, j, j)
172 LIST_FOREACH(transaction, k, j->transaction_next) {
173 Job *d;
174
175 /* Is this one mergeable? Then skip it */
176 if (job_type_is_mergeable(j->type, k->type))
177 continue;
178
179 /* Ok, we found two that conflict, let's see if we can
180 * drop one of them */
181 if (!j->matters_to_anchor && !k->matters_to_anchor) {
182
183 /* Both jobs don't matter, so let's
184 * find the one that is smarter to
185 * remove. Let's think positive and
186 * rather remove stops then starts --
187 * except if something is being
188 * stopped because it is conflicted by
189 * another unit in which case we
190 * rather remove the start. */
191
f2341e0a 192 log_unit_debug(j->unit,
66870f90
ZJS
193 "Looking at job %s/%s conflicted_by=%s",
194 j->unit->id, job_type_to_string(j->type),
195 yes_no(j->type == JOB_STOP && job_is_conflicted_by(j)));
f2341e0a 196 log_unit_debug(k->unit,
66870f90
ZJS
197 "Looking at job %s/%s conflicted_by=%s",
198 k->unit->id, job_type_to_string(k->type),
199 yes_no(k->type == JOB_STOP && job_is_conflicted_by(k)));
75778e21
MS
200
201 if (j->type == JOB_STOP) {
202
203 if (job_is_conflicted_by(j))
204 d = k;
205 else
206 d = j;
207
208 } else if (k->type == JOB_STOP) {
209
210 if (job_is_conflicted_by(k))
211 d = j;
212 else
213 d = k;
214 } else
215 d = j;
216
217 } else if (!j->matters_to_anchor)
218 d = j;
219 else if (!k->matters_to_anchor)
220 d = k;
221 else
222 return -ENOEXEC;
223
224 /* Ok, we can drop one, so let's do so. */
f2341e0a 225 log_unit_debug(d->unit,
75cb8502
ZJS
226 "Fixing conflicting jobs %s/%s,%s/%s by deleting job %s/%s",
227 j->unit->id, job_type_to_string(j->type),
228 k->unit->id, job_type_to_string(k->type),
66870f90 229 d->unit->id, job_type_to_string(d->type));
75778e21
MS
230 transaction_delete_job(tr, d, true);
231 return 0;
232 }
233
234 return -EINVAL;
235}
236
718db961 237static int transaction_merge_jobs(Transaction *tr, sd_bus_error *e) {
75778e21
MS
238 Job *j;
239 Iterator i;
240 int r;
241
242 assert(tr);
243
244 /* First step, check whether any of the jobs for one specific
245 * task conflict. If so, try to drop one of them. */
246 HASHMAP_FOREACH(j, tr->jobs, i) {
247 JobType t;
248 Job *k;
249
250 t = j->type;
251 LIST_FOREACH(transaction, k, j->transaction_next) {
e0209d83 252 if (job_type_merge_and_collapse(&t, k->type, j->unit) >= 0)
75778e21
MS
253 continue;
254
255 /* OK, we could not merge all jobs for this
256 * action. Let's see if we can get rid of one
257 * of them */
258
259 r = delete_one_unmergeable_job(tr, j);
260 if (r >= 0)
261 /* Ok, we managed to drop one, now
262 * let's ask our callers to call us
263 * again after garbage collecting */
264 return -EAGAIN;
265
266 /* We couldn't merge anything. Failure */
7358dc02
ZJS
267 return sd_bus_error_setf(e, BUS_ERROR_TRANSACTION_JOBS_CONFLICTING,
268 "Transaction contains conflicting jobs '%s' and '%s' for %s. "
269 "Probably contradicting requirement dependencies configured.",
270 job_type_to_string(t),
271 job_type_to_string(k->type),
272 k->unit->id);
75778e21
MS
273 }
274 }
275
276 /* Second step, merge the jobs. */
277 HASHMAP_FOREACH(j, tr->jobs, i) {
278 JobType t = j->type;
279 Job *k;
280
e0209d83 281 /* Merge all transaction jobs for j->unit */
75778e21 282 LIST_FOREACH(transaction, k, j->transaction_next)
e0209d83 283 assert_se(job_type_merge_and_collapse(&t, k->type, j->unit) == 0);
75778e21 284
75778e21 285 while ((k = j->transaction_next)) {
656bbffc 286 if (tr->anchor_job == k) {
75778e21
MS
287 transaction_merge_and_delete_job(tr, k, j, t);
288 j = k;
289 } else
290 transaction_merge_and_delete_job(tr, j, k, t);
291 }
292
75778e21
MS
293 assert(!j->transaction_next);
294 assert(!j->transaction_prev);
295 }
296
297 return 0;
298}
299
300static void transaction_drop_redundant(Transaction *tr) {
055163ad
MS
301 Job *j;
302 Iterator i;
75778e21 303
055163ad
MS
304 /* Goes through the transaction and removes all jobs of the units
305 * whose jobs are all noops. If not all of a unit's jobs are
306 * redundant, they are kept. */
75778e21 307
055163ad 308 assert(tr);
75778e21 309
055163ad
MS
310rescan:
311 HASHMAP_FOREACH(j, tr->jobs, i) {
312 Job *k;
75778e21 313
055163ad 314 LIST_FOREACH(transaction, k, j) {
75778e21 315
055163ad
MS
316 if (tr->anchor_job == k ||
317 !job_type_is_redundant(k->type, unit_active_state(k->unit)) ||
318 (k->unit->job && job_type_is_conflicting(k->type, k->unit->job->type)))
319 goto next_unit;
75778e21
MS
320 }
321
055163ad
MS
322 /* log_debug("Found redundant job %s/%s, dropping.", j->unit->id, job_type_to_string(j->type)); */
323 transaction_delete_job(tr, j, false);
324 goto rescan;
325 next_unit:;
326 }
75778e21
MS
327}
328
44a6b1b6 329_pure_ static bool unit_matters_to_anchor(Unit *u, Job *j) {
75778e21
MS
330 assert(u);
331 assert(!j->transaction_prev);
332
333 /* Checks whether at least one of the jobs for this unit
334 * matters to the anchor. */
335
336 LIST_FOREACH(transaction, j, j)
337 if (j->matters_to_anchor)
338 return true;
339
340 return false;
341}
342
718db961 343static int transaction_verify_order_one(Transaction *tr, Job *j, Job *from, unsigned generation, sd_bus_error *e) {
75778e21
MS
344 Iterator i;
345 Unit *u;
346 int r;
347
348 assert(tr);
349 assert(j);
350 assert(!j->transaction_prev);
351
352 /* Does a recursive sweep through the ordering graph, looking
1244d8d6 353 * for a cycle. If we find a cycle we try to break it. */
75778e21
MS
354
355 /* Have we seen this before? */
356 if (j->generation == generation) {
357 Job *k, *delete;
358
359 /* If the marker is NULL we have been here already and
360 * decided the job was loop-free from here. Hence
361 * shortcut things and return right-away. */
362 if (!j->marker)
363 return 0;
364
365 /* So, the marker is not NULL and we already have been
366 * here. We have a cycle. Let's try to break it. We go
367 * backwards in our path and try to find a suitable
368 * job to remove. We use the marker to find our way
369 * back, since smart how we are we stored our way back
370 * in there. */
f2341e0a 371 log_unit_warning(j->unit,
66870f90
ZJS
372 "Found ordering cycle on %s/%s",
373 j->unit->id, job_type_to_string(j->type));
75778e21
MS
374
375 delete = NULL;
376 for (k = from; k; k = ((k->generation == generation && k->marker != k) ? k->marker : NULL)) {
377
66870f90 378 /* logging for j not k here here to provide consistent narrative */
f2341e0a 379 log_unit_warning(j->unit,
14fe721b
ZJS
380 "Found dependency on %s/%s",
381 k->unit->id, job_type_to_string(k->type));
75778e21 382
ece174c5 383 if (!delete && hashmap_get(tr->jobs, k->unit) && !unit_matters_to_anchor(k->unit, k))
75778e21
MS
384 /* Ok, we can drop this one, so let's
385 * do so. */
386 delete = k;
75778e21
MS
387
388 /* Check if this in fact was the beginning of
389 * the cycle */
390 if (k == j)
391 break;
392 }
393
394
395 if (delete) {
66870f90 396 /* logging for j not k here here to provide consistent narrative */
f2341e0a 397 log_unit_warning(j->unit,
66870f90
ZJS
398 "Breaking ordering cycle by deleting job %s/%s",
399 delete->unit->id, job_type_to_string(delete->type));
f2341e0a 400 log_unit_error(delete->unit,
66870f90
ZJS
401 "Job %s/%s deleted to break ordering cycle starting with %s/%s",
402 delete->unit->id, job_type_to_string(delete->type),
403 j->unit->id, job_type_to_string(j->type));
1fc464f6 404 unit_status_printf(delete->unit, ANSI_HIGHLIGHT_RED " SKIP " ANSI_NORMAL,
297d0749 405 "Ordering cycle found, skipping %s");
75778e21
MS
406 transaction_delete_unit(tr, delete->unit);
407 return -EAGAIN;
408 }
409
410 log_error("Unable to break cycle");
411
7358dc02
ZJS
412 return sd_bus_error_setf(e, BUS_ERROR_TRANSACTION_ORDER_IS_CYCLIC,
413 "Transaction order is cyclic. See system logs for details.");
75778e21
MS
414 }
415
416 /* Make the marker point to where we come from, so that we can
417 * find our way backwards if we want to break a cycle. We use
418 * a special marker for the beginning: we point to
419 * ourselves. */
420 j->marker = from ? from : j;
421 j->generation = generation;
422
c5315881 423 /* We assume that the dependencies are bidirectional, and
75778e21
MS
424 * hence can ignore UNIT_AFTER */
425 SET_FOREACH(u, j->unit->dependencies[UNIT_BEFORE], i) {
426 Job *o;
427
428 /* Is there a job for this unit? */
429 o = hashmap_get(tr->jobs, u);
430 if (!o) {
431 /* Ok, there is no job for this in the
432 * transaction, but maybe there is already one
433 * running? */
434 o = u->job;
435 if (!o)
436 continue;
437 }
438
439 r = transaction_verify_order_one(tr, o, j, generation, e);
440 if (r < 0)
441 return r;
442 }
443
444 /* Ok, let's backtrack, and remember that this entry is not on
445 * our path anymore. */
446 j->marker = NULL;
447
448 return 0;
449}
450
718db961 451static int transaction_verify_order(Transaction *tr, unsigned *generation, sd_bus_error *e) {
75778e21
MS
452 Job *j;
453 int r;
454 Iterator i;
455 unsigned g;
456
457 assert(tr);
458 assert(generation);
459
460 /* Check if the ordering graph is cyclic. If it is, try to fix
461 * that up by dropping one of the jobs. */
462
463 g = (*generation)++;
464
3cc2aff1
LP
465 HASHMAP_FOREACH(j, tr->jobs, i) {
466 r = transaction_verify_order_one(tr, j, NULL, g, e);
467 if (r < 0)
75778e21 468 return r;
3cc2aff1 469 }
75778e21
MS
470
471 return 0;
472}
473
474static void transaction_collect_garbage(Transaction *tr) {
055163ad
MS
475 Iterator i;
476 Job *j;
75778e21
MS
477
478 assert(tr);
479
480 /* Drop jobs that are not required by any other job */
481
055163ad
MS
482rescan:
483 HASHMAP_FOREACH(j, tr->jobs, i) {
484 if (tr->anchor_job == j || j->object_list) {
485 /* log_debug("Keeping job %s/%s because of %s/%s", */
486 /* j->unit->id, job_type_to_string(j->type), */
487 /* j->object_list->subject ? j->object_list->subject->unit->id : "root", */
488 /* j->object_list->subject ? job_type_to_string(j->object_list->subject->type) : "root"); */
489 continue;
75778e21
MS
490 }
491
055163ad
MS
492 /* log_debug("Garbage collecting job %s/%s", j->unit->id, job_type_to_string(j->type)); */
493 transaction_delete_job(tr, j, true);
494 goto rescan;
495 }
75778e21
MS
496}
497
718db961 498static int transaction_is_destructive(Transaction *tr, JobMode mode, sd_bus_error *e) {
75778e21
MS
499 Iterator i;
500 Job *j;
501
502 assert(tr);
503
504 /* Checks whether applying this transaction means that
505 * existing jobs would be replaced */
506
507 HASHMAP_FOREACH(j, tr->jobs, i) {
508
509 /* Assume merged */
510 assert(!j->transaction_prev);
511 assert(!j->transaction_next);
512
23ade460 513 if (j->unit->job && (mode == JOB_FAIL || j->unit->job->irreversible) &&
c21b92ff 514 job_type_is_conflicting(j->unit->job->type, j->type))
7358dc02
ZJS
515 return sd_bus_error_setf(e, BUS_ERROR_TRANSACTION_IS_DESTRUCTIVE,
516 "Transaction is destructive.");
75778e21
MS
517 }
518
519 return 0;
520}
521
522static void transaction_minimize_impact(Transaction *tr) {
055163ad
MS
523 Job *j;
524 Iterator i;
525
75778e21
MS
526 assert(tr);
527
528 /* Drops all unnecessary jobs that reverse already active jobs
529 * or that stop a running service. */
530
055163ad
MS
531rescan:
532 HASHMAP_FOREACH(j, tr->jobs, i) {
533 LIST_FOREACH(transaction, j, j) {
534 bool stops_running_service, changes_existing_job;
75778e21 535
055163ad
MS
536 /* If it matters, we shouldn't drop it */
537 if (j->matters_to_anchor)
538 continue;
75778e21 539
055163ad
MS
540 /* Would this stop a running service?
541 * Would this change an existing job?
542 * If so, let's drop this entry */
75778e21 543
055163ad
MS
544 stops_running_service =
545 j->type == JOB_STOP && UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(j->unit));
75778e21 546
055163ad
MS
547 changes_existing_job =
548 j->unit->job &&
549 job_type_is_conflicting(j->type, j->unit->job->type);
75778e21 550
055163ad
MS
551 if (!stops_running_service && !changes_existing_job)
552 continue;
75778e21 553
055163ad 554 if (stops_running_service)
f2341e0a 555 log_unit_debug(j->unit,
66870f90
ZJS
556 "%s/%s would stop a running service.",
557 j->unit->id, job_type_to_string(j->type));
75778e21 558
055163ad 559 if (changes_existing_job)
f2341e0a 560 log_unit_debug(j->unit,
66870f90
ZJS
561 "%s/%s would change existing job.",
562 j->unit->id, job_type_to_string(j->type));
75778e21 563
055163ad 564 /* Ok, let's get rid of this */
f2341e0a 565 log_unit_debug(j->unit,
66870f90
ZJS
566 "Deleting %s/%s to minimize impact.",
567 j->unit->id, job_type_to_string(j->type));
75778e21 568
055163ad
MS
569 transaction_delete_job(tr, j, true);
570 goto rescan;
75778e21 571 }
055163ad 572 }
75778e21
MS
573}
574
575static int transaction_apply(Transaction *tr, Manager *m, JobMode mode) {
576 Iterator i;
577 Job *j;
578 int r;
579
580 /* Moves the transaction jobs to the set of active jobs */
581
255baef6 582 if (mode == JOB_ISOLATE || mode == JOB_FLUSH) {
75778e21
MS
583
584 /* When isolating first kill all installed jobs which
585 * aren't part of the new transaction */
75778e21
MS
586 HASHMAP_FOREACH(j, m->jobs, i) {
587 assert(j->installed);
588
589 if (hashmap_get(tr->jobs, j->unit))
590 continue;
591
5273510e
MS
592 /* Not invalidating recursively. Avoids triggering
593 * OnFailure= actions of dependent jobs. Also avoids
594 * invalidating our iterator. */
595 job_finish_and_invalidate(j, JOB_CANCELED, false);
75778e21
MS
596 }
597 }
598
599 HASHMAP_FOREACH(j, tr->jobs, i) {
600 /* Assume merged */
601 assert(!j->transaction_prev);
602 assert(!j->transaction_next);
603
75778e21
MS
604 r = hashmap_put(m->jobs, UINT32_TO_PTR(j->id), j);
605 if (r < 0)
606 goto rollback;
607 }
608
609 while ((j = hashmap_steal_first(tr->jobs))) {
656bbffc
MS
610 Job *installed_job;
611
75778e21
MS
612 /* Clean the job dependencies */
613 transaction_unlink_job(tr, j, false);
614
656bbffc
MS
615 installed_job = job_install(j);
616 if (installed_job != j) {
617 /* j has been merged into a previously installed job */
618 if (tr->anchor_job == j)
619 tr->anchor_job = installed_job;
620 hashmap_remove(m->jobs, UINT32_TO_PTR(j->id));
621 job_free(j);
622 j = installed_job;
623 }
05d576f1 624
75778e21
MS
625 job_add_to_run_queue(j);
626 job_add_to_dbus_queue(j);
627 job_start_timer(j);
c65eb836 628 job_shutdown_magic(j);
75778e21
MS
629 }
630
75778e21
MS
631 return 0;
632
633rollback:
634
d6a093d0 635 HASHMAP_FOREACH(j, tr->jobs, i)
75778e21 636 hashmap_remove(m->jobs, UINT32_TO_PTR(j->id));
75778e21
MS
637
638 return r;
639}
640
718db961 641int transaction_activate(Transaction *tr, Manager *m, JobMode mode, sd_bus_error *e) {
4e7bd268
MS
642 Iterator i;
643 Job *j;
75778e21
MS
644 int r;
645 unsigned generation = 1;
646
647 assert(tr);
648
649 /* This applies the changes recorded in tr->jobs to
650 * the actual list of jobs, if possible. */
651
4e7bd268
MS
652 /* Reset the generation counter of all installed jobs. The detection of cycles
653 * looks at installed jobs. If they had a non-zero generation from some previous
654 * walk of the graph, the algorithm would break. */
655 HASHMAP_FOREACH(j, m->jobs, i)
656 j->generation = 0;
657
75778e21 658 /* First step: figure out which jobs matter */
0d9989aa 659 transaction_find_jobs_that_matter_to_anchor(tr->anchor_job, generation++);
75778e21
MS
660
661 /* Second step: Try not to stop any running services if
662 * we don't have to. Don't try to reverse running
663 * jobs if we don't have to. */
664 if (mode == JOB_FAIL)
665 transaction_minimize_impact(tr);
666
667 /* Third step: Drop redundant jobs */
668 transaction_drop_redundant(tr);
669
670 for (;;) {
671 /* Fourth step: Let's remove unneeded jobs that might
672 * be lurking. */
673 if (mode != JOB_ISOLATE)
674 transaction_collect_garbage(tr);
675
676 /* Fifth step: verify order makes sense and correct
677 * cycles if necessary and possible */
678 r = transaction_verify_order(tr, &generation, e);
679 if (r >= 0)
680 break;
681
682 if (r != -EAGAIN) {
718db961 683 log_warning("Requested transaction contains an unfixable cyclic ordering dependency: %s", bus_error_message(e, r));
75778e21
MS
684 return r;
685 }
686
687 /* Let's see if the resulting transaction ordering
688 * graph is still cyclic... */
689 }
690
691 for (;;) {
692 /* Sixth step: let's drop unmergeable entries if
693 * necessary and possible, merge entries we can
694 * merge */
695 r = transaction_merge_jobs(tr, e);
696 if (r >= 0)
697 break;
698
699 if (r != -EAGAIN) {
718db961 700 log_warning("Requested transaction contains unmergeable jobs: %s", bus_error_message(e, r));
75778e21
MS
701 return r;
702 }
703
704 /* Seventh step: an entry got dropped, let's garbage
705 * collect its dependencies. */
706 if (mode != JOB_ISOLATE)
707 transaction_collect_garbage(tr);
708
709 /* Let's see if the resulting transaction still has
710 * unmergeable entries ... */
711 }
712
713 /* Eights step: Drop redundant jobs again, if the merging now allows us to drop more. */
714 transaction_drop_redundant(tr);
715
716 /* Ninth step: check whether we can actually apply this */
23ade460
MS
717 r = transaction_is_destructive(tr, mode, e);
718 if (r < 0) {
718db961 719 log_notice("Requested transaction contradicts existing jobs: %s", bus_error_message(e, r));
23ade460 720 return r;
75778e21
MS
721 }
722
723 /* Tenth step: apply changes */
724 r = transaction_apply(tr, m, mode);
23bbb0de
MS
725 if (r < 0)
726 return log_warning_errno(r, "Failed to apply transaction: %m");
75778e21
MS
727
728 assert(hashmap_isempty(tr->jobs));
75778e21 729
f2b68789
LP
730 if (!hashmap_isempty(m->jobs)) {
731 /* Are there any jobs now? Then make sure we have the
732 * idle pipe around. We don't really care too much
733 * whether this works or not, as the idle pipe is a
734 * feature for cosmetics, not actually useful for
735 * anything beyond that. */
736
31a7eb86
ZJS
737 if (m->idle_pipe[0] < 0 && m->idle_pipe[1] < 0 &&
738 m->idle_pipe[2] < 0 && m->idle_pipe[3] < 0) {
1afaa7e8
LP
739 (void) pipe2(m->idle_pipe, O_NONBLOCK|O_CLOEXEC);
740 (void) pipe2(m->idle_pipe + 2, O_NONBLOCK|O_CLOEXEC);
31a7eb86 741 }
f2b68789
LP
742 }
743
75778e21
MS
744 return 0;
745}
746
4bd29fe5 747static Job* transaction_add_one_job(Transaction *tr, JobType type, Unit *unit, bool *is_new) {
75778e21
MS
748 Job *j, *f;
749
750 assert(tr);
751 assert(unit);
752
753 /* Looks for an existing prospective job and returns that. If
754 * it doesn't exist it is created and added to the prospective
755 * jobs list. */
756
757 f = hashmap_get(tr->jobs, unit);
758
759 LIST_FOREACH(transaction, j, f) {
760 assert(j->unit == unit);
761
762 if (j->type == type) {
763 if (is_new)
764 *is_new = false;
765 return j;
766 }
767 }
768
3c956cfe
MS
769 j = job_new(unit, type);
770 if (!j)
771 return NULL;
75778e21
MS
772
773 j->generation = 0;
774 j->marker = NULL;
775 j->matters_to_anchor = false;
23ade460 776 j->irreversible = tr->irreversible;
75778e21 777
71fda00f 778 LIST_PREPEND(transaction, f, j);
75778e21
MS
779
780 if (hashmap_replace(tr->jobs, unit, f) < 0) {
71fda00f 781 LIST_REMOVE(transaction, f, j);
75778e21
MS
782 job_free(j);
783 return NULL;
784 }
785
786 if (is_new)
787 *is_new = true;
788
789 /* log_debug("Added job %s/%s to transaction.", unit->id, job_type_to_string(type)); */
790
791 return j;
792}
793
794static void transaction_unlink_job(Transaction *tr, Job *j, bool delete_dependencies) {
795 assert(tr);
796 assert(j);
797
798 if (j->transaction_prev)
799 j->transaction_prev->transaction_next = j->transaction_next;
800 else if (j->transaction_next)
801 hashmap_replace(tr->jobs, j->unit, j->transaction_next);
802 else
803 hashmap_remove_value(tr->jobs, j->unit, j);
804
805 if (j->transaction_next)
806 j->transaction_next->transaction_prev = j->transaction_prev;
807
808 j->transaction_prev = j->transaction_next = NULL;
809
810 while (j->subject_list)
e6eda1f2 811 job_dependency_free(j->subject_list);
75778e21
MS
812
813 while (j->object_list) {
814 Job *other = j->object_list->matters ? j->object_list->subject : NULL;
815
e6eda1f2 816 job_dependency_free(j->object_list);
75778e21
MS
817
818 if (other && delete_dependencies) {
f2341e0a 819 log_unit_debug(other->unit,
66870f90
ZJS
820 "Deleting job %s/%s as dependency of job %s/%s",
821 other->unit->id, job_type_to_string(other->type),
822 j->unit->id, job_type_to_string(j->type));
75778e21
MS
823 transaction_delete_job(tr, other, delete_dependencies);
824 }
825 }
826}
827
828int transaction_add_job_and_dependencies(
829 Transaction *tr,
830 JobType type,
831 Unit *unit,
832 Job *by,
833 bool matters,
75778e21
MS
834 bool conflicts,
835 bool ignore_requirements,
836 bool ignore_order,
718db961 837 sd_bus_error *e) {
75778e21
MS
838 Job *ret;
839 Iterator i;
840 Unit *dep;
841 int r;
842 bool is_new;
843
844 assert(tr);
845 assert(type < _JOB_TYPE_MAX);
e0209d83 846 assert(type < _JOB_TYPE_MAX_IN_TRANSACTION);
75778e21
MS
847 assert(unit);
848
43706330
IS
849 /* Before adding jobs for this unit, let's ensure that its state has been loaded
850 * This matters when jobs are spawned as part of coldplugging itself (see e. g. path_coldplug()).
851 * This way, we "recursively" coldplug units, ensuring that we do not look at state of
852 * not-yet-coldplugged units. */
853 if (unit->manager->n_reloading > 0)
854 unit_coldplug(unit);
855
75778e21
MS
856 /* log_debug("Pulling in %s/%s from %s/%s", */
857 /* unit->id, job_type_to_string(type), */
858 /* by ? by->unit->id : "NA", */
859 /* by ? job_type_to_string(by->type) : "NA"); */
860
7358dc02 861 if (!IN_SET(unit->load_state, UNIT_LOADED, UNIT_ERROR, UNIT_NOT_FOUND, UNIT_MASKED))
c6497ccb 862 return sd_bus_error_setf(e, BUS_ERROR_LOAD_FAILED, "Unit %s is not loaded properly.", unit->id);
75778e21 863
ee87525c
FB
864 if (type != JOB_STOP) {
865 r = bus_unit_check_load_state(unit, e);
866 if (r < 0)
867 return r;
75778e21
MS
868 }
869
7358dc02
ZJS
870 if (!unit_job_is_applicable(unit, type))
871 return sd_bus_error_setf(e, BUS_ERROR_JOB_TYPE_NOT_APPLICABLE,
872 "Job type %s is not applicable for unit %s.",
873 job_type_to_string(type), unit->id);
75778e21 874
75778e21
MS
875
876 /* First add the job. */
4bd29fe5 877 ret = transaction_add_one_job(tr, type, unit, &is_new);
75778e21
MS
878 if (!ret)
879 return -ENOMEM;
880
881 ret->ignore_order = ret->ignore_order || ignore_order;
882
883 /* Then, add a link to the job. */
e6eda1f2
MS
884 if (by) {
885 if (!job_dependency_new(by, ret, matters, conflicts))
886 return -ENOMEM;
887 } else {
888 /* If the job has no parent job, it is the anchor job. */
4483f694
MS
889 assert(!tr->anchor_job);
890 tr->anchor_job = ret;
b94fbd30 891 }
e0209d83
MS
892
893 if (is_new && !ignore_requirements && type != JOB_NOP) {
75778e21
MS
894 Set *following;
895
896 /* If we are following some other unit, make sure we
897 * add all dependencies of everybody following. */
898 if (unit_following_set(ret->unit, &following) > 0) {
899 SET_FOREACH(dep, following, i) {
4bd29fe5 900 r = transaction_add_job_and_dependencies(tr, type, dep, ret, false, false, false, ignore_order, e);
75778e21 901 if (r < 0) {
f2341e0a 902 log_unit_warning(dep, "Cannot add dependency job for, ignoring: %s", bus_error_message(e, r));
69301c17 903 sd_bus_error_free(e);
75778e21
MS
904 }
905 }
906
907 set_free(following);
908 }
909
910 /* Finally, recursively add in all dependencies. */
e0209d83 911 if (type == JOB_START || type == JOB_RESTART) {
75778e21 912 SET_FOREACH(dep, ret->unit->dependencies[UNIT_REQUIRES], i) {
4bd29fe5 913 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, ret, true, false, false, ignore_order, e);
75778e21
MS
914 if (r < 0) {
915 if (r != -EBADR)
916 goto fail;
917
69301c17 918 sd_bus_error_free(e);
75778e21
MS
919 }
920 }
921
7f2cddae 922 SET_FOREACH(dep, ret->unit->dependencies[UNIT_BINDS_TO], i) {
4bd29fe5 923 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, ret, true, false, false, ignore_order, e);
75778e21
MS
924 if (r < 0) {
925 if (r != -EBADR)
926 goto fail;
927
69301c17 928 sd_bus_error_free(e);
75778e21
MS
929 }
930 }
931
75778e21 932 SET_FOREACH(dep, ret->unit->dependencies[UNIT_WANTS], i) {
4bd29fe5 933 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, ret, false, false, false, ignore_order, e);
75778e21 934 if (r < 0) {
f14637fc 935 /* unit masked and unit not found are not considered as errors. */
f2341e0a 936 log_unit_full(dep,
f14637fc
FB
937 r == -EBADR || r == -ENOENT ? LOG_DEBUG : LOG_WARNING,
938 r, "Cannot add dependency job, ignoring: %s",
f2341e0a 939 bus_error_message(e, r));
69301c17 940 sd_bus_error_free(e);
75778e21
MS
941 }
942 }
943
944 SET_FOREACH(dep, ret->unit->dependencies[UNIT_REQUISITE], i) {
4bd29fe5 945 r = transaction_add_job_and_dependencies(tr, JOB_VERIFY_ACTIVE, dep, ret, true, false, false, ignore_order, e);
75778e21
MS
946 if (r < 0) {
947 if (r != -EBADR)
948 goto fail;
949
69301c17 950 sd_bus_error_free(e);
75778e21
MS
951 }
952 }
953
75778e21 954 SET_FOREACH(dep, ret->unit->dependencies[UNIT_CONFLICTS], i) {
4bd29fe5 955 r = transaction_add_job_and_dependencies(tr, JOB_STOP, dep, ret, true, true, false, ignore_order, e);
75778e21
MS
956 if (r < 0) {
957 if (r != -EBADR)
958 goto fail;
959
69301c17 960 sd_bus_error_free(e);
75778e21
MS
961 }
962 }
963
964 SET_FOREACH(dep, ret->unit->dependencies[UNIT_CONFLICTED_BY], i) {
4bd29fe5 965 r = transaction_add_job_and_dependencies(tr, JOB_STOP, dep, ret, false, false, false, ignore_order, e);
75778e21 966 if (r < 0) {
f2341e0a
LP
967 log_unit_warning(dep,
968 "Cannot add dependency job, ignoring: %s",
969 bus_error_message(e, r));
69301c17 970 sd_bus_error_free(e);
75778e21
MS
971 }
972 }
973
974 }
975
e0209d83 976 if (type == JOB_STOP || type == JOB_RESTART) {
ce74e769
LP
977 static const UnitDependency propagate_deps[] = {
978 UNIT_REQUIRED_BY,
979 UNIT_REQUISITE_OF,
980 UNIT_BOUND_BY,
981 UNIT_CONSISTS_OF,
982 };
75778e21 983
c6497ccb 984 JobType ptype;
ce74e769 985 unsigned j;
75778e21 986
c6497ccb
LP
987 /* We propagate STOP as STOP, but RESTART only
988 * as TRY_RESTART, in order not to start
989 * dependencies that are not around. */
990 ptype = type == JOB_RESTART ? JOB_TRY_RESTART : type;
991
ce74e769
LP
992 for (j = 0; j < ELEMENTSOF(propagate_deps); j++)
993 SET_FOREACH(dep, ret->unit->dependencies[propagate_deps[j]], i) {
48894cd0 994 JobType nt;
85e9a101 995
48894cd0
LP
996 nt = job_type_collapse(ptype, dep);
997 if (nt == JOB_NOP)
998 continue;
999
4bd29fe5 1000 r = transaction_add_job_and_dependencies(tr, nt, dep, ret, true, false, false, ignore_order, e);
ce74e769
LP
1001 if (r < 0) {
1002 if (r != -EBADR)
1003 goto fail;
85e9a101 1004
718db961 1005 sd_bus_error_free(e);
ce74e769 1006 }
85e9a101 1007 }
75778e21
MS
1008 }
1009
e0209d83 1010 if (type == JOB_RELOAD) {
75778e21 1011
7f2cddae 1012 SET_FOREACH(dep, ret->unit->dependencies[UNIT_PROPAGATES_RELOAD_TO], i) {
4bd29fe5 1013 r = transaction_add_job_and_dependencies(tr, JOB_RELOAD, dep, ret, false, false, false, ignore_order, e);
75778e21 1014 if (r < 0) {
f2341e0a
LP
1015 log_unit_warning(dep,
1016 "Cannot add dependency reload job, ignoring: %s",
1017 bus_error_message(e, r));
69301c17 1018 sd_bus_error_free(e);
75778e21
MS
1019 }
1020 }
1021 }
1022
e0209d83 1023 /* JOB_VERIFY_STARTED require no dependency handling */
75778e21
MS
1024 }
1025
75778e21
MS
1026 return 0;
1027
1028fail:
1029 return r;
1030}
1031
1032int transaction_add_isolate_jobs(Transaction *tr, Manager *m) {
1033 Iterator i;
1034 Unit *u;
1035 char *k;
1036 int r;
1037
1038 assert(tr);
1039 assert(m);
1040
1041 HASHMAP_FOREACH_KEY(u, k, m->units, i) {
1042
1043 /* ignore aliases */
1044 if (u->id != k)
1045 continue;
1046
1047 if (u->ignore_on_isolate)
1048 continue;
1049
1050 /* No need to stop inactive jobs */
1051 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(u)) && !u->job)
1052 continue;
1053
1054 /* Is there already something listed for this? */
1055 if (hashmap_get(tr->jobs, u))
1056 continue;
1057
4bd29fe5 1058 r = transaction_add_job_and_dependencies(tr, JOB_STOP, u, tr->anchor_job, true, false, false, false, NULL);
75778e21 1059 if (r < 0)
f2341e0a 1060 log_unit_warning_errno(u, r, "Cannot add isolate job, ignoring: %m");
75778e21
MS
1061 }
1062
1063 return 0;
1064}
1065
23ade460 1066Transaction *transaction_new(bool irreversible) {
75778e21
MS
1067 Transaction *tr;
1068
1069 tr = new0(Transaction, 1);
1070 if (!tr)
1071 return NULL;
1072
d5099efc 1073 tr->jobs = hashmap_new(NULL);
75778e21
MS
1074 if (!tr->jobs) {
1075 free(tr);
1076 return NULL;
1077 }
1078
23ade460
MS
1079 tr->irreversible = irreversible;
1080
75778e21
MS
1081 return tr;
1082}
1083
1084void transaction_free(Transaction *tr) {
1085 assert(hashmap_isempty(tr->jobs));
1086 hashmap_free(tr->jobs);
1087 free(tr);
1088}