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