]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/swap.c
device-util: Declare iterator variables inline
[thirdparty/systemd.git] / src / core / swap.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <errno.h>
4 #include <sys/epoll.h>
5 #include <sys/stat.h>
6 #include <unistd.h>
7
8 #include "sd-device.h"
9
10 #include "alloc-util.h"
11 #include "dbus-swap.h"
12 #include "dbus-unit.h"
13 #include "device-util.h"
14 #include "device.h"
15 #include "escape.h"
16 #include "exit-status.h"
17 #include "fd-util.h"
18 #include "format-util.h"
19 #include "fstab-util.h"
20 #include "parse-util.h"
21 #include "path-util.h"
22 #include "process-util.h"
23 #include "serialize.h"
24 #include "special.h"
25 #include "string-table.h"
26 #include "string-util.h"
27 #include "swap.h"
28 #include "unit-name.h"
29 #include "unit.h"
30 #include "virt.h"
31
32 static const UnitActiveState state_translation_table[_SWAP_STATE_MAX] = {
33 [SWAP_DEAD] = UNIT_INACTIVE,
34 [SWAP_ACTIVATING] = UNIT_ACTIVATING,
35 [SWAP_ACTIVATING_DONE] = UNIT_ACTIVE,
36 [SWAP_ACTIVE] = UNIT_ACTIVE,
37 [SWAP_DEACTIVATING] = UNIT_DEACTIVATING,
38 [SWAP_DEACTIVATING_SIGTERM] = UNIT_DEACTIVATING,
39 [SWAP_DEACTIVATING_SIGKILL] = UNIT_DEACTIVATING,
40 [SWAP_FAILED] = UNIT_FAILED,
41 [SWAP_CLEANING] = UNIT_MAINTENANCE,
42 };
43
44 static int swap_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata);
45 static int swap_dispatch_io(sd_event_source *source, int fd, uint32_t revents, void *userdata);
46 static int swap_process_proc_swaps(Manager *m);
47
48 static bool SWAP_STATE_WITH_PROCESS(SwapState state) {
49 return IN_SET(state,
50 SWAP_ACTIVATING,
51 SWAP_ACTIVATING_DONE,
52 SWAP_DEACTIVATING,
53 SWAP_DEACTIVATING_SIGTERM,
54 SWAP_DEACTIVATING_SIGKILL,
55 SWAP_CLEANING);
56 }
57
58 _pure_ static UnitActiveState swap_active_state(Unit *u) {
59 assert(u);
60
61 return state_translation_table[SWAP(u)->state];
62 }
63
64 _pure_ static const char *swap_sub_state_to_string(Unit *u) {
65 assert(u);
66
67 return swap_state_to_string(SWAP(u)->state);
68 }
69
70 _pure_ static bool swap_may_gc(Unit *u) {
71 Swap *s = SWAP(u);
72
73 assert(s);
74
75 if (s->from_proc_swaps)
76 return false;
77
78 return true;
79 }
80
81 _pure_ static bool swap_is_extrinsic(Unit *u) {
82 assert(SWAP(u));
83
84 return MANAGER_IS_USER(u->manager);
85 }
86
87 static void swap_unset_proc_swaps(Swap *s) {
88 assert(s);
89
90 if (!s->from_proc_swaps)
91 return;
92
93 s->parameters_proc_swaps.what = mfree(s->parameters_proc_swaps.what);
94 s->from_proc_swaps = false;
95 }
96
97 static int swap_set_devnode(Swap *s, const char *devnode) {
98 Hashmap *swaps;
99 Swap *first;
100 int r;
101
102 assert(s);
103
104 r = hashmap_ensure_allocated(&UNIT(s)->manager->swaps_by_devnode, &path_hash_ops);
105 if (r < 0)
106 return r;
107
108 swaps = UNIT(s)->manager->swaps_by_devnode;
109
110 if (s->devnode) {
111 first = hashmap_get(swaps, s->devnode);
112
113 LIST_REMOVE(same_devnode, first, s);
114 if (first)
115 hashmap_replace(swaps, first->devnode, first);
116 else
117 hashmap_remove(swaps, s->devnode);
118
119 s->devnode = mfree(s->devnode);
120 }
121
122 if (devnode) {
123 s->devnode = strdup(devnode);
124 if (!s->devnode)
125 return -ENOMEM;
126
127 first = hashmap_get(swaps, s->devnode);
128 LIST_PREPEND(same_devnode, first, s);
129
130 return hashmap_replace(swaps, first->devnode, first);
131 }
132
133 return 0;
134 }
135
136 static void swap_init(Unit *u) {
137 Swap *s = SWAP(u);
138
139 assert(s);
140 assert(UNIT(s)->load_state == UNIT_STUB);
141
142 s->timeout_usec = u->manager->default_timeout_start_usec;
143
144 s->exec_context.std_output = u->manager->default_std_output;
145 s->exec_context.std_error = u->manager->default_std_error;
146
147 s->control_command_id = _SWAP_EXEC_COMMAND_INVALID;
148
149 u->ignore_on_isolate = true;
150 }
151
152 static void swap_unwatch_control_pid(Swap *s) {
153 assert(s);
154
155 if (s->control_pid <= 0)
156 return;
157
158 unit_unwatch_pid(UNIT(s), TAKE_PID(s->control_pid));
159 }
160
161 static void swap_done(Unit *u) {
162 Swap *s = SWAP(u);
163
164 assert(s);
165
166 swap_unset_proc_swaps(s);
167 swap_set_devnode(s, NULL);
168
169 s->what = mfree(s->what);
170 s->parameters_fragment.what = mfree(s->parameters_fragment.what);
171 s->parameters_fragment.options = mfree(s->parameters_fragment.options);
172
173 s->exec_runtime = exec_runtime_free(s->exec_runtime);
174 exec_command_done_array(s->exec_command, _SWAP_EXEC_COMMAND_MAX);
175 s->control_command = NULL;
176
177 swap_unwatch_control_pid(s);
178
179 s->timer_event_source = sd_event_source_disable_unref(s->timer_event_source);
180 }
181
182 static int swap_arm_timer(Swap *s, usec_t usec) {
183 int r;
184
185 assert(s);
186
187 if (s->timer_event_source) {
188 r = sd_event_source_set_time(s->timer_event_source, usec);
189 if (r < 0)
190 return r;
191
192 return sd_event_source_set_enabled(s->timer_event_source, SD_EVENT_ONESHOT);
193 }
194
195 if (usec == USEC_INFINITY)
196 return 0;
197
198 r = sd_event_add_time(
199 UNIT(s)->manager->event,
200 &s->timer_event_source,
201 CLOCK_MONOTONIC,
202 usec, 0,
203 swap_dispatch_timer, s);
204 if (r < 0)
205 return r;
206
207 (void) sd_event_source_set_description(s->timer_event_source, "swap-timer");
208
209 return 0;
210 }
211
212 static SwapParameters* swap_get_parameters(Swap *s) {
213 assert(s);
214
215 if (s->from_proc_swaps)
216 return &s->parameters_proc_swaps;
217
218 if (s->from_fragment)
219 return &s->parameters_fragment;
220
221 return NULL;
222 }
223
224 static int swap_add_device_dependencies(Swap *s) {
225 UnitDependencyMask mask;
226 SwapParameters *p;
227 int r;
228
229 assert(s);
230
231 if (!s->what)
232 return 0;
233
234 p = swap_get_parameters(s);
235 if (!p || !p->what)
236 return 0;
237
238 mask = s->from_proc_swaps ? UNIT_DEPENDENCY_PROC_SWAP : UNIT_DEPENDENCY_FILE;
239
240 if (is_device_path(p->what)) {
241 r = unit_add_node_dependency(UNIT(s), p->what, UNIT_REQUIRES, mask);
242 if (r < 0)
243 return r;
244
245 return unit_add_blockdev_dependency(UNIT(s), p->what, mask);
246 }
247
248 /* File based swap devices need to be ordered after systemd-remount-fs.service, since they might need
249 * a writable file system. */
250 return unit_add_dependency_by_name(UNIT(s), UNIT_AFTER, SPECIAL_REMOUNT_FS_SERVICE, true, mask);
251 }
252
253 static int swap_add_default_dependencies(Swap *s) {
254 int r;
255
256 assert(s);
257
258 if (!UNIT(s)->default_dependencies)
259 return 0;
260
261 if (!MANAGER_IS_SYSTEM(UNIT(s)->manager))
262 return 0;
263
264 if (detect_container() > 0)
265 return 0;
266
267 /* swap units generated for the swap dev links are missing the
268 * ordering dep against the swap target. */
269 r = unit_add_dependency_by_name(UNIT(s), UNIT_BEFORE, SPECIAL_SWAP_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
270 if (r < 0)
271 return r;
272
273 r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, true, UNIT_DEPENDENCY_DEFAULT);
274 if (r < 0)
275 return r;
276
277 return exec_context_add_default_dependencies(UNIT(s), &s->exec_context);
278 }
279
280 static int swap_verify(Swap *s) {
281 _cleanup_free_ char *e = NULL;
282 int r;
283
284 assert(UNIT(s)->load_state == UNIT_LOADED);
285
286 r = unit_name_from_path(s->what, ".swap", &e);
287 if (r < 0)
288 return log_unit_error_errno(UNIT(s), r, "Failed to generate unit name from path: %m");
289
290 if (!unit_has_name(UNIT(s), e))
291 return log_unit_error_errno(UNIT(s), SYNTHETIC_ERRNO(ENOEXEC), "Value of What= and unit name do not match, not loading.");
292
293 if (s->exec_context.pam_name && s->kill_context.kill_mode != KILL_CONTROL_GROUP)
294 return log_unit_error_errno(UNIT(s), SYNTHETIC_ERRNO(ENOEXEC), "Unit has PAM enabled. Kill mode must be set to 'control-group'. Refusing to load.");
295
296 return 0;
297 }
298
299 static int swap_load_devnode(Swap *s) {
300 _cleanup_free_ char *p = NULL;
301 struct stat st;
302 int r;
303
304 assert(s);
305
306 if (stat(s->what, &st) < 0 || !S_ISBLK(st.st_mode))
307 return 0;
308
309 r = devname_from_stat_rdev(&st, &p);
310 if (r < 0) {
311 log_unit_full_errno(UNIT(s), r == -ENOENT ? LOG_DEBUG : LOG_WARNING, r,
312 "Failed to get device node for swap %s: %m", s->what);
313 return 0;
314 }
315
316 return swap_set_devnode(s, p);
317 }
318
319 static int swap_add_extras(Swap *s) {
320 int r;
321
322 assert(s);
323
324 if (UNIT(s)->fragment_path)
325 s->from_fragment = true;
326
327 if (!s->what) {
328 if (s->parameters_fragment.what)
329 s->what = strdup(s->parameters_fragment.what);
330 else if (s->parameters_proc_swaps.what)
331 s->what = strdup(s->parameters_proc_swaps.what);
332 else {
333 r = unit_name_to_path(UNIT(s)->id, &s->what);
334 if (r < 0)
335 return r;
336 }
337
338 if (!s->what)
339 return -ENOMEM;
340 }
341
342 path_simplify(s->what);
343
344 if (!UNIT(s)->description) {
345 r = unit_set_description(UNIT(s), s->what);
346 if (r < 0)
347 return r;
348 }
349
350 r = unit_require_mounts_for(UNIT(s), s->what, UNIT_DEPENDENCY_IMPLICIT);
351 if (r < 0)
352 return r;
353
354 r = swap_add_device_dependencies(s);
355 if (r < 0)
356 return r;
357
358 r = swap_load_devnode(s);
359 if (r < 0)
360 return r;
361
362 r = unit_patch_contexts(UNIT(s));
363 if (r < 0)
364 return r;
365
366 r = unit_add_exec_dependencies(UNIT(s), &s->exec_context);
367 if (r < 0)
368 return r;
369
370 r = unit_set_default_slice(UNIT(s));
371 if (r < 0)
372 return r;
373
374 r = swap_add_default_dependencies(s);
375 if (r < 0)
376 return r;
377
378 return 0;
379 }
380
381 static int swap_load(Unit *u) {
382 Swap *s = SWAP(u);
383 int r, q = 0;
384
385 assert(s);
386 assert(u->load_state == UNIT_STUB);
387
388 /* Load a .swap file */
389 bool fragment_optional = s->from_proc_swaps;
390 r = unit_load_fragment_and_dropin(u, !fragment_optional);
391
392 /* Add in some extras, and do so either when we successfully loaded something or when /proc/swaps is
393 * already active. */
394 if (u->load_state == UNIT_LOADED || s->from_proc_swaps)
395 q = swap_add_extras(s);
396
397 if (r < 0)
398 return r;
399 if (q < 0)
400 return q;
401 if (u->load_state != UNIT_LOADED)
402 return 0;
403
404 return swap_verify(s);
405 }
406
407 static int swap_setup_unit(
408 Manager *m,
409 const char *what,
410 const char *what_proc_swaps,
411 int priority,
412 bool set_flags) {
413
414 _cleanup_free_ char *e = NULL;
415 bool delete = false;
416 Unit *u = NULL;
417 int r;
418 SwapParameters *p;
419
420 assert(m);
421 assert(what);
422 assert(what_proc_swaps);
423
424 r = unit_name_from_path(what, ".swap", &e);
425 if (r < 0)
426 return log_unit_error_errno(u, r, "Failed to generate unit name from path: %m");
427
428 u = manager_get_unit(m, e);
429 if (u &&
430 SWAP(u)->from_proc_swaps &&
431 !path_equal(SWAP(u)->parameters_proc_swaps.what, what_proc_swaps))
432 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
433 "Swap %s appeared twice with different device paths %s and %s",
434 e, SWAP(u)->parameters_proc_swaps.what, what_proc_swaps);
435
436 if (!u) {
437 delete = true;
438
439 r = unit_new_for_name(m, sizeof(Swap), e, &u);
440 if (r < 0)
441 goto fail;
442
443 SWAP(u)->what = strdup(what);
444 if (!SWAP(u)->what) {
445 r = -ENOMEM;
446 goto fail;
447 }
448
449 unit_add_to_load_queue(u);
450 } else
451 delete = false;
452
453 p = &SWAP(u)->parameters_proc_swaps;
454
455 if (!p->what) {
456 p->what = strdup(what_proc_swaps);
457 if (!p->what) {
458 r = -ENOMEM;
459 goto fail;
460 }
461 }
462
463 /* The unit is definitely around now, mark it as loaded if it was previously referenced but could not be
464 * loaded. After all we can load it now, from the data in /proc/swaps. */
465 if (IN_SET(u->load_state, UNIT_NOT_FOUND, UNIT_BAD_SETTING, UNIT_ERROR)) {
466 u->load_state = UNIT_LOADED;
467 u->load_error = 0;
468 }
469
470 if (set_flags) {
471 SWAP(u)->is_active = true;
472 SWAP(u)->just_activated = !SWAP(u)->from_proc_swaps;
473 }
474
475 SWAP(u)->from_proc_swaps = true;
476
477 p->priority = priority;
478 p->priority_set = true;
479
480 unit_add_to_dbus_queue(u);
481 return 0;
482
483 fail:
484 log_unit_warning_errno(u, r, "Failed to load swap unit: %m");
485
486 if (delete)
487 unit_free(u);
488
489 return r;
490 }
491
492 static void swap_process_new(Manager *m, const char *device, int prio, bool set_flags) {
493 _cleanup_(sd_device_unrefp) sd_device *d = NULL;
494 const char *dn;
495 struct stat st, st_link;
496 int r;
497
498 assert(m);
499
500 if (swap_setup_unit(m, device, device, prio, set_flags) < 0)
501 return;
502
503 /* If this is a block device, then let's add duplicates for
504 * all other names of this block device */
505 if (stat(device, &st) < 0 || !S_ISBLK(st.st_mode))
506 return;
507
508 r = sd_device_new_from_stat_rdev(&d, &st);
509 if (r < 0)
510 return (void) log_full_errno(r == -ENOENT ? LOG_DEBUG : LOG_WARNING, r,
511 "Failed to allocate device for swap %s: %m", device);
512
513 /* Add the main device node */
514 if (sd_device_get_devname(d, &dn) >= 0 && !streq(dn, device))
515 (void) swap_setup_unit(m, dn, device, prio, set_flags);
516
517 /* Add additional units for all symlinks */
518 FOREACH_DEVICE_DEVLINK(d, devlink) {
519
520 /* Don't bother with the /dev/block links */
521 if (streq(devlink, device))
522 continue;
523
524 if (path_startswith(devlink, "/dev/block/"))
525 continue;
526
527 if (stat(devlink, &st_link) >= 0 &&
528 (!S_ISBLK(st_link.st_mode) ||
529 st_link.st_rdev != st.st_rdev))
530 continue;
531
532 (void) swap_setup_unit(m, devlink, device, prio, set_flags);
533 }
534 }
535
536 static void swap_set_state(Swap *s, SwapState state) {
537 SwapState old_state;
538
539 assert(s);
540
541 if (s->state != state)
542 bus_unit_send_pending_change_signal(UNIT(s), false);
543
544 old_state = s->state;
545 s->state = state;
546
547 if (!SWAP_STATE_WITH_PROCESS(state)) {
548 s->timer_event_source = sd_event_source_disable_unref(s->timer_event_source);
549 swap_unwatch_control_pid(s);
550 s->control_command = NULL;
551 s->control_command_id = _SWAP_EXEC_COMMAND_INVALID;
552 }
553
554 if (state != old_state)
555 log_unit_debug(UNIT(s), "Changed %s -> %s", swap_state_to_string(old_state), swap_state_to_string(state));
556
557 unit_notify(UNIT(s), state_translation_table[old_state], state_translation_table[state], /* reload_success = */ true);
558
559 /* If there other units for the same device node have a job
560 queued it might be worth checking again if it is runnable
561 now. This is necessary, since swap_start() refuses
562 operation with EAGAIN if there's already another job for
563 the same device node queued. */
564 LIST_FOREACH_OTHERS(same_devnode, other, s)
565 if (UNIT(other)->job)
566 job_add_to_run_queue(UNIT(other)->job);
567 }
568
569 static int swap_coldplug(Unit *u) {
570 Swap *s = SWAP(u);
571 SwapState new_state = SWAP_DEAD;
572 int r;
573
574 assert(s);
575 assert(s->state == SWAP_DEAD);
576
577 if (s->deserialized_state != s->state)
578 new_state = s->deserialized_state;
579 else if (s->from_proc_swaps)
580 new_state = SWAP_ACTIVE;
581
582 if (new_state == s->state)
583 return 0;
584
585 if (s->control_pid > 0 &&
586 pid_is_unwaited(s->control_pid) &&
587 SWAP_STATE_WITH_PROCESS(new_state)) {
588
589 r = unit_watch_pid(UNIT(s), s->control_pid, false);
590 if (r < 0)
591 return r;
592
593 r = swap_arm_timer(s, usec_add(u->state_change_timestamp.monotonic, s->timeout_usec));
594 if (r < 0)
595 return r;
596 }
597
598 if (!IN_SET(new_state, SWAP_DEAD, SWAP_FAILED))
599 (void) unit_setup_exec_runtime(u);
600
601 swap_set_state(s, new_state);
602 return 0;
603 }
604
605 static void swap_dump(Unit *u, FILE *f, const char *prefix) {
606 Swap *s = SWAP(u);
607 SwapParameters *p;
608
609 assert(s);
610 assert(f);
611
612 if (s->from_proc_swaps)
613 p = &s->parameters_proc_swaps;
614 else if (s->from_fragment)
615 p = &s->parameters_fragment;
616 else
617 p = NULL;
618
619 fprintf(f,
620 "%sSwap State: %s\n"
621 "%sResult: %s\n"
622 "%sClean Result: %s\n"
623 "%sWhat: %s\n"
624 "%sFrom /proc/swaps: %s\n"
625 "%sFrom fragment: %s\n"
626 "%sExtrinsic: %s\n",
627 prefix, swap_state_to_string(s->state),
628 prefix, swap_result_to_string(s->result),
629 prefix, swap_result_to_string(s->clean_result),
630 prefix, s->what,
631 prefix, yes_no(s->from_proc_swaps),
632 prefix, yes_no(s->from_fragment),
633 prefix, yes_no(swap_is_extrinsic(u)));
634
635 if (s->devnode)
636 fprintf(f, "%sDevice Node: %s\n", prefix, s->devnode);
637
638 if (p)
639 fprintf(f,
640 "%sPriority: %i\n"
641 "%sOptions: %s\n",
642 prefix, p->priority,
643 prefix, strempty(p->options));
644
645 fprintf(f,
646 "%sTimeoutSec: %s\n",
647 prefix, FORMAT_TIMESPAN(s->timeout_usec, USEC_PER_SEC));
648
649 if (s->control_pid > 0)
650 fprintf(f,
651 "%sControl PID: "PID_FMT"\n",
652 prefix, s->control_pid);
653
654 exec_context_dump(&s->exec_context, f, prefix);
655 kill_context_dump(&s->kill_context, f, prefix);
656 cgroup_context_dump(UNIT(s), f, prefix);
657 }
658
659 static int swap_spawn(Swap *s, ExecCommand *c, pid_t *_pid) {
660
661 _cleanup_(exec_params_clear) ExecParameters exec_params = {
662 .flags = EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN,
663 .stdin_fd = -EBADF,
664 .stdout_fd = -EBADF,
665 .stderr_fd = -EBADF,
666 .exec_fd = -EBADF,
667 };
668 pid_t pid;
669 int r;
670
671 assert(s);
672 assert(c);
673 assert(_pid);
674
675 r = unit_prepare_exec(UNIT(s));
676 if (r < 0)
677 return r;
678
679 r = swap_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_usec));
680 if (r < 0)
681 goto fail;
682
683 r = unit_set_exec_params(UNIT(s), &exec_params);
684 if (r < 0)
685 goto fail;
686
687 r = exec_spawn(UNIT(s),
688 c,
689 &s->exec_context,
690 &exec_params,
691 s->exec_runtime,
692 &s->cgroup_context,
693 &pid);
694 if (r < 0)
695 goto fail;
696
697 r = unit_watch_pid(UNIT(s), pid, true);
698 if (r < 0)
699 goto fail;
700
701 *_pid = pid;
702
703 return 0;
704
705 fail:
706 s->timer_event_source = sd_event_source_disable_unref(s->timer_event_source);
707
708 return r;
709 }
710
711 static void swap_enter_dead(Swap *s, SwapResult f) {
712 assert(s);
713
714 if (s->result == SWAP_SUCCESS)
715 s->result = f;
716
717 unit_log_result(UNIT(s), s->result == SWAP_SUCCESS, swap_result_to_string(s->result));
718 unit_warn_leftover_processes(UNIT(s), unit_log_leftover_process_stop);
719 swap_set_state(s, s->result != SWAP_SUCCESS ? SWAP_FAILED : SWAP_DEAD);
720
721 s->exec_runtime = exec_runtime_destroy(s->exec_runtime);
722
723 unit_destroy_runtime_data(UNIT(s), &s->exec_context);
724
725 unit_unref_uid_gid(UNIT(s), true);
726 }
727
728 static void swap_enter_active(Swap *s, SwapResult f) {
729 assert(s);
730
731 if (s->result == SWAP_SUCCESS)
732 s->result = f;
733
734 swap_set_state(s, SWAP_ACTIVE);
735 }
736
737 static void swap_enter_dead_or_active(Swap *s, SwapResult f) {
738 assert(s);
739
740 if (s->from_proc_swaps) {
741 swap_enter_active(s, f);
742
743 LIST_FOREACH_OTHERS(same_devnode, other, s)
744 if (UNIT(other)->job)
745 swap_enter_dead_or_active(other, f);
746 } else
747 swap_enter_dead(s, f);
748 }
749
750 static int state_to_kill_operation(Swap *s, SwapState state) {
751 if (state == SWAP_DEACTIVATING_SIGTERM) {
752 if (unit_has_job_type(UNIT(s), JOB_RESTART))
753 return KILL_RESTART;
754 else
755 return KILL_TERMINATE;
756 }
757
758 return KILL_KILL;
759 }
760
761 static void swap_enter_signal(Swap *s, SwapState state, SwapResult f) {
762 int r;
763
764 assert(s);
765
766 if (s->result == SWAP_SUCCESS)
767 s->result = f;
768
769 r = unit_kill_context(UNIT(s),
770 &s->kill_context,
771 state_to_kill_operation(s, state),
772 -1,
773 s->control_pid,
774 false);
775 if (r < 0)
776 goto fail;
777
778 if (r > 0) {
779 r = swap_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_usec));
780 if (r < 0)
781 goto fail;
782
783 swap_set_state(s, state);
784 } else if (state == SWAP_DEACTIVATING_SIGTERM && s->kill_context.send_sigkill)
785 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, SWAP_SUCCESS);
786 else
787 swap_enter_dead_or_active(s, SWAP_SUCCESS);
788
789 return;
790
791 fail:
792 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
793 swap_enter_dead_or_active(s, SWAP_FAILURE_RESOURCES);
794 }
795
796 static void swap_enter_activating(Swap *s) {
797 _cleanup_free_ char *opts = NULL;
798 int r;
799
800 assert(s);
801
802 unit_warn_leftover_processes(UNIT(s), unit_log_leftover_process_start);
803
804 s->control_command_id = SWAP_EXEC_ACTIVATE;
805 s->control_command = s->exec_command + SWAP_EXEC_ACTIVATE;
806
807 if (s->from_fragment) {
808 int priority = 0;
809
810 r = fstab_find_pri(s->parameters_fragment.options, &priority);
811 if (r < 0)
812 log_unit_warning_errno(UNIT(s), r, "Failed to parse swap priority \"%s\", ignoring: %m", s->parameters_fragment.options);
813 else if (r > 0 && s->parameters_fragment.priority_set)
814 log_unit_warning(UNIT(s), "Duplicate swap priority configuration by Priority= and Options= fields.");
815
816 if (r <= 0 && s->parameters_fragment.priority_set) {
817 if (s->parameters_fragment.options)
818 r = asprintf(&opts, "%s,pri=%i", s->parameters_fragment.options, s->parameters_fragment.priority);
819 else
820 r = asprintf(&opts, "pri=%i", s->parameters_fragment.priority);
821 if (r < 0) {
822 r = -ENOMEM;
823 goto fail;
824 }
825 }
826 }
827
828 r = exec_command_set(s->control_command, "/sbin/swapon", "--fixpgsz", NULL);
829 if (r < 0)
830 goto fail;
831
832 if (s->parameters_fragment.options || opts) {
833 r = exec_command_append(s->control_command, "-o",
834 opts ?: s->parameters_fragment.options, NULL);
835 if (r < 0)
836 goto fail;
837 }
838
839 r = exec_command_append(s->control_command, s->what, NULL);
840 if (r < 0)
841 goto fail;
842
843 swap_unwatch_control_pid(s);
844
845 r = swap_spawn(s, s->control_command, &s->control_pid);
846 if (r < 0)
847 goto fail;
848
849 swap_set_state(s, SWAP_ACTIVATING);
850 return;
851
852 fail:
853 log_unit_warning_errno(UNIT(s), r, "Failed to run 'swapon' task: %m");
854 swap_enter_dead_or_active(s, SWAP_FAILURE_RESOURCES);
855 }
856
857 static void swap_enter_deactivating(Swap *s) {
858 int r;
859
860 assert(s);
861
862 s->control_command_id = SWAP_EXEC_DEACTIVATE;
863 s->control_command = s->exec_command + SWAP_EXEC_DEACTIVATE;
864
865 r = exec_command_set(s->control_command,
866 "/sbin/swapoff",
867 s->what,
868 NULL);
869 if (r < 0)
870 goto fail;
871
872 swap_unwatch_control_pid(s);
873
874 r = swap_spawn(s, s->control_command, &s->control_pid);
875 if (r < 0)
876 goto fail;
877
878 swap_set_state(s, SWAP_DEACTIVATING);
879
880 return;
881
882 fail:
883 log_unit_warning_errno(UNIT(s), r, "Failed to run 'swapoff' task: %m");
884 swap_enter_dead_or_active(s, SWAP_FAILURE_RESOURCES);
885 }
886
887 static void swap_cycle_clear(Swap *s) {
888 assert(s);
889
890 s->result = SWAP_SUCCESS;
891 exec_command_reset_status_array(s->exec_command, _SWAP_EXEC_COMMAND_MAX);
892 UNIT(s)->reset_accounting = true;
893 }
894
895 static int swap_start(Unit *u) {
896 Swap *s = SWAP(u);
897 int r;
898
899 assert(s);
900
901 /* We cannot fulfill this request right now, try again later please! */
902 if (IN_SET(s->state,
903 SWAP_DEACTIVATING,
904 SWAP_DEACTIVATING_SIGTERM,
905 SWAP_DEACTIVATING_SIGKILL,
906 SWAP_CLEANING))
907 return -EAGAIN;
908
909 /* Already on it! */
910 if (s->state == SWAP_ACTIVATING)
911 return 0;
912
913 assert(IN_SET(s->state, SWAP_DEAD, SWAP_FAILED));
914
915 if (detect_container() > 0)
916 return -EPERM;
917
918 /* If there's a job for another swap unit for the same node
919 * running, then let's not dispatch this one for now, and wait
920 * until that other job has finished. */
921 LIST_FOREACH_OTHERS(same_devnode, other, s)
922 if (UNIT(other)->job && UNIT(other)->job->state == JOB_RUNNING)
923 return -EAGAIN;
924
925 r = unit_acquire_invocation_id(u);
926 if (r < 0)
927 return r;
928
929 swap_cycle_clear(s);
930 swap_enter_activating(s);
931 return 1;
932 }
933
934 static int swap_stop(Unit *u) {
935 Swap *s = SWAP(u);
936
937 assert(s);
938
939 switch (s->state) {
940
941 case SWAP_DEACTIVATING:
942 case SWAP_DEACTIVATING_SIGTERM:
943 case SWAP_DEACTIVATING_SIGKILL:
944 /* Already on it */
945 return 0;
946
947 case SWAP_ACTIVATING:
948 case SWAP_ACTIVATING_DONE:
949 /* There's a control process pending, directly enter kill mode */
950 swap_enter_signal(s, SWAP_DEACTIVATING_SIGTERM, SWAP_SUCCESS);
951 return 0;
952
953 case SWAP_ACTIVE:
954 if (detect_container() > 0)
955 return -EPERM;
956
957 swap_enter_deactivating(s);
958 return 1;
959
960 case SWAP_CLEANING:
961 /* If we are currently cleaning, then abort it, brutally. */
962 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, SWAP_SUCCESS);
963 return 0;
964
965 default:
966 assert_not_reached();
967 }
968 }
969
970 static int swap_serialize(Unit *u, FILE *f, FDSet *fds) {
971 Swap *s = SWAP(u);
972
973 assert(s);
974 assert(f);
975 assert(fds);
976
977 (void) serialize_item(f, "state", swap_state_to_string(s->state));
978 (void) serialize_item(f, "result", swap_result_to_string(s->result));
979
980 if (s->control_pid > 0)
981 (void) serialize_item_format(f, "control-pid", PID_FMT, s->control_pid);
982
983 if (s->control_command_id >= 0)
984 (void) serialize_item(f, "control-command", swap_exec_command_to_string(s->control_command_id));
985
986 return 0;
987 }
988
989 static int swap_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
990 Swap *s = SWAP(u);
991
992 assert(s);
993 assert(fds);
994
995 if (streq(key, "state")) {
996 SwapState state;
997
998 state = swap_state_from_string(value);
999 if (state < 0)
1000 log_unit_debug(u, "Failed to parse state value: %s", value);
1001 else
1002 s->deserialized_state = state;
1003 } else if (streq(key, "result")) {
1004 SwapResult f;
1005
1006 f = swap_result_from_string(value);
1007 if (f < 0)
1008 log_unit_debug(u, "Failed to parse result value: %s", value);
1009 else if (f != SWAP_SUCCESS)
1010 s->result = f;
1011 } else if (streq(key, "control-pid")) {
1012 pid_t pid;
1013
1014 if (parse_pid(value, &pid) < 0)
1015 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
1016 else
1017 s->control_pid = pid;
1018
1019 } else if (streq(key, "control-command")) {
1020 SwapExecCommand id;
1021
1022 id = swap_exec_command_from_string(value);
1023 if (id < 0)
1024 log_unit_debug(u, "Failed to parse exec-command value: %s", value);
1025 else {
1026 s->control_command_id = id;
1027 s->control_command = s->exec_command + id;
1028 }
1029 } else
1030 log_unit_debug(u, "Unknown serialization key: %s", key);
1031
1032 return 0;
1033 }
1034
1035 static void swap_sigchld_event(Unit *u, pid_t pid, int code, int status) {
1036 Swap *s = SWAP(u);
1037 SwapResult f;
1038
1039 assert(s);
1040 assert(pid >= 0);
1041
1042 if (pid != s->control_pid)
1043 return;
1044
1045 /* Let's scan /proc/swaps before we process SIGCHLD. For the reasoning see the similar code in
1046 * mount.c */
1047 (void) swap_process_proc_swaps(u->manager);
1048
1049 s->control_pid = 0;
1050
1051 if (is_clean_exit(code, status, EXIT_CLEAN_COMMAND, NULL))
1052 f = SWAP_SUCCESS;
1053 else if (code == CLD_EXITED)
1054 f = SWAP_FAILURE_EXIT_CODE;
1055 else if (code == CLD_KILLED)
1056 f = SWAP_FAILURE_SIGNAL;
1057 else if (code == CLD_DUMPED)
1058 f = SWAP_FAILURE_CORE_DUMP;
1059 else
1060 assert_not_reached();
1061
1062 if (s->result == SWAP_SUCCESS)
1063 s->result = f;
1064
1065 if (s->control_command) {
1066 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
1067
1068 s->control_command = NULL;
1069 s->control_command_id = _SWAP_EXEC_COMMAND_INVALID;
1070 }
1071
1072 unit_log_process_exit(
1073 u,
1074 "Swap process",
1075 swap_exec_command_to_string(s->control_command_id),
1076 f == SWAP_SUCCESS,
1077 code, status);
1078
1079 switch (s->state) {
1080
1081 case SWAP_ACTIVATING:
1082 case SWAP_ACTIVATING_DONE:
1083
1084 if (f == SWAP_SUCCESS || s->from_proc_swaps)
1085 swap_enter_active(s, f);
1086 else
1087 swap_enter_dead(s, f);
1088 break;
1089
1090 case SWAP_DEACTIVATING:
1091 case SWAP_DEACTIVATING_SIGKILL:
1092 case SWAP_DEACTIVATING_SIGTERM:
1093
1094 swap_enter_dead_or_active(s, f);
1095 break;
1096
1097 case SWAP_CLEANING:
1098 if (s->clean_result == SWAP_SUCCESS)
1099 s->clean_result = f;
1100
1101 swap_enter_dead(s, SWAP_SUCCESS);
1102 break;
1103
1104 default:
1105 assert_not_reached();
1106 }
1107
1108 /* Notify clients about changed exit status */
1109 unit_add_to_dbus_queue(u);
1110 }
1111
1112 static int swap_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
1113 Swap *s = SWAP(userdata);
1114
1115 assert(s);
1116 assert(s->timer_event_source == source);
1117
1118 switch (s->state) {
1119
1120 case SWAP_ACTIVATING:
1121 case SWAP_ACTIVATING_DONE:
1122 log_unit_warning(UNIT(s), "Activation timed out. Stopping.");
1123 swap_enter_signal(s, SWAP_DEACTIVATING_SIGTERM, SWAP_FAILURE_TIMEOUT);
1124 break;
1125
1126 case SWAP_DEACTIVATING:
1127 log_unit_warning(UNIT(s), "Deactivation timed out. Stopping.");
1128 swap_enter_signal(s, SWAP_DEACTIVATING_SIGTERM, SWAP_FAILURE_TIMEOUT);
1129 break;
1130
1131 case SWAP_DEACTIVATING_SIGTERM:
1132 if (s->kill_context.send_sigkill) {
1133 log_unit_warning(UNIT(s), "Swap process timed out. Killing.");
1134 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, SWAP_FAILURE_TIMEOUT);
1135 } else {
1136 log_unit_warning(UNIT(s), "Swap process timed out. Skipping SIGKILL. Ignoring.");
1137 swap_enter_dead_or_active(s, SWAP_FAILURE_TIMEOUT);
1138 }
1139 break;
1140
1141 case SWAP_DEACTIVATING_SIGKILL:
1142 log_unit_warning(UNIT(s), "Swap process still around after SIGKILL. Ignoring.");
1143 swap_enter_dead_or_active(s, SWAP_FAILURE_TIMEOUT);
1144 break;
1145
1146 case SWAP_CLEANING:
1147 log_unit_warning(UNIT(s), "Cleaning timed out. killing.");
1148
1149 if (s->clean_result == SWAP_SUCCESS)
1150 s->clean_result = SWAP_FAILURE_TIMEOUT;
1151
1152 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, 0);
1153 break;
1154
1155 default:
1156 assert_not_reached();
1157 }
1158
1159 return 0;
1160 }
1161
1162 static int swap_load_proc_swaps(Manager *m, bool set_flags) {
1163 assert(m);
1164
1165 rewind(m->proc_swaps);
1166
1167 (void) fscanf(m->proc_swaps, "%*s %*s %*s %*s %*s\n");
1168
1169 for (unsigned i = 1;; i++) {
1170 _cleanup_free_ char *dev = NULL, *d = NULL;
1171 int prio = 0, k;
1172
1173 k = fscanf(m->proc_swaps,
1174 "%ms " /* device/file */
1175 "%*s " /* type of swap */
1176 "%*s " /* swap size */
1177 "%*s " /* used */
1178 "%i\n", /* priority */
1179 &dev, &prio);
1180 if (k != 2) {
1181 if (k == EOF)
1182 break;
1183
1184 log_warning("Failed to parse /proc/swaps:%u.", i);
1185 continue;
1186 }
1187
1188 ssize_t l = cunescape(dev, UNESCAPE_RELAX, &d);
1189 if (l < 0)
1190 return log_error_errno(l, "Failed to unescape device path: %m");
1191
1192 device_found_node(m, d, DEVICE_FOUND_SWAP, DEVICE_FOUND_SWAP);
1193
1194 (void) swap_process_new(m, d, prio, set_flags);
1195 }
1196
1197 return 0;
1198 }
1199
1200 static int swap_process_proc_swaps(Manager *m) {
1201 int r;
1202
1203 assert(m);
1204
1205 r = swap_load_proc_swaps(m, true);
1206 if (r < 0) {
1207 log_error_errno(r, "Failed to reread /proc/swaps: %m");
1208
1209 /* Reset flags, just in case, for late calls */
1210 LIST_FOREACH(units_by_type, u, m->units_by_type[UNIT_SWAP]) {
1211 Swap *swap = SWAP(u);
1212
1213 assert(swap);
1214
1215 swap->is_active = swap->just_activated = false;
1216 }
1217
1218 return 0;
1219 }
1220
1221 manager_dispatch_load_queue(m);
1222
1223 LIST_FOREACH(units_by_type, u, m->units_by_type[UNIT_SWAP]) {
1224 Swap *swap = SWAP(u);
1225
1226 assert(swap);
1227
1228 if (!swap->is_active) {
1229
1230 swap_unset_proc_swaps(swap);
1231
1232 switch (swap->state) {
1233
1234 case SWAP_ACTIVE:
1235 /* This has just been deactivated */
1236 swap_enter_dead(swap, SWAP_SUCCESS);
1237 break;
1238
1239 default:
1240 /* Fire again */
1241 swap_set_state(swap, swap->state);
1242 break;
1243 }
1244
1245 if (swap->what)
1246 device_found_node(m, swap->what, DEVICE_NOT_FOUND, DEVICE_FOUND_SWAP);
1247
1248 } else if (swap->just_activated) {
1249
1250 /* New swap entry */
1251
1252 switch (swap->state) {
1253
1254 case SWAP_DEAD:
1255 case SWAP_FAILED:
1256 (void) unit_acquire_invocation_id(u);
1257 swap_cycle_clear(swap);
1258 swap_enter_active(swap, SWAP_SUCCESS);
1259 break;
1260
1261 case SWAP_ACTIVATING:
1262 swap_set_state(swap, SWAP_ACTIVATING_DONE);
1263 break;
1264
1265 default:
1266 /* Nothing really changed, but let's
1267 * issue an notification call
1268 * nonetheless, in case somebody is
1269 * waiting for this. */
1270 swap_set_state(swap, swap->state);
1271 break;
1272 }
1273 }
1274
1275 /* Reset the flags for later calls */
1276 swap->is_active = swap->just_activated = false;
1277 }
1278
1279 return 1;
1280 }
1281
1282 static int swap_dispatch_io(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
1283 Manager *m = ASSERT_PTR(userdata);
1284
1285 assert(revents & EPOLLPRI);
1286
1287 return swap_process_proc_swaps(m);
1288 }
1289
1290 static Unit *swap_following(Unit *u) {
1291 Swap *s = SWAP(u);
1292 Swap *first = NULL;
1293
1294 assert(s);
1295
1296 /* If the user configured the swap through /etc/fstab or
1297 * a device unit, follow that. */
1298
1299 if (s->from_fragment)
1300 return NULL;
1301
1302 LIST_FOREACH_OTHERS(same_devnode, other, s)
1303 if (other->from_fragment)
1304 return UNIT(other);
1305
1306 /* Otherwise, make everybody follow the unit that's named after
1307 * the swap device in the kernel */
1308
1309 if (streq_ptr(s->what, s->devnode))
1310 return NULL;
1311
1312 LIST_FOREACH(same_devnode, other, s->same_devnode_next)
1313 if (streq_ptr(other->what, other->devnode))
1314 return UNIT(other);
1315
1316 LIST_FOREACH_BACKWARDS(same_devnode, other, s->same_devnode_prev) {
1317 if (streq_ptr(other->what, other->devnode))
1318 return UNIT(other);
1319
1320 first = other;
1321 }
1322
1323 /* Fall back to the first on the list */
1324 return UNIT(first);
1325 }
1326
1327 static int swap_following_set(Unit *u, Set **_set) {
1328 Swap *s = SWAP(u);
1329 _cleanup_set_free_ Set *set = NULL;
1330 int r;
1331
1332 assert(s);
1333 assert(_set);
1334
1335 if (LIST_JUST_US(same_devnode, s)) {
1336 *_set = NULL;
1337 return 0;
1338 }
1339
1340 set = set_new(NULL);
1341 if (!set)
1342 return -ENOMEM;
1343
1344 LIST_FOREACH_OTHERS(same_devnode, other, s) {
1345 r = set_put(set, other);
1346 if (r < 0)
1347 return r;
1348 }
1349
1350 *_set = TAKE_PTR(set);
1351 return 1;
1352 }
1353
1354 static void swap_shutdown(Manager *m) {
1355 assert(m);
1356
1357 m->swap_event_source = sd_event_source_disable_unref(m->swap_event_source);
1358 m->proc_swaps = safe_fclose(m->proc_swaps);
1359 m->swaps_by_devnode = hashmap_free(m->swaps_by_devnode);
1360 }
1361
1362 static void swap_enumerate(Manager *m) {
1363 int r;
1364
1365 assert(m);
1366
1367 if (!m->proc_swaps) {
1368 m->proc_swaps = fopen("/proc/swaps", "re");
1369 if (!m->proc_swaps) {
1370 if (errno == ENOENT)
1371 log_debug_errno(errno, "Not swap enabled, skipping enumeration.");
1372 else
1373 log_warning_errno(errno, "Failed to open /proc/swaps, ignoring: %m");
1374
1375 return;
1376 }
1377
1378 r = sd_event_add_io(m->event, &m->swap_event_source, fileno(m->proc_swaps), EPOLLPRI, swap_dispatch_io, m);
1379 if (r < 0) {
1380 log_error_errno(r, "Failed to watch /proc/swaps: %m");
1381 goto fail;
1382 }
1383
1384 /* Dispatch this before we dispatch SIGCHLD, so that
1385 * we always get the events from /proc/swaps before
1386 * the SIGCHLD of /sbin/swapon. */
1387 r = sd_event_source_set_priority(m->swap_event_source, SD_EVENT_PRIORITY_NORMAL-10);
1388 if (r < 0) {
1389 log_error_errno(r, "Failed to change /proc/swaps priority: %m");
1390 goto fail;
1391 }
1392
1393 (void) sd_event_source_set_description(m->swap_event_source, "swap-proc");
1394 }
1395
1396 r = swap_load_proc_swaps(m, false);
1397 if (r < 0)
1398 goto fail;
1399
1400 return;
1401
1402 fail:
1403 swap_shutdown(m);
1404 }
1405
1406 int swap_process_device_new(Manager *m, sd_device *dev) {
1407 _cleanup_free_ char *e = NULL;
1408 const char *dn;
1409 Unit *u;
1410 int r;
1411
1412 assert(m);
1413 assert(dev);
1414
1415 if (sd_device_get_devname(dev, &dn) < 0)
1416 return 0;
1417
1418 r = unit_name_from_path(dn, ".swap", &e);
1419 if (r < 0) {
1420 log_debug_errno(r, "Cannot convert device name '%s' to unit name, ignoring: %m", dn);
1421 return 0;
1422 }
1423
1424 u = manager_get_unit(m, e);
1425 if (u)
1426 r = swap_set_devnode(SWAP(u), dn);
1427
1428 FOREACH_DEVICE_DEVLINK(dev, devlink) {
1429 _cleanup_free_ char *n = NULL;
1430 int q;
1431
1432 q = unit_name_from_path(devlink, ".swap", &n);
1433 if (q == -EINVAL) /* If the name is not convertible to unit name, we can't manage it */
1434 continue;
1435 if (q < 0)
1436 return q;
1437
1438 u = manager_get_unit(m, n);
1439 if (u) {
1440 q = swap_set_devnode(SWAP(u), dn);
1441 if (q < 0)
1442 r = q;
1443 }
1444 }
1445
1446 return r;
1447 }
1448
1449 int swap_process_device_remove(Manager *m, sd_device *dev) {
1450 const char *dn;
1451 int r;
1452 Swap *s;
1453
1454 r = sd_device_get_devname(dev, &dn);
1455 if (r < 0)
1456 return 0;
1457
1458 while ((s = hashmap_get(m->swaps_by_devnode, dn))) {
1459 int q;
1460
1461 q = swap_set_devnode(s, NULL);
1462 if (q < 0)
1463 r = q;
1464 }
1465
1466 return r;
1467 }
1468
1469 static void swap_reset_failed(Unit *u) {
1470 Swap *s = SWAP(u);
1471
1472 assert(s);
1473
1474 if (s->state == SWAP_FAILED)
1475 swap_set_state(s, SWAP_DEAD);
1476
1477 s->result = SWAP_SUCCESS;
1478 s->clean_result = SWAP_SUCCESS;
1479 }
1480
1481 static int swap_kill(Unit *u, KillWho who, int signo, int code, int value, sd_bus_error *error) {
1482 return unit_kill_common(u, who, signo, code, value, -1, SWAP(u)->control_pid, error);
1483 }
1484
1485 static int swap_get_timeout(Unit *u, usec_t *timeout) {
1486 Swap *s = SWAP(u);
1487 usec_t t;
1488 int r;
1489
1490 assert(s);
1491 assert(u);
1492
1493 if (!s->timer_event_source)
1494 return 0;
1495
1496 r = sd_event_source_get_time(s->timer_event_source, &t);
1497 if (r < 0)
1498 return r;
1499 if (t == USEC_INFINITY)
1500 return 0;
1501
1502 *timeout = t;
1503 return 1;
1504 }
1505
1506 static bool swap_supported(void) {
1507 static int supported = -1;
1508
1509 /* If swap support is not available in the kernel, or we are
1510 * running in a container we don't support swap units, and any
1511 * attempts to starting one should fail immediately. */
1512
1513 if (supported < 0)
1514 supported =
1515 access("/proc/swaps", F_OK) >= 0 &&
1516 detect_container() <= 0;
1517
1518 return supported;
1519 }
1520
1521 static int swap_control_pid(Unit *u) {
1522 Swap *s = SWAP(u);
1523
1524 assert(s);
1525
1526 return s->control_pid;
1527 }
1528
1529 static int swap_clean(Unit *u, ExecCleanMask mask) {
1530 _cleanup_strv_free_ char **l = NULL;
1531 Swap *s = SWAP(u);
1532 int r;
1533
1534 assert(s);
1535 assert(mask != 0);
1536
1537 if (s->state != SWAP_DEAD)
1538 return -EBUSY;
1539
1540 r = exec_context_get_clean_directories(&s->exec_context, u->manager->prefix, mask, &l);
1541 if (r < 0)
1542 return r;
1543
1544 if (strv_isempty(l))
1545 return -EUNATCH;
1546
1547 swap_unwatch_control_pid(s);
1548 s->clean_result = SWAP_SUCCESS;
1549 s->control_command = NULL;
1550 s->control_command_id = _SWAP_EXEC_COMMAND_INVALID;
1551
1552 r = swap_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->exec_context.timeout_clean_usec));
1553 if (r < 0)
1554 goto fail;
1555
1556 r = unit_fork_and_watch_rm_rf(u, l, &s->control_pid);
1557 if (r < 0)
1558 goto fail;
1559
1560 swap_set_state(s, SWAP_CLEANING);
1561
1562 return 0;
1563
1564 fail:
1565 log_unit_warning_errno(u, r, "Failed to initiate cleaning: %m");
1566 s->clean_result = SWAP_FAILURE_RESOURCES;
1567 s->timer_event_source = sd_event_source_disable_unref(s->timer_event_source);
1568 return r;
1569 }
1570
1571 static int swap_can_clean(Unit *u, ExecCleanMask *ret) {
1572 Swap *s = SWAP(u);
1573
1574 assert(s);
1575
1576 return exec_context_get_clean_mask(&s->exec_context, ret);
1577 }
1578
1579 static int swap_can_start(Unit *u) {
1580 Swap *s = SWAP(u);
1581 int r;
1582
1583 assert(s);
1584
1585 r = unit_test_start_limit(u);
1586 if (r < 0) {
1587 swap_enter_dead(s, SWAP_FAILURE_START_LIMIT_HIT);
1588 return r;
1589 }
1590
1591 return 1;
1592 }
1593
1594 static const char* const swap_exec_command_table[_SWAP_EXEC_COMMAND_MAX] = {
1595 [SWAP_EXEC_ACTIVATE] = "ExecActivate",
1596 [SWAP_EXEC_DEACTIVATE] = "ExecDeactivate",
1597 };
1598
1599 DEFINE_STRING_TABLE_LOOKUP(swap_exec_command, SwapExecCommand);
1600
1601 static const char* const swap_result_table[_SWAP_RESULT_MAX] = {
1602 [SWAP_SUCCESS] = "success",
1603 [SWAP_FAILURE_RESOURCES] = "resources",
1604 [SWAP_FAILURE_TIMEOUT] = "timeout",
1605 [SWAP_FAILURE_EXIT_CODE] = "exit-code",
1606 [SWAP_FAILURE_SIGNAL] = "signal",
1607 [SWAP_FAILURE_CORE_DUMP] = "core-dump",
1608 [SWAP_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
1609 };
1610
1611 DEFINE_STRING_TABLE_LOOKUP(swap_result, SwapResult);
1612
1613 const UnitVTable swap_vtable = {
1614 .object_size = sizeof(Swap),
1615 .exec_context_offset = offsetof(Swap, exec_context),
1616 .cgroup_context_offset = offsetof(Swap, cgroup_context),
1617 .kill_context_offset = offsetof(Swap, kill_context),
1618 .exec_runtime_offset = offsetof(Swap, exec_runtime),
1619
1620 .sections =
1621 "Unit\0"
1622 "Swap\0"
1623 "Install\0",
1624 .private_section = "Swap",
1625
1626 .can_fail = true,
1627
1628 .init = swap_init,
1629 .load = swap_load,
1630 .done = swap_done,
1631
1632 .coldplug = swap_coldplug,
1633
1634 .dump = swap_dump,
1635
1636 .start = swap_start,
1637 .stop = swap_stop,
1638
1639 .kill = swap_kill,
1640 .clean = swap_clean,
1641 .can_clean = swap_can_clean,
1642
1643 .get_timeout = swap_get_timeout,
1644
1645 .serialize = swap_serialize,
1646 .deserialize_item = swap_deserialize_item,
1647
1648 .active_state = swap_active_state,
1649 .sub_state_to_string = swap_sub_state_to_string,
1650
1651 .will_restart = unit_will_restart_default,
1652
1653 .may_gc = swap_may_gc,
1654 .is_extrinsic = swap_is_extrinsic,
1655
1656 .sigchld_event = swap_sigchld_event,
1657
1658 .reset_failed = swap_reset_failed,
1659
1660 .control_pid = swap_control_pid,
1661
1662 .bus_set_property = bus_swap_set_property,
1663 .bus_commit_properties = bus_swap_commit_properties,
1664
1665 .following = swap_following,
1666 .following_set = swap_following_set,
1667
1668 .enumerate = swap_enumerate,
1669 .shutdown = swap_shutdown,
1670 .supported = swap_supported,
1671
1672 .status_message_formats = {
1673 .starting_stopping = {
1674 [0] = "Activating swap %s...",
1675 [1] = "Deactivating swap %s...",
1676 },
1677 .finished_start_job = {
1678 [JOB_DONE] = "Activated swap %s.",
1679 [JOB_FAILED] = "Failed to activate swap %s.",
1680 [JOB_TIMEOUT] = "Timed out activating swap %s.",
1681 },
1682 .finished_stop_job = {
1683 [JOB_DONE] = "Deactivated swap %s.",
1684 [JOB_FAILED] = "Failed deactivating swap %s.",
1685 [JOB_TIMEOUT] = "Timed out deactivating swap %s.",
1686 },
1687 },
1688
1689 .can_start = swap_can_start,
1690
1691 .notify_plymouth = true,
1692 };