]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/transaction.c
b28fc7678576f24eefaf3cfacc39bcc176af6f66
[thirdparty/systemd.git] / src / core / transaction.c
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
20 #include <fcntl.h>
21 #include <unistd.h>
22
23 #include "alloc-util.h"
24 #include "bus-common-errors.h"
25 #include "bus-error.h"
26 #include "terminal-util.h"
27 #include "transaction.h"
28 #include "dbus-unit.h"
29
30 static void transaction_unlink_job(Transaction *tr, Job *j, bool delete_dependencies);
31
32 static 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
40 job_free(j);
41 }
42
43 static 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
53 void transaction_abort(Transaction *tr) {
54 Job *j;
55
56 assert(tr);
57
58 while ((j = hashmap_first(tr->jobs)))
59 transaction_delete_job(tr, j, false);
60
61 assert(hashmap_isempty(tr->jobs));
62 }
63
64 static void transaction_find_jobs_that_matter_to_anchor(Job *j, unsigned generation) {
65 JobDependency *l;
66
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
72 j->matters_to_anchor = true;
73 j->generation = generation;
74
75 LIST_FOREACH(subject, l, j->subject_list) {
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
85 transaction_find_jobs_that_matter_to_anchor(l->object, generation);
86 }
87 }
88
89 static 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;
101 j->irreversible = j->irreversible || other->irreversible;
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
142 _pure_ static bool job_is_conflicted_by(Job *j) {
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
157 static 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
190 log_unit_debug(j->unit,
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)));
194 log_unit_debug(k->unit,
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)));
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. */
223 log_unit_debug(d->unit,
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),
227 d->unit->id, job_type_to_string(d->type));
228 transaction_delete_job(tr, d, true);
229 return 0;
230 }
231
232 return -EINVAL;
233 }
234
235 static int transaction_merge_jobs(Transaction *tr, sd_bus_error *e) {
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) {
250 if (job_type_merge_and_collapse(&t, k->type, j->unit) >= 0)
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 */
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);
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
279 /* Merge all transaction jobs for j->unit */
280 LIST_FOREACH(transaction, k, j->transaction_next)
281 assert_se(job_type_merge_and_collapse(&t, k->type, j->unit) == 0);
282
283 while ((k = j->transaction_next)) {
284 if (tr->anchor_job == k) {
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
291 assert(!j->transaction_next);
292 assert(!j->transaction_prev);
293 }
294
295 return 0;
296 }
297
298 static void transaction_drop_redundant(Transaction *tr) {
299 Job *j;
300 Iterator i;
301
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. */
305
306 assert(tr);
307
308 rescan:
309 HASHMAP_FOREACH(j, tr->jobs, i) {
310 Job *k;
311
312 LIST_FOREACH(transaction, k, j) {
313
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;
318 }
319
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 }
325 }
326
327 _pure_ static bool unit_matters_to_anchor(Unit *u, Job *j) {
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
341 static int transaction_verify_order_one(Transaction *tr, Job *j, Job *from, unsigned generation, sd_bus_error *e) {
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
351 * for a cycle. If we find a cycle we try to break it. */
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. */
369 log_unit_warning(j->unit,
370 "Found ordering cycle on %s/%s",
371 j->unit->id, job_type_to_string(j->type));
372
373 delete = NULL;
374 for (k = from; k; k = ((k->generation == generation && k->marker != k) ? k->marker : NULL)) {
375
376 /* logging for j not k here here to provide consistent narrative */
377 log_unit_warning(j->unit,
378 "Found dependency on %s/%s",
379 k->unit->id, job_type_to_string(k->type));
380
381 if (!delete && hashmap_get(tr->jobs, k->unit) && !unit_matters_to_anchor(k->unit, k))
382 /* Ok, we can drop this one, so let's
383 * do so. */
384 delete = k;
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) {
394 /* logging for j not k here here to provide consistent narrative */
395 log_unit_warning(j->unit,
396 "Breaking ordering cycle by deleting job %s/%s",
397 delete->unit->id, job_type_to_string(delete->type));
398 log_unit_error(delete->unit,
399 "Job %s/%s deleted to break ordering cycle starting with %s/%s",
400 delete->unit->id, job_type_to_string(delete->type),
401 j->unit->id, job_type_to_string(j->type));
402 unit_status_printf(delete->unit, ANSI_HIGHLIGHT_RED " SKIP " ANSI_NORMAL,
403 "Ordering cycle found, skipping %s");
404 transaction_delete_unit(tr, delete->unit);
405 return -EAGAIN;
406 }
407
408 log_error("Unable to break cycle");
409
410 return sd_bus_error_setf(e, BUS_ERROR_TRANSACTION_ORDER_IS_CYCLIC,
411 "Transaction order is cyclic. See system logs for details.");
412 }
413
414 /* Make the marker point to where we come from, so that we can
415 * find our way backwards if we want to break a cycle. We use
416 * a special marker for the beginning: we point to
417 * ourselves. */
418 j->marker = from ? from : j;
419 j->generation = generation;
420
421 /* We assume that the dependencies are bidirectional, and
422 * hence can ignore UNIT_AFTER */
423 SET_FOREACH(u, j->unit->dependencies[UNIT_BEFORE], i) {
424 Job *o;
425
426 /* Is there a job for this unit? */
427 o = hashmap_get(tr->jobs, u);
428 if (!o) {
429 /* Ok, there is no job for this in the
430 * transaction, but maybe there is already one
431 * running? */
432 o = u->job;
433 if (!o)
434 continue;
435 }
436
437 r = transaction_verify_order_one(tr, o, j, generation, e);
438 if (r < 0)
439 return r;
440 }
441
442 /* Ok, let's backtrack, and remember that this entry is not on
443 * our path anymore. */
444 j->marker = NULL;
445
446 return 0;
447 }
448
449 static int transaction_verify_order(Transaction *tr, unsigned *generation, sd_bus_error *e) {
450 Job *j;
451 int r;
452 Iterator i;
453 unsigned g;
454
455 assert(tr);
456 assert(generation);
457
458 /* Check if the ordering graph is cyclic. If it is, try to fix
459 * that up by dropping one of the jobs. */
460
461 g = (*generation)++;
462
463 HASHMAP_FOREACH(j, tr->jobs, i) {
464 r = transaction_verify_order_one(tr, j, NULL, g, e);
465 if (r < 0)
466 return r;
467 }
468
469 return 0;
470 }
471
472 static void transaction_collect_garbage(Transaction *tr) {
473 Iterator i;
474 Job *j;
475
476 assert(tr);
477
478 /* Drop jobs that are not required by any other job */
479
480 rescan:
481 HASHMAP_FOREACH(j, tr->jobs, i) {
482 if (tr->anchor_job == j || j->object_list) {
483 /* log_debug("Keeping job %s/%s because of %s/%s", */
484 /* j->unit->id, job_type_to_string(j->type), */
485 /* j->object_list->subject ? j->object_list->subject->unit->id : "root", */
486 /* j->object_list->subject ? job_type_to_string(j->object_list->subject->type) : "root"); */
487 continue;
488 }
489
490 /* log_debug("Garbage collecting job %s/%s", j->unit->id, job_type_to_string(j->type)); */
491 transaction_delete_job(tr, j, true);
492 goto rescan;
493 }
494 }
495
496 static int transaction_is_destructive(Transaction *tr, JobMode mode, sd_bus_error *e) {
497 Iterator i;
498 Job *j;
499
500 assert(tr);
501
502 /* Checks whether applying this transaction means that
503 * existing jobs would be replaced */
504
505 HASHMAP_FOREACH(j, tr->jobs, i) {
506
507 /* Assume merged */
508 assert(!j->transaction_prev);
509 assert(!j->transaction_next);
510
511 if (j->unit->job && (mode == JOB_FAIL || j->unit->job->irreversible) &&
512 job_type_is_conflicting(j->unit->job->type, j->type))
513 return sd_bus_error_setf(e, BUS_ERROR_TRANSACTION_IS_DESTRUCTIVE,
514 "Transaction is destructive.");
515 }
516
517 return 0;
518 }
519
520 static void transaction_minimize_impact(Transaction *tr) {
521 Job *j;
522 Iterator i;
523
524 assert(tr);
525
526 /* Drops all unnecessary jobs that reverse already active jobs
527 * or that stop a running service. */
528
529 rescan:
530 HASHMAP_FOREACH(j, tr->jobs, i) {
531 LIST_FOREACH(transaction, j, j) {
532 bool stops_running_service, changes_existing_job;
533
534 /* If it matters, we shouldn't drop it */
535 if (j->matters_to_anchor)
536 continue;
537
538 /* Would this stop a running service?
539 * Would this change an existing job?
540 * If so, let's drop this entry */
541
542 stops_running_service =
543 j->type == JOB_STOP && UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(j->unit));
544
545 changes_existing_job =
546 j->unit->job &&
547 job_type_is_conflicting(j->type, j->unit->job->type);
548
549 if (!stops_running_service && !changes_existing_job)
550 continue;
551
552 if (stops_running_service)
553 log_unit_debug(j->unit,
554 "%s/%s would stop a running service.",
555 j->unit->id, job_type_to_string(j->type));
556
557 if (changes_existing_job)
558 log_unit_debug(j->unit,
559 "%s/%s would change existing job.",
560 j->unit->id, job_type_to_string(j->type));
561
562 /* Ok, let's get rid of this */
563 log_unit_debug(j->unit,
564 "Deleting %s/%s to minimize impact.",
565 j->unit->id, job_type_to_string(j->type));
566
567 transaction_delete_job(tr, j, true);
568 goto rescan;
569 }
570 }
571 }
572
573 static int transaction_apply(Transaction *tr, Manager *m, JobMode mode) {
574 Iterator i;
575 Job *j;
576 int r;
577
578 /* Moves the transaction jobs to the set of active jobs */
579
580 if (mode == JOB_ISOLATE || mode == JOB_FLUSH) {
581
582 /* When isolating first kill all installed jobs which
583 * aren't part of the new transaction */
584 HASHMAP_FOREACH(j, m->jobs, i) {
585 assert(j->installed);
586
587 if (hashmap_get(tr->jobs, j->unit))
588 continue;
589
590 /* Not invalidating recursively. Avoids triggering
591 * OnFailure= actions of dependent jobs. Also avoids
592 * invalidating our iterator. */
593 job_finish_and_invalidate(j, JOB_CANCELED, false);
594 }
595 }
596
597 HASHMAP_FOREACH(j, tr->jobs, i) {
598 /* Assume merged */
599 assert(!j->transaction_prev);
600 assert(!j->transaction_next);
601
602 r = hashmap_put(m->jobs, UINT32_TO_PTR(j->id), j);
603 if (r < 0)
604 goto rollback;
605 }
606
607 while ((j = hashmap_steal_first(tr->jobs))) {
608 Job *installed_job;
609
610 /* Clean the job dependencies */
611 transaction_unlink_job(tr, j, false);
612
613 installed_job = job_install(j);
614 if (installed_job != j) {
615 /* j has been merged into a previously installed job */
616 if (tr->anchor_job == j)
617 tr->anchor_job = installed_job;
618 hashmap_remove(m->jobs, UINT32_TO_PTR(j->id));
619 job_free(j);
620 j = installed_job;
621 }
622
623 job_add_to_run_queue(j);
624 job_add_to_dbus_queue(j);
625 job_start_timer(j);
626 job_shutdown_magic(j);
627 }
628
629 return 0;
630
631 rollback:
632
633 HASHMAP_FOREACH(j, tr->jobs, i)
634 hashmap_remove(m->jobs, UINT32_TO_PTR(j->id));
635
636 return r;
637 }
638
639 int transaction_activate(Transaction *tr, Manager *m, JobMode mode, sd_bus_error *e) {
640 Iterator i;
641 Job *j;
642 int r;
643 unsigned generation = 1;
644
645 assert(tr);
646
647 /* This applies the changes recorded in tr->jobs to
648 * the actual list of jobs, if possible. */
649
650 /* Reset the generation counter of all installed jobs. The detection of cycles
651 * looks at installed jobs. If they had a non-zero generation from some previous
652 * walk of the graph, the algorithm would break. */
653 HASHMAP_FOREACH(j, m->jobs, i)
654 j->generation = 0;
655
656 /* First step: figure out which jobs matter */
657 transaction_find_jobs_that_matter_to_anchor(tr->anchor_job, generation++);
658
659 /* Second step: Try not to stop any running services if
660 * we don't have to. Don't try to reverse running
661 * jobs if we don't have to. */
662 if (mode == JOB_FAIL)
663 transaction_minimize_impact(tr);
664
665 /* Third step: Drop redundant jobs */
666 transaction_drop_redundant(tr);
667
668 for (;;) {
669 /* Fourth step: Let's remove unneeded jobs that might
670 * be lurking. */
671 if (mode != JOB_ISOLATE)
672 transaction_collect_garbage(tr);
673
674 /* Fifth step: verify order makes sense and correct
675 * cycles if necessary and possible */
676 r = transaction_verify_order(tr, &generation, e);
677 if (r >= 0)
678 break;
679
680 if (r != -EAGAIN) {
681 log_warning("Requested transaction contains an unfixable cyclic ordering dependency: %s", bus_error_message(e, r));
682 return r;
683 }
684
685 /* Let's see if the resulting transaction ordering
686 * graph is still cyclic... */
687 }
688
689 for (;;) {
690 /* Sixth step: let's drop unmergeable entries if
691 * necessary and possible, merge entries we can
692 * merge */
693 r = transaction_merge_jobs(tr, e);
694 if (r >= 0)
695 break;
696
697 if (r != -EAGAIN) {
698 log_warning("Requested transaction contains unmergeable jobs: %s", bus_error_message(e, r));
699 return r;
700 }
701
702 /* Seventh step: an entry got dropped, let's garbage
703 * collect its dependencies. */
704 if (mode != JOB_ISOLATE)
705 transaction_collect_garbage(tr);
706
707 /* Let's see if the resulting transaction still has
708 * unmergeable entries ... */
709 }
710
711 /* Eights step: Drop redundant jobs again, if the merging now allows us to drop more. */
712 transaction_drop_redundant(tr);
713
714 /* Ninth step: check whether we can actually apply this */
715 r = transaction_is_destructive(tr, mode, e);
716 if (r < 0) {
717 log_notice("Requested transaction contradicts existing jobs: %s", bus_error_message(e, r));
718 return r;
719 }
720
721 /* Tenth step: apply changes */
722 r = transaction_apply(tr, m, mode);
723 if (r < 0)
724 return log_warning_errno(r, "Failed to apply transaction: %m");
725
726 assert(hashmap_isempty(tr->jobs));
727
728 if (!hashmap_isempty(m->jobs)) {
729 /* Are there any jobs now? Then make sure we have the
730 * idle pipe around. We don't really care too much
731 * whether this works or not, as the idle pipe is a
732 * feature for cosmetics, not actually useful for
733 * anything beyond that. */
734
735 if (m->idle_pipe[0] < 0 && m->idle_pipe[1] < 0 &&
736 m->idle_pipe[2] < 0 && m->idle_pipe[3] < 0) {
737 (void) pipe2(m->idle_pipe, O_NONBLOCK|O_CLOEXEC);
738 (void) pipe2(m->idle_pipe + 2, O_NONBLOCK|O_CLOEXEC);
739 }
740 }
741
742 return 0;
743 }
744
745 static Job* transaction_add_one_job(Transaction *tr, JobType type, Unit *unit, bool *is_new) {
746 Job *j, *f;
747
748 assert(tr);
749 assert(unit);
750
751 /* Looks for an existing prospective job and returns that. If
752 * it doesn't exist it is created and added to the prospective
753 * jobs list. */
754
755 f = hashmap_get(tr->jobs, unit);
756
757 LIST_FOREACH(transaction, j, f) {
758 assert(j->unit == unit);
759
760 if (j->type == type) {
761 if (is_new)
762 *is_new = false;
763 return j;
764 }
765 }
766
767 j = job_new(unit, type);
768 if (!j)
769 return NULL;
770
771 j->generation = 0;
772 j->marker = NULL;
773 j->matters_to_anchor = false;
774 j->irreversible = tr->irreversible;
775
776 LIST_PREPEND(transaction, f, j);
777
778 if (hashmap_replace(tr->jobs, unit, f) < 0) {
779 LIST_REMOVE(transaction, f, j);
780 job_free(j);
781 return NULL;
782 }
783
784 if (is_new)
785 *is_new = true;
786
787 /* log_debug("Added job %s/%s to transaction.", unit->id, job_type_to_string(type)); */
788
789 return j;
790 }
791
792 static void transaction_unlink_job(Transaction *tr, Job *j, bool delete_dependencies) {
793 assert(tr);
794 assert(j);
795
796 if (j->transaction_prev)
797 j->transaction_prev->transaction_next = j->transaction_next;
798 else if (j->transaction_next)
799 hashmap_replace(tr->jobs, j->unit, j->transaction_next);
800 else
801 hashmap_remove_value(tr->jobs, j->unit, j);
802
803 if (j->transaction_next)
804 j->transaction_next->transaction_prev = j->transaction_prev;
805
806 j->transaction_prev = j->transaction_next = NULL;
807
808 while (j->subject_list)
809 job_dependency_free(j->subject_list);
810
811 while (j->object_list) {
812 Job *other = j->object_list->matters ? j->object_list->subject : NULL;
813
814 job_dependency_free(j->object_list);
815
816 if (other && delete_dependencies) {
817 log_unit_debug(other->unit,
818 "Deleting job %s/%s as dependency of job %s/%s",
819 other->unit->id, job_type_to_string(other->type),
820 j->unit->id, job_type_to_string(j->type));
821 transaction_delete_job(tr, other, delete_dependencies);
822 }
823 }
824 }
825
826 int transaction_add_job_and_dependencies(
827 Transaction *tr,
828 JobType type,
829 Unit *unit,
830 Job *by,
831 bool matters,
832 bool conflicts,
833 bool ignore_requirements,
834 bool ignore_order,
835 sd_bus_error *e) {
836 Job *ret;
837 Iterator i;
838 Unit *dep;
839 int r;
840 bool is_new;
841
842 assert(tr);
843 assert(type < _JOB_TYPE_MAX);
844 assert(type < _JOB_TYPE_MAX_IN_TRANSACTION);
845 assert(unit);
846
847 /* Before adding jobs for this unit, let's ensure that its state has been loaded
848 * This matters when jobs are spawned as part of coldplugging itself (see e. g. path_coldplug()).
849 * This way, we "recursively" coldplug units, ensuring that we do not look at state of
850 * not-yet-coldplugged units. */
851 if (unit->manager->n_reloading > 0)
852 unit_coldplug(unit);
853
854 /* log_debug("Pulling in %s/%s from %s/%s", */
855 /* unit->id, job_type_to_string(type), */
856 /* by ? by->unit->id : "NA", */
857 /* by ? job_type_to_string(by->type) : "NA"); */
858
859 if (!IN_SET(unit->load_state, UNIT_LOADED, UNIT_ERROR, UNIT_NOT_FOUND, UNIT_MASKED))
860 return sd_bus_error_setf(e, BUS_ERROR_LOAD_FAILED, "Unit %s is not loaded properly.", unit->id);
861
862 if (type != JOB_STOP) {
863 r = bus_unit_check_load_state(unit, e);
864 if (r < 0)
865 return r;
866 }
867
868 if (!unit_job_is_applicable(unit, type))
869 return sd_bus_error_setf(e, BUS_ERROR_JOB_TYPE_NOT_APPLICABLE,
870 "Job type %s is not applicable for unit %s.",
871 job_type_to_string(type), unit->id);
872
873
874 /* First add the job. */
875 ret = transaction_add_one_job(tr, type, unit, &is_new);
876 if (!ret)
877 return -ENOMEM;
878
879 ret->ignore_order = ret->ignore_order || ignore_order;
880
881 /* Then, add a link to the job. */
882 if (by) {
883 if (!job_dependency_new(by, ret, matters, conflicts))
884 return -ENOMEM;
885 } else {
886 /* If the job has no parent job, it is the anchor job. */
887 assert(!tr->anchor_job);
888 tr->anchor_job = ret;
889 }
890
891 if (is_new && !ignore_requirements && type != JOB_NOP) {
892 Set *following;
893
894 /* If we are following some other unit, make sure we
895 * add all dependencies of everybody following. */
896 if (unit_following_set(ret->unit, &following) > 0) {
897 SET_FOREACH(dep, following, i) {
898 r = transaction_add_job_and_dependencies(tr, type, dep, ret, false, false, false, ignore_order, e);
899 if (r < 0) {
900 log_unit_warning(dep, "Cannot add dependency job for, ignoring: %s", bus_error_message(e, r));
901 sd_bus_error_free(e);
902 }
903 }
904
905 set_free(following);
906 }
907
908 /* Finally, recursively add in all dependencies. */
909 if (type == JOB_START || type == JOB_RESTART) {
910 SET_FOREACH(dep, ret->unit->dependencies[UNIT_REQUIRES], i) {
911 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, ret, true, false, false, ignore_order, e);
912 if (r < 0) {
913 if (r != -EBADR) /* job type not applicable */
914 goto fail;
915
916 sd_bus_error_free(e);
917 }
918 }
919
920 SET_FOREACH(dep, ret->unit->dependencies[UNIT_BINDS_TO], i) {
921 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, ret, true, false, false, ignore_order, e);
922 if (r < 0) {
923 if (r != -EBADR) /* job type not applicable */
924 goto fail;
925
926 sd_bus_error_free(e);
927 }
928 }
929
930 SET_FOREACH(dep, ret->unit->dependencies[UNIT_WANTS], i) {
931 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, ret, false, false, false, ignore_order, e);
932 if (r < 0) {
933 /* unit masked, job type not applicable and unit not found are not considered as errors. */
934 log_unit_full(dep,
935 IN_SET(r, -ESHUTDOWN, -EBADR, -ENOENT) ? LOG_DEBUG : LOG_WARNING,
936 r, "Cannot add dependency job, ignoring: %s",
937 bus_error_message(e, r));
938 sd_bus_error_free(e);
939 }
940 }
941
942 SET_FOREACH(dep, ret->unit->dependencies[UNIT_REQUISITE], i) {
943 r = transaction_add_job_and_dependencies(tr, JOB_VERIFY_ACTIVE, dep, ret, true, false, false, ignore_order, e);
944 if (r < 0) {
945 if (r != -EBADR) /* job type not applicable */
946 goto fail;
947
948 sd_bus_error_free(e);
949 }
950 }
951
952 SET_FOREACH(dep, ret->unit->dependencies[UNIT_CONFLICTS], i) {
953 r = transaction_add_job_and_dependencies(tr, JOB_STOP, dep, ret, true, true, false, ignore_order, e);
954 if (r < 0) {
955 if (r != -EBADR) /* job type not applicable */
956 goto fail;
957
958 sd_bus_error_free(e);
959 }
960 }
961
962 SET_FOREACH(dep, ret->unit->dependencies[UNIT_CONFLICTED_BY], i) {
963 r = transaction_add_job_and_dependencies(tr, JOB_STOP, dep, ret, false, false, false, ignore_order, e);
964 if (r < 0) {
965 log_unit_warning(dep,
966 "Cannot add dependency job, ignoring: %s",
967 bus_error_message(e, r));
968 sd_bus_error_free(e);
969 }
970 }
971
972 }
973
974 if (type == JOB_STOP || type == JOB_RESTART) {
975 static const UnitDependency propagate_deps[] = {
976 UNIT_REQUIRED_BY,
977 UNIT_REQUISITE_OF,
978 UNIT_BOUND_BY,
979 UNIT_CONSISTS_OF,
980 };
981
982 JobType ptype;
983 unsigned j;
984
985 /* We propagate STOP as STOP, but RESTART only
986 * as TRY_RESTART, in order not to start
987 * dependencies that are not around. */
988 ptype = type == JOB_RESTART ? JOB_TRY_RESTART : type;
989
990 for (j = 0; j < ELEMENTSOF(propagate_deps); j++)
991 SET_FOREACH(dep, ret->unit->dependencies[propagate_deps[j]], i) {
992 JobType nt;
993
994 nt = job_type_collapse(ptype, dep);
995 if (nt == JOB_NOP)
996 continue;
997
998 r = transaction_add_job_and_dependencies(tr, nt, dep, ret, true, false, false, ignore_order, e);
999 if (r < 0) {
1000 if (r != -EBADR) /* job type not applicable */
1001 goto fail;
1002
1003 sd_bus_error_free(e);
1004 }
1005 }
1006 }
1007
1008 if (type == JOB_RELOAD) {
1009
1010 SET_FOREACH(dep, ret->unit->dependencies[UNIT_PROPAGATES_RELOAD_TO], i) {
1011 JobType nt;
1012
1013 nt = job_type_collapse(JOB_TRY_RELOAD, dep);
1014 if (nt == JOB_NOP)
1015 continue;
1016
1017 r = transaction_add_job_and_dependencies(tr, nt, dep, ret, false, false, false, ignore_order, e);
1018 if (r < 0) {
1019 log_unit_warning(dep,
1020 "Cannot add dependency reload job, ignoring: %s",
1021 bus_error_message(e, r));
1022 sd_bus_error_free(e);
1023 }
1024 }
1025 }
1026
1027 /* JOB_VERIFY_STARTED require no dependency handling */
1028 }
1029
1030 return 0;
1031
1032 fail:
1033 return r;
1034 }
1035
1036 int transaction_add_isolate_jobs(Transaction *tr, Manager *m) {
1037 Iterator i;
1038 Unit *u;
1039 char *k;
1040 int r;
1041
1042 assert(tr);
1043 assert(m);
1044
1045 HASHMAP_FOREACH_KEY(u, k, m->units, i) {
1046
1047 /* ignore aliases */
1048 if (u->id != k)
1049 continue;
1050
1051 if (u->ignore_on_isolate)
1052 continue;
1053
1054 /* No need to stop inactive jobs */
1055 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(u)) && !u->job)
1056 continue;
1057
1058 /* Is there already something listed for this? */
1059 if (hashmap_get(tr->jobs, u))
1060 continue;
1061
1062 r = transaction_add_job_and_dependencies(tr, JOB_STOP, u, tr->anchor_job, true, false, false, false, NULL);
1063 if (r < 0)
1064 log_unit_warning_errno(u, r, "Cannot add isolate job, ignoring: %m");
1065 }
1066
1067 return 0;
1068 }
1069
1070 Transaction *transaction_new(bool irreversible) {
1071 Transaction *tr;
1072
1073 tr = new0(Transaction, 1);
1074 if (!tr)
1075 return NULL;
1076
1077 tr->jobs = hashmap_new(NULL);
1078 if (!tr->jobs) {
1079 free(tr);
1080 return NULL;
1081 }
1082
1083 tr->irreversible = irreversible;
1084
1085 return tr;
1086 }
1087
1088 void transaction_free(Transaction *tr) {
1089 assert(hashmap_isempty(tr->jobs));
1090 hashmap_free(tr->jobs);
1091 free(tr);
1092 }