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