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