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