]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/swap.c
pid1: also process memory pressure events (and SIGRTMIN+18)
[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
39c79477
ZJS
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
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
1f19a534 142 s->timeout_usec = u->manager->default_timeout_start_usec;
e04aad61 143
ac155bb8
MS
144 s->exec_context.std_output = u->manager->default_std_output;
145 s->exec_context.std_error = u->manager->default_std_error;
085afe36 146
e1770af8 147 s->control_command_id = _SWAP_EXEC_COMMAND_INVALID;
c8f4d764 148
5bcb0f2b 149 u->ignore_on_isolate = true;
e04aad61
LP
150}
151
152static void swap_unwatch_control_pid(Swap *s) {
153 assert(s);
154
155 if (s->control_pid <= 0)
156 return;
157
8f03de53 158 unit_unwatch_pid(UNIT(s), TAKE_PID(s->control_pid));
6e620bec
LP
159}
160
4e85aff4
LP
161static void swap_done(Unit *u) {
162 Swap *s = SWAP(u);
07b0b134 163
4e85aff4 164 assert(s);
07b0b134 165
e04aad61 166 swap_unset_proc_swaps(s);
9670d583 167 swap_set_devnode(s, NULL);
e04aad61 168
a1e58e8e
LP
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);
86b23b07 172
e8a565cb 173 s->exec_runtime = exec_runtime_unref(s->exec_runtime, false);
e04aad61
LP
174 exec_command_done_array(s->exec_command, _SWAP_EXEC_COMMAND_MAX);
175 s->control_command = NULL;
176
29206d46
LP
177 dynamic_creds_unref(&s->dynamic_creds);
178
e04aad61
LP
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
5a724170 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
YW
491 _cleanup_(sd_device_unrefp) sd_device *d = NULL;
492 const char *dn, *devlink;
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
2ad2e41a 555 unit_notify(UNIT(s), state_translation_table[old_state], state_translation_table[state], 0);
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
c386f588
LP
583 if (s->control_pid > 0 &&
584 pid_is_unwaited(s->control_pid) &&
dedf3719 585 SWAP_STATE_WITH_PROCESS(new_state)) {
e04aad61 586
f75f613d 587 r = unit_watch_pid(UNIT(s), s->control_pid, 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
e8a565cb 596 if (!IN_SET(new_state, SWAP_DEAD, SWAP_FAILED)) {
29206d46 597 (void) unit_setup_dynamic_creds(u);
e8a565cb
YW
598 (void) unit_setup_exec_runtime(u);
599 }
29206d46 600
5bcb0f2b 601 swap_set_state(s, new_state);
07b0b134
ML
602 return 0;
603}
604
605static void swap_dump(Unit *u, FILE *f, const char *prefix) {
606 Swap *s = SWAP(u);
4e85aff4 607 SwapParameters *p;
07b0b134
ML
608
609 assert(s);
4e85aff4
LP
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;
b6bfc7bb
LP
616 else
617 p = NULL;
07b0b134
ML
618
619 fprintf(f,
4e85aff4 620 "%sSwap State: %s\n"
e1770af8 621 "%sResult: %s\n"
a8b689b7 622 "%sClean Result: %s\n"
07b0b134 623 "%sWhat: %s\n"
4e85aff4 624 "%sFrom /proc/swaps: %s\n"
39c79477
ZJS
625 "%sFrom fragment: %s\n"
626 "%sExtrinsic: %s\n",
07b0b134 627 prefix, swap_state_to_string(s->state),
e1770af8 628 prefix, swap_result_to_string(s->result),
a8b689b7 629 prefix, swap_result_to_string(s->clean_result),
07b0b134 630 prefix, s->what,
4e85aff4 631 prefix, yes_no(s->from_proc_swaps),
39c79477
ZJS
632 prefix, yes_no(s->from_fragment),
633 prefix, yes_no(swap_is_extrinsic(u)));
e04aad61 634
9670d583
LP
635 if (s->devnode)
636 fprintf(f, "%sDevice Node: %s\n", prefix, s->devnode);
637
b6bfc7bb
LP
638 if (p)
639 fprintf(f,
640 "%sPriority: %i\n"
47cb901e 641 "%sOptions: %s\n",
b6bfc7bb 642 prefix, p->priority,
47cb901e 643 prefix, strempty(p->options));
b6bfc7bb 644
9bd0e1b8
YW
645 fprintf(f,
646 "%sTimeoutSec: %s\n",
5291f26d 647 prefix, FORMAT_TIMESPAN(s->timeout_usec, USEC_PER_SEC));
9bd0e1b8 648
e04aad61
LP
649 if (s->control_pid > 0)
650 fprintf(f,
de0671ee
ZJS
651 "%sControl PID: "PID_FMT"\n",
652 prefix, s->control_pid);
e04aad61
LP
653
654 exec_context_dump(&s->exec_context, f, prefix);
4819ff03 655 kill_context_dump(&s->kill_context, f, prefix);
bc0623df 656 cgroup_context_dump(UNIT(s), f, prefix);
e04aad61
LP
657}
658
659static int swap_spawn(Swap *s, ExecCommand *c, pid_t *_pid) {
3c7416b6 660
b9c04eaf 661 _cleanup_(exec_params_clear) ExecParameters exec_params = {
1703fa41 662 .flags = EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN,
254d1313
ZJS
663 .stdin_fd = -EBADF,
664 .stdout_fd = -EBADF,
665 .stderr_fd = -EBADF,
666 .exec_fd = -EBADF,
9fa95f85 667 };
3c7416b6
LP
668 pid_t pid;
669 int r;
e04aad61
LP
670
671 assert(s);
672 assert(c);
673 assert(_pid);
674
3c7416b6 675 r = unit_prepare_exec(UNIT(s));
29206d46 676 if (r < 0)
3c7416b6 677 return r;
29206d46 678
36c16a7c 679 r = swap_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_usec));
646134dc 680 if (r < 0)
e04aad61
LP
681 goto fail;
682
1ad6e8b3
LP
683 r = unit_set_exec_params(UNIT(s), &exec_params);
684 if (r < 0)
685 goto fail;
9fa95f85 686
f2341e0a
LP
687 r = exec_spawn(UNIT(s),
688 c,
646134dc 689 &s->exec_context,
9fa95f85 690 &exec_params,
613b411c 691 s->exec_runtime,
29206d46 692 &s->dynamic_creds,
646134dc
ZJS
693 &pid);
694 if (r < 0)
e04aad61
LP
695 goto fail;
696
f75f613d 697 r = unit_watch_pid(UNIT(s), pid, true);
646134dc 698 if (r < 0)
e04aad61
LP
699 goto fail;
700
701 *_pid = pid;
702
703 return 0;
704
705fail:
5dcadb4c 706 s->timer_event_source = sd_event_source_disable_unref(s->timer_event_source);
3536f49e 707
e04aad61 708 return r;
07b0b134
ML
709}
710
e1770af8 711static void swap_enter_dead(Swap *s, SwapResult f) {
07b0b134
ML
712 assert(s);
713
a0fef983 714 if (s->result == SWAP_SUCCESS)
e1770af8 715 s->result = f;
e04aad61 716
aac99f30 717 unit_log_result(UNIT(s), s->result == SWAP_SUCCESS, swap_result_to_string(s->result));
4c425434 718 unit_warn_leftover_processes(UNIT(s), unit_log_leftover_process_stop);
29206d46
LP
719 swap_set_state(s, s->result != SWAP_SUCCESS ? SWAP_FAILED : SWAP_DEAD);
720
e8a565cb 721 s->exec_runtime = exec_runtime_unref(s->exec_runtime, true);
613b411c 722
bb0c0d6f 723 unit_destroy_runtime_data(UNIT(s), &s->exec_context);
e66cf1a3 724
00d9ef85
LP
725 unit_unref_uid_gid(UNIT(s), true);
726
29206d46 727 dynamic_creds_destroy(&s->dynamic_creds);
07b0b134
ML
728}
729
e1770af8 730static void swap_enter_active(Swap *s, SwapResult f) {
e04aad61
LP
731 assert(s);
732
a0fef983 733 if (s->result == SWAP_SUCCESS)
e1770af8 734 s->result = f;
e04aad61
LP
735
736 swap_set_state(s, SWAP_ACTIVE);
737}
738
50864457
LP
739static void swap_enter_dead_or_active(Swap *s, SwapResult f) {
740 assert(s);
741
9c1f969d 742 if (s->from_proc_swaps) {
50864457 743 swap_enter_active(s, f);
9c1f969d
HD
744
745 LIST_FOREACH_OTHERS(same_devnode, other, s)
746 if (UNIT(other)->job)
747 swap_enter_dead_or_active(other, f);
748 } else
50864457
LP
749 swap_enter_dead(s, f);
750}
751
a232ebcc
ZJS
752static int state_to_kill_operation(Swap *s, SwapState state) {
753 if (state == SWAP_DEACTIVATING_SIGTERM) {
754 if (unit_has_job_type(UNIT(s), JOB_RESTART))
755 return KILL_RESTART;
756 else
757 return KILL_TERMINATE;
758 }
759
760 return KILL_KILL;
761}
762
e1770af8 763static void swap_enter_signal(Swap *s, SwapState state, SwapResult f) {
07b0b134
ML
764 int r;
765
766 assert(s);
e04aad61 767
a0fef983 768 if (s->result == SWAP_SUCCESS)
e1770af8 769 s->result = f;
e04aad61 770
a232ebcc
ZJS
771 r = unit_kill_context(UNIT(s),
772 &s->kill_context,
773 state_to_kill_operation(s, state),
774 -1,
775 s->control_pid,
776 false);
cd2086fe
LP
777 if (r < 0)
778 goto fail;
e04aad61 779
cd2086fe 780 if (r > 0) {
36c16a7c 781 r = swap_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_usec));
646134dc 782 if (r < 0)
e04aad61
LP
783 goto fail;
784
785 swap_set_state(s, state);
50864457 786 } else if (state == SWAP_DEACTIVATING_SIGTERM && s->kill_context.send_sigkill)
ac84d1fb
LP
787 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, SWAP_SUCCESS);
788 else
50864457 789 swap_enter_dead_or_active(s, SWAP_SUCCESS);
e04aad61
LP
790
791 return;
792
793fail:
f2341e0a 794 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
50864457 795 swap_enter_dead_or_active(s, SWAP_FAILURE_RESOURCES);
e04aad61
LP
796}
797
798static void swap_enter_activating(Swap *s) {
bf1d7ba7
KZ
799 _cleanup_free_ char *opts = NULL;
800 int r;
e04aad61
LP
801
802 assert(s);
803
4c425434 804 unit_warn_leftover_processes(UNIT(s), unit_log_leftover_process_start);
a4634b21 805
e04aad61
LP
806 s->control_command_id = SWAP_EXEC_ACTIVATE;
807 s->control_command = s->exec_command + SWAP_EXEC_ACTIVATE;
07b0b134 808
86b23b07 809 if (s->from_fragment) {
7477451b 810 int priority = 0;
47cb901e 811
bf1d7ba7
KZ
812 r = fstab_find_pri(s->parameters_fragment.options, &priority);
813 if (r < 0)
af4454cb
LP
814 log_unit_warning_errno(UNIT(s), r, "Failed to parse swap priority \"%s\", ignoring: %m", s->parameters_fragment.options);
815 else if (r > 0 && s->parameters_fragment.priority_set)
816 log_unit_warning(UNIT(s), "Duplicate swap priority configuration by Priority= and Options= fields.");
bf1d7ba7 817
7477451b 818 if (r <= 0 && s->parameters_fragment.priority_set) {
bf1d7ba7
KZ
819 if (s->parameters_fragment.options)
820 r = asprintf(&opts, "%s,pri=%i", s->parameters_fragment.options, s->parameters_fragment.priority);
821 else
822 r = asprintf(&opts, "pri=%i", s->parameters_fragment.priority);
6fca66a7
LP
823 if (r < 0) {
824 r = -ENOMEM;
bf1d7ba7 825 goto fail;
6fca66a7 826 }
e64d5235 827 }
86b23b07
JS
828 }
829
cc137d53 830 r = exec_command_set(s->control_command, "/sbin/swapon", "--fixpgsz", NULL);
86b23b07
JS
831 if (r < 0)
832 goto fail;
4e85aff4 833
bf1d7ba7
KZ
834 if (s->parameters_fragment.options || opts) {
835 r = exec_command_append(s->control_command, "-o",
af4454cb 836 opts ?: s->parameters_fragment.options, NULL);
86b23b07
JS
837 if (r < 0)
838 goto fail;
839 }
e04aad61 840
86b23b07 841 r = exec_command_append(s->control_command, s->what, NULL);
e04aad61
LP
842 if (r < 0)
843 goto fail;
844
845 swap_unwatch_control_pid(s);
846
646134dc
ZJS
847 r = swap_spawn(s, s->control_command, &s->control_pid);
848 if (r < 0)
e04aad61
LP
849 goto fail;
850
851 swap_set_state(s, SWAP_ACTIVATING);
e04aad61
LP
852 return;
853
854fail:
f2341e0a 855 log_unit_warning_errno(UNIT(s), r, "Failed to run 'swapon' task: %m");
50864457 856 swap_enter_dead_or_active(s, SWAP_FAILURE_RESOURCES);
e04aad61
LP
857}
858
e1770af8 859static void swap_enter_deactivating(Swap *s) {
e04aad61
LP
860 int r;
861
862 assert(s);
863
e04aad61
LP
864 s->control_command_id = SWAP_EXEC_DEACTIVATE;
865 s->control_command = s->exec_command + SWAP_EXEC_DEACTIVATE;
866
646134dc 867 r = exec_command_set(s->control_command,
e04aad61
LP
868 "/sbin/swapoff",
869 s->what,
646134dc
ZJS
870 NULL);
871 if (r < 0)
e04aad61
LP
872 goto fail;
873
874 swap_unwatch_control_pid(s);
875
646134dc
ZJS
876 r = swap_spawn(s, s->control_command, &s->control_pid);
877 if (r < 0)
e04aad61
LP
878 goto fail;
879
880 swap_set_state(s, SWAP_DEACTIVATING);
881
882 return;
883
884fail:
f2341e0a 885 log_unit_warning_errno(UNIT(s), r, "Failed to run 'swapoff' task: %m");
50864457 886 swap_enter_dead_or_active(s, SWAP_FAILURE_RESOURCES);
e04aad61
LP
887}
888
31135818
LP
889static void swap_cycle_clear(Swap *s) {
890 assert(s);
891
892 s->result = SWAP_SUCCESS;
893 exec_command_reset_status_array(s->exec_command, _SWAP_EXEC_COMMAND_MAX);
894 UNIT(s)->reset_accounting = true;
895}
896
e04aad61 897static int swap_start(Unit *u) {
03677889 898 Swap *s = SWAP(u);
07299350 899 int r;
e04aad61
LP
900
901 assert(s);
902
50864457 903 /* We cannot fulfill this request right now, try again later please! */
d31ae548
FB
904 if (IN_SET(s->state,
905 SWAP_DEACTIVATING,
906 SWAP_DEACTIVATING_SIGTERM,
a8b689b7
YW
907 SWAP_DEACTIVATING_SIGKILL,
908 SWAP_CLEANING))
e04aad61
LP
909 return -EAGAIN;
910
50864457 911 /* Already on it! */
e04aad61
LP
912 if (s->state == SWAP_ACTIVATING)
913 return 0;
914
d31ae548 915 assert(IN_SET(s->state, SWAP_DEAD, SWAP_FAILED));
e04aad61 916
75f86906 917 if (detect_container() > 0)
a5c3034f
LP
918 return -EPERM;
919
37cf8fee
LP
920 /* If there's a job for another swap unit for the same node
921 * running, then let's not dispatch this one for now, and wait
922 * until that other job has finished. */
923 LIST_FOREACH_OTHERS(same_devnode, other, s)
924 if (UNIT(other)->job && UNIT(other)->job->state == JOB_RUNNING)
925 return -EAGAIN;
926
4b58153d
LP
927 r = unit_acquire_invocation_id(u);
928 if (r < 0)
929 return r;
930
31135818 931 swap_cycle_clear(s);
e04aad61 932 swap_enter_activating(s);
82a2b6bb 933 return 1;
07b0b134
ML
934}
935
936static int swap_stop(Unit *u) {
937 Swap *s = SWAP(u);
07b0b134
ML
938
939 assert(s);
940
50864457
LP
941 switch (s->state) {
942
943 case SWAP_DEACTIVATING:
944 case SWAP_DEACTIVATING_SIGTERM:
945 case SWAP_DEACTIVATING_SIGKILL:
946 /* Already on it */
e04aad61 947 return 0;
07b0b134 948
50864457
LP
949 case SWAP_ACTIVATING:
950 case SWAP_ACTIVATING_DONE:
951 /* There's a control process pending, directly enter kill mode */
952 swap_enter_signal(s, SWAP_DEACTIVATING_SIGTERM, SWAP_SUCCESS);
953 return 0;
07b0b134 954
50864457
LP
955 case SWAP_ACTIVE:
956 if (detect_container() > 0)
957 return -EPERM;
a5c3034f 958
50864457
LP
959 swap_enter_deactivating(s);
960 return 1;
961
a8b689b7
YW
962 case SWAP_CLEANING:
963 /* If we are currently cleaning, then abort it, brutally. */
964 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, SWAP_SUCCESS);
965 return 0;
966
50864457 967 default:
04499a70 968 assert_not_reached();
50864457 969 }
07b0b134
ML
970}
971
972static int swap_serialize(Unit *u, FILE *f, FDSet *fds) {
973 Swap *s = SWAP(u);
974
975 assert(s);
976 assert(f);
977 assert(fds);
978
d68c645b
LP
979 (void) serialize_item(f, "state", swap_state_to_string(s->state));
980 (void) serialize_item(f, "result", swap_result_to_string(s->result));
e04aad61
LP
981
982 if (s->control_pid > 0)
d68c645b 983 (void) serialize_item_format(f, "control-pid", PID_FMT, s->control_pid);
e04aad61
LP
984
985 if (s->control_command_id >= 0)
d68c645b 986 (void) serialize_item(f, "control-command", swap_exec_command_to_string(s->control_command_id));
07b0b134
ML
987
988 return 0;
989}
990
991static int swap_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
992 Swap *s = SWAP(u);
993
994 assert(s);
995 assert(fds);
996
997 if (streq(key, "state")) {
998 SwapState state;
999
646134dc
ZJS
1000 state = swap_state_from_string(value);
1001 if (state < 0)
f2341e0a 1002 log_unit_debug(u, "Failed to parse state value: %s", value);
07b0b134
ML
1003 else
1004 s->deserialized_state = state;
e1770af8
LP
1005 } else if (streq(key, "result")) {
1006 SwapResult f;
1007
1008 f = swap_result_from_string(value);
1009 if (f < 0)
f2341e0a 1010 log_unit_debug(u, "Failed to parse result value: %s", value);
e1770af8
LP
1011 else if (f != SWAP_SUCCESS)
1012 s->result = f;
e04aad61
LP
1013 } else if (streq(key, "control-pid")) {
1014 pid_t pid;
1015
1016 if (parse_pid(value, &pid) < 0)
f2341e0a 1017 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
e04aad61
LP
1018 else
1019 s->control_pid = pid;
1020
1021 } else if (streq(key, "control-command")) {
1022 SwapExecCommand id;
1023
646134dc
ZJS
1024 id = swap_exec_command_from_string(value);
1025 if (id < 0)
f2341e0a 1026 log_unit_debug(u, "Failed to parse exec-command value: %s", value);
e04aad61
LP
1027 else {
1028 s->control_command_id = id;
1029 s->control_command = s->exec_command + id;
1030 }
07b0b134 1031 } else
f2341e0a 1032 log_unit_debug(u, "Unknown serialization key: %s", key);
07b0b134
ML
1033
1034 return 0;
1035}
1036
e04aad61
LP
1037static void swap_sigchld_event(Unit *u, pid_t pid, int code, int status) {
1038 Swap *s = SWAP(u);
e1770af8 1039 SwapResult f;
e04aad61
LP
1040
1041 assert(s);
1042 assert(pid >= 0);
1043
1044 if (pid != s->control_pid)
1045 return;
1046
bcce581d
LP
1047 /* Let's scan /proc/swaps before we process SIGCHLD. For the reasoning see the similar code in
1048 * mount.c */
1049 (void) swap_process_proc_swaps(u->manager);
1050
e04aad61
LP
1051 s->control_pid = 0;
1052
1f0958f6 1053 if (is_clean_exit(code, status, EXIT_CLEAN_COMMAND, NULL))
e1770af8
LP
1054 f = SWAP_SUCCESS;
1055 else if (code == CLD_EXITED)
1056 f = SWAP_FAILURE_EXIT_CODE;
1057 else if (code == CLD_KILLED)
1058 f = SWAP_FAILURE_SIGNAL;
1059 else if (code == CLD_DUMPED)
1060 f = SWAP_FAILURE_CORE_DUMP;
1061 else
04499a70 1062 assert_not_reached();
e1770af8 1063
a0fef983 1064 if (s->result == SWAP_SUCCESS)
e1770af8 1065 s->result = f;
e04aad61
LP
1066
1067 if (s->control_command) {
6ea832a2 1068 exec_status_exit(&s->control_command->exec_status, &s->exec_context, pid, code, status);
e1770af8 1069
e04aad61
LP
1070 s->control_command = NULL;
1071 s->control_command_id = _SWAP_EXEC_COMMAND_INVALID;
1072 }
1073
91bbd9b7 1074 unit_log_process_exit(
5cc2cd1c 1075 u,
91bbd9b7
LP
1076 "Swap process",
1077 swap_exec_command_to_string(s->control_command_id),
5cc2cd1c 1078 f == SWAP_SUCCESS,
91bbd9b7 1079 code, status);
e04aad61
LP
1080
1081 switch (s->state) {
1082
1083 case SWAP_ACTIVATING:
5bcb0f2b 1084 case SWAP_ACTIVATING_DONE:
e04aad61 1085
50864457 1086 if (f == SWAP_SUCCESS || s->from_proc_swaps)
e1770af8 1087 swap_enter_active(s, f);
e04aad61 1088 else
e1770af8 1089 swap_enter_dead(s, f);
e04aad61
LP
1090 break;
1091
1092 case SWAP_DEACTIVATING:
1093 case SWAP_DEACTIVATING_SIGKILL:
1094 case SWAP_DEACTIVATING_SIGTERM:
1095
50864457 1096 swap_enter_dead_or_active(s, f);
e04aad61
LP
1097 break;
1098
a8b689b7
YW
1099 case SWAP_CLEANING:
1100 if (s->clean_result == SWAP_SUCCESS)
1101 s->clean_result = f;
1102
1103 swap_enter_dead(s, SWAP_SUCCESS);
1104 break;
1105
e04aad61 1106 default:
04499a70 1107 assert_not_reached();
e04aad61
LP
1108 }
1109
1110 /* Notify clients about changed exit status */
1111 unit_add_to_dbus_queue(u);
e04aad61
LP
1112}
1113
718db961
LP
1114static int swap_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
1115 Swap *s = SWAP(userdata);
e04aad61
LP
1116
1117 assert(s);
718db961 1118 assert(s->timer_event_source == source);
e04aad61
LP
1119
1120 switch (s->state) {
1121
1122 case SWAP_ACTIVATING:
5bcb0f2b 1123 case SWAP_ACTIVATING_DONE:
f2341e0a 1124 log_unit_warning(UNIT(s), "Activation timed out. Stopping.");
50864457 1125 swap_enter_signal(s, SWAP_DEACTIVATING_SIGTERM, SWAP_FAILURE_TIMEOUT);
e04aad61
LP
1126 break;
1127
1128 case SWAP_DEACTIVATING:
f2341e0a 1129 log_unit_warning(UNIT(s), "Deactivation timed out. Stopping.");
e1770af8 1130 swap_enter_signal(s, SWAP_DEACTIVATING_SIGTERM, SWAP_FAILURE_TIMEOUT);
e04aad61
LP
1131 break;
1132
e04aad61 1133 case SWAP_DEACTIVATING_SIGTERM:
4819ff03 1134 if (s->kill_context.send_sigkill) {
50864457 1135 log_unit_warning(UNIT(s), "Swap process timed out. Killing.");
e1770af8 1136 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, SWAP_FAILURE_TIMEOUT);
ba035df2 1137 } else {
50864457
LP
1138 log_unit_warning(UNIT(s), "Swap process timed out. Skipping SIGKILL. Ignoring.");
1139 swap_enter_dead_or_active(s, SWAP_FAILURE_TIMEOUT);
ba035df2 1140 }
e04aad61
LP
1141 break;
1142
e04aad61 1143 case SWAP_DEACTIVATING_SIGKILL:
f2341e0a 1144 log_unit_warning(UNIT(s), "Swap process still around after SIGKILL. Ignoring.");
50864457 1145 swap_enter_dead_or_active(s, SWAP_FAILURE_TIMEOUT);
e04aad61
LP
1146 break;
1147
a8b689b7
YW
1148 case SWAP_CLEANING:
1149 log_unit_warning(UNIT(s), "Cleaning timed out. killing.");
1150
1151 if (s->clean_result == SWAP_SUCCESS)
1152 s->clean_result = SWAP_FAILURE_TIMEOUT;
1153
1154 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, 0);
1155 break;
1156
e04aad61 1157 default:
04499a70 1158 assert_not_reached();
e04aad61 1159 }
718db961
LP
1160
1161 return 0;
e04aad61
LP
1162}
1163
1164static int swap_load_proc_swaps(Manager *m, bool set_flags) {
e04aad61
LP
1165 assert(m);
1166
07b0b134 1167 rewind(m->proc_swaps);
bab45044 1168
4e85aff4 1169 (void) fscanf(m->proc_swaps, "%*s %*s %*s %*s %*s\n");
07b0b134 1170
fe96c0f8 1171 for (unsigned i = 1;; i++) {
9fb3675e 1172 _cleanup_free_ char *dev = NULL, *d = NULL;
07b0b134
ML
1173 int prio = 0, k;
1174
646134dc
ZJS
1175 k = fscanf(m->proc_swaps,
1176 "%ms " /* device/file */
1177 "%*s " /* type of swap */
1178 "%*s " /* swap size */
1179 "%*s " /* used */
1180 "%i\n", /* priority */
1181 &dev, &prio);
1182 if (k != 2) {
07b0b134 1183 if (k == EOF)
4e85aff4 1184 break;
07b0b134 1185
628c89cc 1186 log_warning("Failed to parse /proc/swaps:%u.", i);
e04aad61 1187 continue;
07b0b134 1188 }
07b0b134 1189
e437538f
ZJS
1190 ssize_t l = cunescape(dev, UNESCAPE_RELAX, &d);
1191 if (l < 0)
1192 return log_error_errno(l, "Failed to unescape device path: %m");
628c89cc 1193
485ae697 1194 device_found_node(m, d, DEVICE_FOUND_SWAP, DEVICE_FOUND_SWAP);
4e85aff4 1195
eb04385d 1196 (void) swap_process_new(m, d, prio, set_flags);
07b0b134
ML
1197 }
1198
eb04385d 1199 return 0;
e04aad61
LP
1200}
1201
bcce581d 1202static int swap_process_proc_swaps(Manager *m) {
4e434314
LP
1203 int r;
1204
1205 assert(m);
4e434314 1206
646134dc
ZJS
1207 r = swap_load_proc_swaps(m, true);
1208 if (r < 0) {
da927ba9 1209 log_error_errno(r, "Failed to reread /proc/swaps: %m");
e04aad61
LP
1210
1211 /* Reset flags, just in case, for late calls */
595ed347
MS
1212 LIST_FOREACH(units_by_type, u, m->units_by_type[UNIT_SWAP]) {
1213 Swap *swap = SWAP(u);
e04aad61 1214
c73f413d
FS
1215 assert(swap);
1216
e04aad61
LP
1217 swap->is_active = swap->just_activated = false;
1218 }
1219
1220 return 0;
1221 }
1222
1223 manager_dispatch_load_queue(m);
1224
595ed347
MS
1225 LIST_FOREACH(units_by_type, u, m->units_by_type[UNIT_SWAP]) {
1226 Swap *swap = SWAP(u);
e04aad61 1227
c73f413d
FS
1228 assert(swap);
1229
e04aad61 1230 if (!swap->is_active) {
e04aad61 1231
e04aad61
LP
1232 swap_unset_proc_swaps(swap);
1233
1234 switch (swap->state) {
1235
1236 case SWAP_ACTIVE:
ba6fbb2c 1237 /* This has just been deactivated */
e1770af8 1238 swap_enter_dead(swap, SWAP_SUCCESS);
e04aad61
LP
1239 break;
1240
1241 default:
5bcb0f2b 1242 /* Fire again */
e04aad61
LP
1243 swap_set_state(swap, swap->state);
1244 break;
1245 }
1246
628c89cc 1247 if (swap->what)
b1ba0ce8 1248 device_found_node(m, swap->what, DEVICE_NOT_FOUND, DEVICE_FOUND_SWAP);
628c89cc 1249
e04aad61
LP
1250 } else if (swap->just_activated) {
1251
1252 /* New swap entry */
1253
1254 switch (swap->state) {
1255
1256 case SWAP_DEAD:
1257 case SWAP_FAILED:
31135818
LP
1258 (void) unit_acquire_invocation_id(u);
1259 swap_cycle_clear(swap);
e1770af8 1260 swap_enter_active(swap, SWAP_SUCCESS);
e04aad61
LP
1261 break;
1262
5bcb0f2b
LP
1263 case SWAP_ACTIVATING:
1264 swap_set_state(swap, SWAP_ACTIVATING_DONE);
1265 break;
1266
e04aad61
LP
1267 default:
1268 /* Nothing really changed, but let's
1269 * issue an notification call
1270 * nonetheless, in case somebody is
1271 * waiting for this. */
1272 swap_set_state(swap, swap->state);
1273 break;
1274 }
1275 }
1276
1277 /* Reset the flags for later calls */
1278 swap->is_active = swap->just_activated = false;
1279 }
1280
1281 return 1;
1282}
1283
bcce581d 1284static int swap_dispatch_io(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
99534007 1285 Manager *m = ASSERT_PTR(userdata);
bcce581d 1286
bcce581d
LP
1287 assert(revents & EPOLLPRI);
1288
1289 return swap_process_proc_swaps(m);
1290}
1291
e04aad61
LP
1292static Unit *swap_following(Unit *u) {
1293 Swap *s = SWAP(u);
03677889 1294 Swap *first = NULL;
e04aad61
LP
1295
1296 assert(s);
1297
cdc89820
ZJS
1298 /* If the user configured the swap through /etc/fstab or
1299 * a device unit, follow that. */
1300
1301 if (s->from_fragment)
e04aad61
LP
1302 return NULL;
1303
caac2704 1304 LIST_FOREACH_OTHERS(same_devnode, other, s)
cdc89820
ZJS
1305 if (other->from_fragment)
1306 return UNIT(other);
1307
b938cb90 1308 /* Otherwise, make everybody follow the unit that's named after
cdc89820
ZJS
1309 * the swap device in the kernel */
1310
1311 if (streq_ptr(s->what, s->devnode))
1312 return NULL;
e04aad61 1313
bd335c96 1314 LIST_FOREACH(same_devnode, other, s->same_devnode_next)
9670d583 1315 if (streq_ptr(other->what, other->devnode))
e04aad61
LP
1316 return UNIT(other);
1317
bd335c96 1318 LIST_FOREACH_BACKWARDS(same_devnode, other, s->same_devnode_prev) {
9670d583 1319 if (streq_ptr(other->what, other->devnode))
e04aad61
LP
1320 return UNIT(other);
1321
1322 first = other;
1323 }
1324
cdc89820 1325 /* Fall back to the first on the list */
e04aad61 1326 return UNIT(first);
07b0b134
ML
1327}
1328
6210e7fc 1329static int swap_following_set(Unit *u, Set **_set) {
03677889 1330 Swap *s = SWAP(u);
af4fa99d 1331 _cleanup_set_free_ Set *set = NULL;
6210e7fc
LP
1332 int r;
1333
1334 assert(s);
1335 assert(_set);
1336
9670d583 1337 if (LIST_JUST_US(same_devnode, s)) {
6210e7fc
LP
1338 *_set = NULL;
1339 return 0;
1340 }
1341
d5099efc 1342 set = set_new(NULL);
5bcb0f2b 1343 if (!set)
6210e7fc
LP
1344 return -ENOMEM;
1345
caac2704 1346 LIST_FOREACH_OTHERS(same_devnode, other, s) {
5bcb0f2b
LP
1347 r = set_put(set, other);
1348 if (r < 0)
95f14a3e 1349 return r;
5bcb0f2b 1350 }
6210e7fc 1351
95f14a3e 1352 *_set = TAKE_PTR(set);
6210e7fc 1353 return 1;
6210e7fc
LP
1354}
1355
07b0b134
ML
1356static void swap_shutdown(Manager *m) {
1357 assert(m);
1358
5dcadb4c 1359 m->swap_event_source = sd_event_source_disable_unref(m->swap_event_source);
74ca738f 1360 m->proc_swaps = safe_fclose(m->proc_swaps);
525d3cc7 1361 m->swaps_by_devnode = hashmap_free(m->swaps_by_devnode);
07b0b134
ML
1362}
1363
ba64af90 1364static void swap_enumerate(Manager *m) {
07b0b134 1365 int r;
9670d583 1366
07b0b134
ML
1367 assert(m);
1368
4e434314 1369 if (!m->proc_swaps) {
646134dc 1370 m->proc_swaps = fopen("/proc/swaps", "re");
ba64af90
LP
1371 if (!m->proc_swaps) {
1372 if (errno == ENOENT)
cb209a04 1373 log_debug_errno(errno, "Not swap enabled, skipping enumeration.");
ba64af90 1374 else
cb209a04 1375 log_warning_errno(errno, "Failed to open /proc/swaps, ignoring: %m");
ba64af90
LP
1376
1377 return;
1378 }
4e434314 1379
151b9b96 1380 r = sd_event_add_io(m->event, &m->swap_event_source, fileno(m->proc_swaps), EPOLLPRI, swap_dispatch_io, m);
ba64af90
LP
1381 if (r < 0) {
1382 log_error_errno(r, "Failed to watch /proc/swaps: %m");
29083707 1383 goto fail;
ba64af90 1384 }
29083707
LP
1385
1386 /* Dispatch this before we dispatch SIGCHLD, so that
1387 * we always get the events from /proc/swaps before
1388 * the SIGCHLD of /sbin/swapon. */
83231637 1389 r = sd_event_source_set_priority(m->swap_event_source, SD_EVENT_PRIORITY_NORMAL-10);
ba64af90
LP
1390 if (r < 0) {
1391 log_error_errno(r, "Failed to change /proc/swaps priority: %m");
718db961 1392 goto fail;
ba64af90 1393 }
7dfbe2e3
TG
1394
1395 (void) sd_event_source_set_description(m->swap_event_source, "swap-proc");
4e434314
LP
1396 }
1397
646134dc
ZJS
1398 r = swap_load_proc_swaps(m, false);
1399 if (r < 0)
718db961
LP
1400 goto fail;
1401
ba64af90 1402 return;
07b0b134 1403
718db961
LP
1404fail:
1405 swap_shutdown(m);
07b0b134
ML
1406}
1407
4366e598 1408int swap_process_device_new(Manager *m, sd_device *dev) {
9670d583 1409 _cleanup_free_ char *e = NULL;
4366e598 1410 const char *dn, *devlink;
cabf58b2 1411 Unit *u;
c53aafb7 1412 int r;
9670d583
LP
1413
1414 assert(m);
1415 assert(dev);
1416
e82c6e8b 1417 if (sd_device_get_devname(dev, &dn) < 0)
9670d583
LP
1418 return 0;
1419
7410616c 1420 r = unit_name_from_path(dn, ".swap", &e);
e82c6e8b
LP
1421 if (r < 0) {
1422 log_debug_errno(r, "Cannot convert device name '%s' to unit name, ignoring: %m", dn);
1423 return 0;
1424 }
9670d583 1425
cabf58b2
FB
1426 u = manager_get_unit(m, e);
1427 if (u)
1428 r = swap_set_devnode(SWAP(u), dn);
9670d583 1429
4366e598 1430 FOREACH_DEVICE_DEVLINK(dev, devlink) {
9670d583 1431 _cleanup_free_ char *n = NULL;
7410616c 1432 int q;
9670d583 1433
4366e598 1434 q = unit_name_from_path(devlink, ".swap", &n);
03e52e8c 1435 if (q == -EINVAL) /* If the name is not convertible to unit name, we can't manage it */
598a6a84 1436 continue;
7410616c
LP
1437 if (q < 0)
1438 return q;
9670d583 1439
cabf58b2
FB
1440 u = manager_get_unit(m, n);
1441 if (u) {
1442 q = swap_set_devnode(SWAP(u), dn);
9670d583
LP
1443 if (q < 0)
1444 r = q;
1445 }
1446 }
1447
1448 return r;
1449}
1450
4366e598 1451int swap_process_device_remove(Manager *m, sd_device *dev) {
9670d583 1452 const char *dn;
c53aafb7 1453 int r;
9670d583
LP
1454 Swap *s;
1455
4366e598
YW
1456 r = sd_device_get_devname(dev, &dn);
1457 if (r < 0)
9670d583
LP
1458 return 0;
1459
1460 while ((s = hashmap_get(m->swaps_by_devnode, dn))) {
1461 int q;
1462
1463 q = swap_set_devnode(s, NULL);
1464 if (q < 0)
1465 r = q;
1466 }
1467
1468 return r;
1469}
1470
fdf20a31 1471static void swap_reset_failed(Unit *u) {
5632e374
LP
1472 Swap *s = SWAP(u);
1473
1474 assert(s);
1475
fdf20a31 1476 if (s->state == SWAP_FAILED)
5632e374 1477 swap_set_state(s, SWAP_DEAD);
e04aad61 1478
e1770af8 1479 s->result = SWAP_SUCCESS;
a8b689b7 1480 s->clean_result = SWAP_SUCCESS;
5632e374
LP
1481}
1482
a721cd00
LP
1483static int swap_kill(Unit *u, KillWho who, int signo, int code, int value, sd_bus_error *error) {
1484 return unit_kill_common(u, who, signo, code, value, -1, SWAP(u)->control_pid, error);
8a0867d6
LP
1485}
1486
7a7821c8 1487static int swap_get_timeout(Unit *u, usec_t *timeout) {
68db7a3b 1488 Swap *s = SWAP(u);
7a7821c8 1489 usec_t t;
68db7a3b
ZJS
1490 int r;
1491
c73f413d
FS
1492 assert(s);
1493 assert(u);
1494
68db7a3b
ZJS
1495 if (!s->timer_event_source)
1496 return 0;
1497
7a7821c8 1498 r = sd_event_source_get_time(s->timer_event_source, &t);
68db7a3b
ZJS
1499 if (r < 0)
1500 return r;
7a7821c8
LP
1501 if (t == USEC_INFINITY)
1502 return 0;
68db7a3b 1503
7a7821c8 1504 *timeout = t;
68db7a3b
ZJS
1505 return 1;
1506}
1507
1c2e9646 1508static bool swap_supported(void) {
0faacd47
LP
1509 static int supported = -1;
1510
1511 /* If swap support is not available in the kernel, or we are
1512 * running in a container we don't support swap units, and any
1513 * attempts to starting one should fail immediately. */
1514
1515 if (supported < 0)
1516 supported =
1517 access("/proc/swaps", F_OK) >= 0 &&
75f86906 1518 detect_container() <= 0;
0faacd47
LP
1519
1520 return supported;
1521}
1522
291d565a
LP
1523static int swap_control_pid(Unit *u) {
1524 Swap *s = SWAP(u);
1525
1526 assert(s);
1527
1528 return s->control_pid;
1529}
1530
a8b689b7
YW
1531static int swap_clean(Unit *u, ExecCleanMask mask) {
1532 _cleanup_strv_free_ char **l = NULL;
1533 Swap *s = SWAP(u);
1534 int r;
1535
1536 assert(s);
1537 assert(mask != 0);
1538
1539 if (s->state != SWAP_DEAD)
1540 return -EBUSY;
1541
1542 r = exec_context_get_clean_directories(&s->exec_context, u->manager->prefix, mask, &l);
1543 if (r < 0)
1544 return r;
1545
1546 if (strv_isempty(l))
1547 return -EUNATCH;
1548
1549 swap_unwatch_control_pid(s);
1550 s->clean_result = SWAP_SUCCESS;
1551 s->control_command = NULL;
1552 s->control_command_id = _SWAP_EXEC_COMMAND_INVALID;
1553
1554 r = swap_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->exec_context.timeout_clean_usec));
1555 if (r < 0)
1556 goto fail;
1557
1558 r = unit_fork_and_watch_rm_rf(u, l, &s->control_pid);
1559 if (r < 0)
1560 goto fail;
1561
1562 swap_set_state(s, SWAP_CLEANING);
1563
1564 return 0;
1565
1566fail:
1567 log_unit_warning_errno(u, r, "Failed to initiate cleaning: %m");
1568 s->clean_result = SWAP_FAILURE_RESOURCES;
5dcadb4c 1569 s->timer_event_source = sd_event_source_disable_unref(s->timer_event_source);
a8b689b7
YW
1570 return r;
1571}
1572
1573static int swap_can_clean(Unit *u, ExecCleanMask *ret) {
1574 Swap *s = SWAP(u);
1575
1576 assert(s);
1577
1578 return exec_context_get_clean_mask(&s->exec_context, ret);
1579}
1580
705578c3 1581static int swap_can_start(Unit *u) {
9727f242
DDM
1582 Swap *s = SWAP(u);
1583 int r;
1584
1585 assert(s);
1586
1587 r = unit_test_start_limit(u);
1588 if (r < 0) {
1589 swap_enter_dead(s, SWAP_FAILURE_START_LIMIT_HIT);
1590 return r;
1591 }
1592
705578c3 1593 return 1;
9727f242
DDM
1594}
1595
e04aad61 1596static const char* const swap_exec_command_table[_SWAP_EXEC_COMMAND_MAX] = {
48d83e33 1597 [SWAP_EXEC_ACTIVATE] = "ExecActivate",
e04aad61
LP
1598 [SWAP_EXEC_DEACTIVATE] = "ExecDeactivate",
1599};
1600
1601DEFINE_STRING_TABLE_LOOKUP(swap_exec_command, SwapExecCommand);
1602
e1770af8 1603static const char* const swap_result_table[_SWAP_RESULT_MAX] = {
48d83e33
ZJS
1604 [SWAP_SUCCESS] = "success",
1605 [SWAP_FAILURE_RESOURCES] = "resources",
1606 [SWAP_FAILURE_TIMEOUT] = "timeout",
1607 [SWAP_FAILURE_EXIT_CODE] = "exit-code",
1608 [SWAP_FAILURE_SIGNAL] = "signal",
1609 [SWAP_FAILURE_CORE_DUMP] = "core-dump",
07299350 1610 [SWAP_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
e1770af8
LP
1611};
1612
1613DEFINE_STRING_TABLE_LOOKUP(swap_result, SwapResult);
1614
07b0b134 1615const UnitVTable swap_vtable = {
7d17cfbc 1616 .object_size = sizeof(Swap),
718db961
LP
1617 .exec_context_offset = offsetof(Swap, exec_context),
1618 .cgroup_context_offset = offsetof(Swap, cgroup_context),
1619 .kill_context_offset = offsetof(Swap, kill_context),
613b411c 1620 .exec_runtime_offset = offsetof(Swap, exec_runtime),
29206d46 1621 .dynamic_creds_offset = offsetof(Swap, dynamic_creds),
3ef63c31 1622
f975e971
LP
1623 .sections =
1624 "Unit\0"
1625 "Swap\0"
1626 "Install\0",
4ad49000 1627 .private_section = "Swap",
71645aca 1628
c80a9a33
LP
1629 .can_fail = true,
1630
4e85aff4 1631 .init = swap_init,
07b0b134 1632 .load = swap_load,
6e620bec 1633 .done = swap_done,
07b0b134
ML
1634
1635 .coldplug = swap_coldplug,
1636
1637 .dump = swap_dump,
1638
1639 .start = swap_start,
1640 .stop = swap_stop,
1641
8a0867d6 1642 .kill = swap_kill,
a8b689b7
YW
1643 .clean = swap_clean,
1644 .can_clean = swap_can_clean,
8a0867d6 1645
68db7a3b
ZJS
1646 .get_timeout = swap_get_timeout,
1647
07b0b134
ML
1648 .serialize = swap_serialize,
1649 .deserialize_item = swap_deserialize_item,
1650
1651 .active_state = swap_active_state,
1652 .sub_state_to_string = swap_sub_state_to_string,
1653
52a12341
YW
1654 .will_restart = unit_will_restart_default,
1655
f2f725e5 1656 .may_gc = swap_may_gc,
39c79477 1657 .is_extrinsic = swap_is_extrinsic,
07b0b134 1658
e04aad61 1659 .sigchld_event = swap_sigchld_event,
e04aad61
LP
1660
1661 .reset_failed = swap_reset_failed,
1662
291d565a
LP
1663 .control_pid = swap_control_pid,
1664
74c964d3
LP
1665 .bus_set_property = bus_swap_set_property,
1666 .bus_commit_properties = bus_swap_commit_properties,
07b0b134 1667
e04aad61 1668 .following = swap_following,
6210e7fc 1669 .following_set = swap_following_set,
5632e374 1670
6e620bec 1671 .enumerate = swap_enumerate,
c6918296 1672 .shutdown = swap_shutdown,
0faacd47 1673 .supported = swap_supported,
c6918296
MS
1674
1675 .status_message_formats = {
1676 .starting_stopping = {
1677 [0] = "Activating swap %s...",
1678 [1] = "Deactivating swap %s...",
1679 },
1680 .finished_start_job = {
1681 [JOB_DONE] = "Activated swap %s.",
1682 [JOB_FAILED] = "Failed to activate swap %s.",
c6918296
MS
1683 [JOB_TIMEOUT] = "Timed out activating swap %s.",
1684 },
1685 .finished_stop_job = {
1686 [JOB_DONE] = "Deactivated swap %s.",
1687 [JOB_FAILED] = "Failed deactivating swap %s.",
1688 [JOB_TIMEOUT] = "Timed out deactivating swap %s.",
1689 },
1690 },
9727f242 1691
705578c3 1692 .can_start = swap_can_start,
07b0b134 1693};