]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/mount.c
core: undo the dependency inversion between unit.h and all unit types
[thirdparty/systemd.git] / src / core / mount.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a7334b09
LP
2/***
3 This file is part of systemd.
4
5 Copyright 2010 Lennart Poettering
a7334b09
LP
6***/
7
5cb5a6ff 8#include <errno.h>
4f5dd394 9#include <signal.h>
b08d03ff 10#include <stdio.h>
ef734fd6 11#include <sys/epoll.h>
5cb5a6ff 12
227b8a76
MO
13#include <libmount.h>
14
20ad4cfd 15#include "sd-messages.h"
4f5dd394 16
b5efdb8a 17#include "alloc-util.h"
4139c1b2 18#include "dbus-mount.h"
57b7a260 19#include "device.h"
4f5dd394 20#include "escape.h"
9a57c629 21#include "exit-status.h"
f97b34a6 22#include "format-util.h"
4f5dd394
LP
23#include "fstab-util.h"
24#include "log.h"
25#include "manager.h"
26#include "mkdir.h"
27#include "mount-setup.h"
4e036b7a 28#include "mount-util.h"
4f5dd394 29#include "mount.h"
6bedfcbb 30#include "parse-util.h"
4f5dd394 31#include "path-util.h"
7b3e062c 32#include "process-util.h"
4f5dd394 33#include "special.h"
8b43440b 34#include "string-table.h"
b5efdb8a 35#include "string-util.h"
4f5dd394
LP
36#include "strv.h"
37#include "unit-name.h"
38#include "unit.h"
5cb5a6ff 39
7d54a03a
LP
40#define RETRY_UMOUNT_MAX 32
41
4e920142
ZJS
42DEFINE_TRIVIAL_CLEANUP_FUNC(struct libmnt_table*, mnt_free_table);
43DEFINE_TRIVIAL_CLEANUP_FUNC(struct libmnt_iter*, mnt_free_iter);
44
f50e0a01
LP
45static const UnitActiveState state_translation_table[_MOUNT_STATE_MAX] = {
46 [MOUNT_DEAD] = UNIT_INACTIVE,
47 [MOUNT_MOUNTING] = UNIT_ACTIVATING,
b6ba0c16 48 [MOUNT_MOUNTING_DONE] = UNIT_ACTIVATING,
f50e0a01 49 [MOUNT_MOUNTED] = UNIT_ACTIVE,
032ff4af 50 [MOUNT_REMOUNTING] = UNIT_RELOADING,
f50e0a01 51 [MOUNT_UNMOUNTING] = UNIT_DEACTIVATING,
032ff4af
LP
52 [MOUNT_REMOUNTING_SIGTERM] = UNIT_RELOADING,
53 [MOUNT_REMOUNTING_SIGKILL] = UNIT_RELOADING,
e537352b
LP
54 [MOUNT_UNMOUNTING_SIGTERM] = UNIT_DEACTIVATING,
55 [MOUNT_UNMOUNTING_SIGKILL] = UNIT_DEACTIVATING,
fdf20a31 56 [MOUNT_FAILED] = UNIT_FAILED
f50e0a01 57};
5cb5a6ff 58
718db961
LP
59static int mount_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata);
60static int mount_dispatch_io(sd_event_source *source, int fd, uint32_t revents, void *userdata);
61
c634f3d2
LP
62static bool MOUNT_STATE_WITH_PROCESS(MountState state) {
63 return IN_SET(state,
64 MOUNT_MOUNTING,
65 MOUNT_MOUNTING_DONE,
66 MOUNT_REMOUNTING,
67 MOUNT_REMOUNTING_SIGTERM,
68 MOUNT_REMOUNTING_SIGKILL,
69 MOUNT_UNMOUNTING,
70 MOUNT_UNMOUNTING_SIGTERM,
71 MOUNT_UNMOUNTING_SIGKILL);
72}
73
affc3d83 74static bool mount_needs_network(const char *options, const char *fstype) {
d15d0333 75 if (fstab_test_option(options, "_netdev\0"))
fc676b00
ZJS
76 return true;
77
affc3d83 78 if (fstype && fstype_is_network(fstype))
fc676b00
ZJS
79 return true;
80
81 return false;
82}
83
e6a7b9f4 84static bool mount_is_network(const MountParameters *p) {
affc3d83
CL
85 assert(p);
86
87 return mount_needs_network(p->options, p->fstype);
88}
89
d3bd0986
MK
90static bool mount_is_loop(const MountParameters *p) {
91 assert(p);
92
93 if (fstab_test_option(p->options, "loop\0"))
94 return true;
95
96 return false;
97}
98
e6a7b9f4 99static bool mount_is_bind(const MountParameters *p) {
fc676b00
ZJS
100 assert(p);
101
d15d0333 102 if (fstab_test_option(p->options, "bind\0" "rbind\0"))
fc676b00
ZJS
103 return true;
104
d15d0333 105 if (p->fstype && STR_IN_SET(p->fstype, "bind", "rbind"))
fc676b00
ZJS
106 return true;
107
108 return false;
109}
110
e6a7b9f4 111static bool mount_is_auto(const MountParameters *p) {
fc676b00
ZJS
112 assert(p);
113
d15d0333 114 return !fstab_test_option(p->options, "noauto\0");
fc676b00
ZJS
115}
116
2b14df4a
FB
117static bool mount_is_automount(const MountParameters *p) {
118 assert(p);
119
120 return fstab_test_option(p->options,
121 "comment=systemd.automount\0"
122 "x-systemd.automount\0");
123}
124
ebc8968b
FB
125static bool mount_is_bound_to_device(const Mount *m) {
126 const MountParameters *p;
127
128 if (m->from_fragment)
129 return true;
130
131 p = &m->parameters_proc_self_mountinfo;
132 return fstab_test_option(p->options, "x-systemd.device-bound\0");
133}
134
e6a7b9f4 135static bool needs_quota(const MountParameters *p) {
fc676b00
ZJS
136 assert(p);
137
11041c84 138 /* Quotas are not enabled on network filesystems,
340a1d23 139 * but we want them, for example, on storage connected via iscsi */
11041c84 140 if (p->fstype && fstype_is_network(p->fstype))
fc676b00
ZJS
141 return false;
142
143 if (mount_is_bind(p))
144 return false;
145
d15d0333
ZJS
146 return fstab_test_option(p->options,
147 "usrquota\0" "grpquota\0" "quota\0" "usrjquota\0" "grpjquota\0");
fc676b00
ZJS
148}
149
a16e1123
LP
150static void mount_init(Unit *u) {
151 Mount *m = MOUNT(u);
5cb5a6ff 152
a16e1123 153 assert(u);
ac155bb8 154 assert(u->load_state == UNIT_STUB);
a16e1123 155
1f19a534 156 m->timeout_usec = u->manager->default_timeout_start_usec;
5804e1b6
AJ
157
158 m->exec_context.std_output = u->manager->default_std_output;
159 m->exec_context.std_error = u->manager->default_std_error;
160
3e5235b0
LP
161 m->directory_mode = 0755;
162
f00929ad
DJL
163 /* We need to make sure that /usr/bin/mount is always called
164 * in the same process group as us, so that the autofs kernel
a16e1123
LP
165 * side doesn't send us another mount request while we are
166 * already trying to comply its last one. */
74922904 167 m->exec_context.same_pgrp = true;
8d567588 168
a16e1123 169 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
c8f4d764 170
5bcb0f2b 171 u->ignore_on_isolate = true;
8d567588
LP
172}
173
36c16a7c 174static int mount_arm_timer(Mount *m, usec_t usec) {
718db961
LP
175 int r;
176
177 assert(m);
178
718db961 179 if (m->timer_event_source) {
36c16a7c 180 r = sd_event_source_set_time(m->timer_event_source, usec);
718db961
LP
181 if (r < 0)
182 return r;
183
184 return sd_event_source_set_enabled(m->timer_event_source, SD_EVENT_ONESHOT);
185 }
186
36c16a7c
LP
187 if (usec == USEC_INFINITY)
188 return 0;
189
7dfbe2e3 190 r = sd_event_add_time(
6a0f1f6d
LP
191 UNIT(m)->manager->event,
192 &m->timer_event_source,
193 CLOCK_MONOTONIC,
36c16a7c 194 usec, 0,
6a0f1f6d 195 mount_dispatch_timer, m);
7dfbe2e3
TG
196 if (r < 0)
197 return r;
198
199 (void) sd_event_source_set_description(m->timer_event_source, "mount-timer");
200
201 return 0;
718db961
LP
202}
203
a16e1123 204static void mount_unwatch_control_pid(Mount *m) {
5e94833f
LP
205 assert(m);
206
207 if (m->control_pid <= 0)
208 return;
209
210 unit_unwatch_pid(UNIT(m), m->control_pid);
211 m->control_pid = 0;
212}
213
e537352b
LP
214static void mount_parameters_done(MountParameters *p) {
215 assert(p);
216
217 free(p->what);
218 free(p->options);
219 free(p->fstype);
220
221 p->what = p->options = p->fstype = NULL;
222}
223
87f0e418 224static void mount_done(Unit *u) {
ef734fd6 225 Mount *m = MOUNT(u);
034c6ed7 226
ef734fd6 227 assert(m);
034c6ed7 228
a1e58e8e 229 m->where = mfree(m->where);
f50e0a01 230
e537352b
LP
231 mount_parameters_done(&m->parameters_proc_self_mountinfo);
232 mount_parameters_done(&m->parameters_fragment);
ef734fd6 233
e8a565cb 234 m->exec_runtime = exec_runtime_unref(m->exec_runtime, false);
e537352b
LP
235 exec_command_done_array(m->exec_command, _MOUNT_EXEC_COMMAND_MAX);
236 m->control_command = NULL;
f50e0a01 237
29206d46
LP
238 dynamic_creds_unref(&m->dynamic_creds);
239
a16e1123 240 mount_unwatch_control_pid(m);
f50e0a01 241
718db961 242 m->timer_event_source = sd_event_source_unref(m->timer_event_source);
f50e0a01
LP
243}
244
44a6b1b6 245_pure_ static MountParameters* get_mount_parameters_fragment(Mount *m) {
cb39ed3f
LP
246 assert(m);
247
248 if (m->from_fragment)
249 return &m->parameters_fragment;
cb39ed3f
LP
250
251 return NULL;
252}
253
44a6b1b6 254_pure_ static MountParameters* get_mount_parameters(Mount *m) {
cb39ed3f
LP
255 assert(m);
256
257 if (m->from_proc_self_mountinfo)
258 return &m->parameters_proc_self_mountinfo;
259
6b1dc2bd 260 return get_mount_parameters_fragment(m);
cb39ed3f
LP
261}
262
eef85c4a 263static int mount_add_mount_dependencies(Mount *m) {
5c78d8e2 264 MountParameters *pm;
ac155bb8 265 Unit *other;
a57f7e2c
LP
266 Iterator i;
267 Set *s;
b08d03ff
LP
268 int r;
269
6e2ef85b 270 assert(m);
b08d03ff 271
a57f7e2c 272 if (!path_equal(m->where, "/")) {
eef85c4a
LP
273 _cleanup_free_ char *parent = NULL;
274
275 /* Adds in links to other mount points that might lie further up in the hierarchy */
5f311f8c
LP
276
277 parent = dirname_malloc(m->where);
278 if (!parent)
279 return -ENOMEM;
01f78473 280
eef85c4a 281 r = unit_require_mounts_for(UNIT(m), parent, UNIT_DEPENDENCY_IMPLICIT);
4f0eedb7 282 if (r < 0)
01f78473 283 return r;
4f0eedb7 284 }
01f78473 285
eef85c4a
LP
286 /* Adds in dependencies to other mount points that might be needed for the source path (if this is a bind mount
287 * or a loop mount) to be available. */
a57f7e2c 288 pm = get_mount_parameters_fragment(m);
fc676b00
ZJS
289 if (pm && pm->what &&
290 path_is_absolute(pm->what) &&
d3bd0986 291 (mount_is_bind(pm) || mount_is_loop(pm) || !mount_is_network(pm))) {
fc676b00 292
eef85c4a 293 r = unit_require_mounts_for(UNIT(m), pm->what, UNIT_DEPENDENCY_FILE);
4f0eedb7 294 if (r < 0)
6e2ef85b 295 return r;
4f0eedb7 296 }
b08d03ff 297
eef85c4a 298 /* Adds in dependencies to other units that use this path or paths further down in the hierarchy */
a57f7e2c
LP
299 s = manager_get_units_requiring_mounts_for(UNIT(m)->manager, m->where);
300 SET_FOREACH(other, s, i) {
b08d03ff 301
a57f7e2c
LP
302 if (other->load_state != UNIT_LOADED)
303 continue;
b08d03ff 304
a57f7e2c
LP
305 if (other == UNIT(m))
306 continue;
b08d03ff 307
eef85c4a 308 r = unit_add_dependency(other, UNIT_AFTER, UNIT(m), true, UNIT_DEPENDENCY_PATH);
4f0eedb7 309 if (r < 0)
6e2ef85b 310 return r;
b08d03ff 311
a57f7e2c
LP
312 if (UNIT(m)->fragment_path) {
313 /* If we have fragment configuration, then make this dependency required */
eef85c4a 314 r = unit_add_dependency(other, UNIT_REQUIRES, UNIT(m), true, UNIT_DEPENDENCY_PATH);
a57f7e2c
LP
315 if (r < 0)
316 return r;
317 }
7c8fa05c
LP
318 }
319
320 return 0;
321}
322
eef85c4a 323static int mount_add_device_dependencies(Mount *m) {
5073f89f 324 bool device_wants_mount = false;
eef85c4a
LP
325 UnitDependencyMask mask;
326 MountParameters *p;
ebc8968b 327 UnitDependency dep;
9fff8a1f 328 int r;
173a8d04
LP
329
330 assert(m);
331
06e97888 332 p = get_mount_parameters(m);
6b1dc2bd 333 if (!p)
173a8d04
LP
334 return 0;
335
9fff8a1f 336 if (!p->what)
173a8d04 337 return 0;
5c78d8e2 338
dd144c63
LP
339 if (mount_is_bind(p))
340 return 0;
341
342 if (!is_device_path(p->what))
343 return 0;
344
7ba2711d
LP
345 /* /dev/root is a really weird thing, it's not a real device,
346 * but just a path the kernel exports for the root file system
347 * specified on the kernel command line. Ignore it here. */
348 if (path_equal(p->what, "/dev/root"))
349 return 0;
350
dd144c63
LP
351 if (path_equal(m->where, "/"))
352 return 0;
353
463d0d15 354 if (mount_is_auto(p) && !mount_is_automount(p) && MANAGER_IS_SYSTEM(UNIT(m)->manager))
5073f89f
TG
355 device_wants_mount = true;
356
ebc8968b
FB
357 /* Mount units from /proc/self/mountinfo are not bound to devices
358 * by default since they're subject to races when devices are
359 * unplugged. But the user can still force this dep with an
360 * appropriate option (or udev property) so the mount units are
361 * automatically stopped when the device disappears suddenly. */
362 dep = mount_is_bound_to_device(m) ? UNIT_BINDS_TO : UNIT_REQUIRES;
363
eef85c4a
LP
364 mask = m->from_fragment ? UNIT_DEPENDENCY_FILE : UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT;
365
366 r = unit_add_node_dependency(UNIT(m), p->what, device_wants_mount, dep, mask);
dd144c63
LP
367 if (r < 0)
368 return r;
9fff8a1f 369
9fff8a1f 370 return 0;
173a8d04
LP
371}
372
eef85c4a
LP
373static int mount_add_quota_dependencies(Mount *m) {
374 UnitDependencyMask mask;
6b1dc2bd 375 MountParameters *p;
eef85c4a 376 int r;
6b1dc2bd
LP
377
378 assert(m);
379
463d0d15 380 if (!MANAGER_IS_SYSTEM(UNIT(m)->manager))
6b1dc2bd
LP
381 return 0;
382
383 p = get_mount_parameters_fragment(m);
384 if (!p)
385 return 0;
386
387 if (!needs_quota(p))
388 return 0;
389
eef85c4a
LP
390 mask = m->from_fragment ? UNIT_DEPENDENCY_FILE : UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT;
391
392 r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_WANTS, SPECIAL_QUOTACHECK_SERVICE, NULL, true, mask);
6b1dc2bd
LP
393 if (r < 0)
394 return r;
395
eef85c4a 396 r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_WANTS, SPECIAL_QUOTAON_SERVICE, NULL, true, mask);
6b1dc2bd
LP
397 if (r < 0)
398 return r;
399
400 return 0;
401}
402
ad2706db 403static bool mount_is_extrinsic(Mount *m) {
88ac30a1 404 MountParameters *p;
ad2706db 405 assert(m);
88ac30a1 406
ad2706db
LP
407 /* Returns true for all units that are "magic" and should be excluded from the usual start-up and shutdown
408 * dependencies. We call them "extrinsic" here, as they are generally mounted outside of the systemd dependency
409 * logic. We shouldn't attempt to manage them ourselves but it's fine if the user operates on them with us. */
410
411 if (!MANAGER_IS_SYSTEM(UNIT(m)->manager)) /* We only automatically manage mounts if we are in system mode */
412 return true;
413
414 if (PATH_IN_SET(m->where, /* Don't bother with the OS data itself */
415 "/",
416 "/usr"))
417 return true;
88ac30a1 418
ad2706db
LP
419 if (PATH_STARTSWITH_SET(m->where,
420 "/run/initramfs", /* This should stay around from before we boot until after we shutdown */
421 "/proc", /* All of this is API VFS */
422 "/sys", /* … dito … */
423 "/dev")) /* … dito … */
424 return true;
425
426 /* If this is an initrd mount, and we are not in the initrd, then leave this around forever, too. */
88ac30a1 427 p = get_mount_parameters(m);
ad2706db
LP
428 if (p && fstab_test_option(p->options, "x-initrd.mount\0") && !in_initrd())
429 return true;
88ac30a1 430
ad2706db 431 return false;
88ac30a1
TG
432}
433
2edd4434 434static int mount_add_default_dependencies(Mount *m) {
eef85c4a
LP
435 UnitDependencyMask mask;
436 int r;
9ddc4a26 437 MountParameters *p;
ea0ec5ce 438 const char *after;
2edd4434
LP
439
440 assert(m);
441
4c9ea260
LP
442 if (!UNIT(m)->default_dependencies)
443 return 0;
444
ad2706db
LP
445 /* We do not add any default dependencies to /, /usr or /run/initramfs/, since they are guaranteed to stay
446 * mounted the whole time, since our system is on it. Also, don't bother with anything mounted below virtual
447 * file systems, it's also going to be virtual, and hence not worth the effort. */
448 if (mount_is_extrinsic(m))
6b1dc2bd 449 return 0;
2edd4434 450
874d3404
LP
451 p = get_mount_parameters(m);
452 if (!p)
6b1dc2bd
LP
453 return 0;
454
eef85c4a
LP
455 mask = m->from_fragment ? UNIT_DEPENDENCY_FILE : UNIT_DEPENDENCY_MOUNTINFO_DEFAULT;
456
e8d2f6cd 457 if (mount_is_network(p)) {
ea0ec5ce
LP
458 /* We order ourselves after network.target. This is
459 * primarily useful at shutdown: services that take
460 * down the network should order themselves before
461 * network.target, so that they are shut down only
462 * after this mount unit is stopped. */
6b1dc2bd 463
eef85c4a 464 r = unit_add_dependency_by_name(UNIT(m), UNIT_AFTER, SPECIAL_NETWORK_TARGET, NULL, true, mask);
a63a5c46
LP
465 if (r < 0)
466 return r;
a63a5c46 467
ea0ec5ce
LP
468 /* We pull in network-online.target, and order
469 * ourselves after it. This is useful at start-up to
470 * actively pull in tools that want to be started
471 * before we start mounting network file systems, and
472 * whose purpose it is to delay this until the network
473 * is "up". */
474
eef85c4a 475 r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_WANTS, UNIT_AFTER, SPECIAL_NETWORK_ONLINE_TARGET, NULL, true, mask);
e8d2f6cd
LP
476 if (r < 0)
477 return r;
ea0ec5ce
LP
478
479 after = SPECIAL_REMOTE_FS_PRE_TARGET;
480 } else
481 after = SPECIAL_LOCAL_FS_PRE_TARGET;
482
eef85c4a 483 r = unit_add_dependency_by_name(UNIT(m), UNIT_AFTER, after, NULL, true, mask);
ea0ec5ce
LP
484 if (r < 0)
485 return r;
e8d2f6cd 486
eef85c4a 487 r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true, mask);
ad2706db
LP
488 if (r < 0)
489 return r;
2edd4434 490
3e3852b3 491 /* If this is a tmpfs mount then we have to unmount it before we try to deactivate swaps */
74b1731c 492 if (streq_ptr(p->fstype, "tmpfs")) {
3e3852b3
LP
493 r = unit_add_dependency_by_name(UNIT(m), UNIT_AFTER, SPECIAL_SWAP_TARGET, NULL, true, mask);
494 if (r < 0)
495 return r;
496 }
497
2edd4434
LP
498 return 0;
499}
500
8d567588 501static int mount_verify(Mount *m) {
a57f7e2c 502 _cleanup_free_ char *e = NULL;
b294b79f 503 MountParameters *p;
7410616c 504 int r;
a57f7e2c 505
8d567588
LP
506 assert(m);
507
1124fe6f 508 if (UNIT(m)->load_state != UNIT_LOADED)
8d567588
LP
509 return 0;
510
1df96fcb 511 if (!m->from_fragment && !m->from_proc_self_mountinfo && !UNIT(m)->perpetual)
8cbef760
LP
512 return -ENOENT;
513
7410616c
LP
514 r = unit_name_from_path(m->where, ".mount", &e);
515 if (r < 0)
f2341e0a 516 return log_unit_error_errno(UNIT(m), r, "Failed to generate unit name from mount path: %m");
8d567588 517
7410616c 518 if (!unit_has_name(UNIT(m), e)) {
f2341e0a 519 log_unit_error(UNIT(m), "Where= setting doesn't match unit name. Refusing.");
8d567588
LP
520 return -EINVAL;
521 }
522
33ff02c9 523 if (mount_point_is_api(m->where) || mount_point_ignore(m->where)) {
f2341e0a 524 log_unit_error(UNIT(m), "Cannot create mount unit for API file system %s. Refusing.", m->where);
33ff02c9
LP
525 return -EINVAL;
526 }
527
b294b79f
MO
528 p = get_mount_parameters_fragment(m);
529 if (p && !p->what) {
f2341e0a 530 log_unit_error(UNIT(m), "What= setting is missing. Refusing.");
4e85aff4
LP
531 return -EBADMSG;
532 }
533
4819ff03 534 if (m->exec_context.pam_name && m->kill_context.kill_mode != KILL_CONTROL_GROUP) {
f2341e0a 535 log_unit_error(UNIT(m), "Unit has PAM enabled. Kill mode must be set to control-group'. Refusing.");
4d0e5dbd
LP
536 return -EINVAL;
537 }
538
8d567588
LP
539 return 0;
540}
541
1a4ac875
MS
542static int mount_add_extras(Mount *m) {
543 Unit *u = UNIT(m);
e537352b
LP
544 int r;
545
e821075a
LP
546 assert(m);
547
548 if (u->fragment_path)
1a4ac875 549 m->from_fragment = true;
e537352b 550
1a4ac875 551 if (!m->where) {
7410616c
LP
552 r = unit_name_to_path(u->id, &m->where);
553 if (r < 0)
554 return r;
1a4ac875 555 }
a16e1123 556
1a4ac875 557 path_kill_slashes(m->where);
e537352b 558
e821075a 559 if (!u->description) {
1a4ac875
MS
560 r = unit_set_description(u, m->where);
561 if (r < 0)
173a8d04 562 return r;
1a4ac875 563 }
6e2ef85b 564
eef85c4a 565 r = mount_add_device_dependencies(m);
1a4ac875
MS
566 if (r < 0)
567 return r;
6e2ef85b 568
eef85c4a 569 r = mount_add_mount_dependencies(m);
1a4ac875
MS
570 if (r < 0)
571 return r;
6e2ef85b 572
eef85c4a 573 r = mount_add_quota_dependencies(m);
1a4ac875
MS
574 if (r < 0)
575 return r;
e537352b 576
598459ce
LP
577 r = unit_patch_contexts(u);
578 if (r < 0)
579 return r;
4e67ddd6 580
598459ce 581 r = unit_add_exec_dependencies(u, &m->exec_context);
a016b922
LP
582 if (r < 0)
583 return r;
584
d79200e2 585 r = unit_set_default_slice(u);
1a4ac875
MS
586 if (r < 0)
587 return r;
588
4c9ea260
LP
589 r = mount_add_default_dependencies(m);
590 if (r < 0)
591 return r;
598459ce 592
1a4ac875
MS
593 return 0;
594}
595
11222d0f
LP
596static int mount_load_root_mount(Unit *u) {
597 assert(u);
598
599 if (!unit_has_name(u, SPECIAL_ROOT_MOUNT))
600 return 0;
601
602 u->perpetual = true;
603 u->default_dependencies = false;
604
605 /* The stdio/kmsg bridge socket is on /, in order to avoid a dep loop, don't use kmsg logging for -.mount */
606 MOUNT(u)->exec_context.std_output = EXEC_OUTPUT_NULL;
607 MOUNT(u)->exec_context.std_input = EXEC_INPUT_NULL;
608
609 if (!u->description)
610 u->description = strdup("Root Mount");
611
612 return 1;
613}
614
1a4ac875
MS
615static int mount_load(Unit *u) {
616 Mount *m = MOUNT(u);
617 int r;
618
619 assert(u);
620 assert(u->load_state == UNIT_STUB);
621
11222d0f
LP
622 r = mount_load_root_mount(u);
623 if (r < 0)
624 return r;
625
626 if (m->from_proc_self_mountinfo || u->perpetual)
8eba616f
MS
627 r = unit_load_fragment_and_dropin_optional(u);
628 else
629 r = unit_load_fragment_and_dropin(u);
1a4ac875
MS
630 if (r < 0)
631 return r;
155da457 632
1a4ac875
MS
633 /* This is a new unit? Then let's add in some extras */
634 if (u->load_state == UNIT_LOADED) {
635 r = mount_add_extras(m);
636 if (r < 0)
637 return r;
e537352b
LP
638 }
639
8d567588 640 return mount_verify(m);
e537352b
LP
641}
642
643static void mount_set_state(Mount *m, MountState state) {
644 MountState old_state;
645 assert(m);
646
647 old_state = m->state;
648 m->state = state;
649
c634f3d2 650 if (!MOUNT_STATE_WITH_PROCESS(state)) {
718db961 651 m->timer_event_source = sd_event_source_unref(m->timer_event_source);
a16e1123 652 mount_unwatch_control_pid(m);
e537352b 653 m->control_command = NULL;
a16e1123 654 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
e537352b
LP
655 }
656
657 if (state != old_state)
f2341e0a 658 log_unit_debug(UNIT(m), "Changed %s -> %s", mount_state_to_string(old_state), mount_state_to_string(state));
e537352b 659
9d2f5178 660 unit_notify(UNIT(m), state_translation_table[old_state], state_translation_table[state], m->reload_result == MOUNT_SUCCESS);
e537352b
LP
661}
662
be847e82 663static int mount_coldplug(Unit *u) {
e537352b 664 Mount *m = MOUNT(u);
a16e1123
LP
665 MountState new_state = MOUNT_DEAD;
666 int r;
e537352b
LP
667
668 assert(m);
669 assert(m->state == MOUNT_DEAD);
670
a16e1123
LP
671 if (m->deserialized_state != m->state)
672 new_state = m->deserialized_state;
673 else if (m->from_proc_self_mountinfo)
674 new_state = MOUNT_MOUNTED;
e537352b 675
5bcb0f2b
LP
676 if (new_state == m->state)
677 return 0;
e537352b 678
c386f588
LP
679 if (m->control_pid > 0 &&
680 pid_is_unwaited(m->control_pid) &&
c634f3d2 681 MOUNT_STATE_WITH_PROCESS(new_state)) {
5bcb0f2b
LP
682
683 r = unit_watch_pid(UNIT(m), m->control_pid);
684 if (r < 0)
685 return r;
e537352b 686
36c16a7c 687 r = mount_arm_timer(m, usec_add(u->state_change_timestamp.monotonic, m->timeout_usec));
5bcb0f2b
LP
688 if (r < 0)
689 return r;
a16e1123 690 }
e537352b 691
e8a565cb 692 if (!IN_SET(new_state, MOUNT_DEAD, MOUNT_FAILED)) {
29206d46 693 (void) unit_setup_dynamic_creds(u);
e8a565cb
YW
694 (void) unit_setup_exec_runtime(u);
695 }
29206d46 696
5bcb0f2b 697 mount_set_state(m, new_state);
e537352b 698 return 0;
e537352b
LP
699}
700
701static void mount_dump(Unit *u, FILE *f, const char *prefix) {
f2e18ef1 702 char buf[FORMAT_TIMESPAN_MAX];
e537352b
LP
703 Mount *m = MOUNT(u);
704 MountParameters *p;
705
706 assert(m);
707 assert(f);
708
cb39ed3f 709 p = get_mount_parameters(m);
e537352b
LP
710
711 fprintf(f,
712 "%sMount State: %s\n"
81a5c6d0 713 "%sResult: %s\n"
e537352b
LP
714 "%sWhere: %s\n"
715 "%sWhat: %s\n"
716 "%sFile System Type: %s\n"
717 "%sOptions: %s\n"
e537352b
LP
718 "%sFrom /proc/self/mountinfo: %s\n"
719 "%sFrom fragment: %s\n"
ad2706db 720 "%sExtrinsic: %s\n"
e520950a 721 "%sDirectoryMode: %04o\n"
49915de2 722 "%sSloppyOptions: %s\n"
4f8d40a9 723 "%sLazyUnmount: %s\n"
91899792
YW
724 "%sForceUnmount: %s\n"
725 "%sTimoutSec: %s\n",
a16e1123 726 prefix, mount_state_to_string(m->state),
81a5c6d0 727 prefix, mount_result_to_string(m->result),
e537352b 728 prefix, m->where,
1e4fc9b1
HH
729 prefix, p ? strna(p->what) : "n/a",
730 prefix, p ? strna(p->fstype) : "n/a",
731 prefix, p ? strna(p->options) : "n/a",
e537352b
LP
732 prefix, yes_no(m->from_proc_self_mountinfo),
733 prefix, yes_no(m->from_fragment),
ad2706db 734 prefix, yes_no(mount_is_extrinsic(m)),
e520950a 735 prefix, m->directory_mode,
49915de2 736 prefix, yes_no(m->sloppy_options),
4f8d40a9 737 prefix, yes_no(m->lazy_unmount),
91899792
YW
738 prefix, yes_no(m->force_unmount),
739 prefix, format_timespan(buf, sizeof(buf), m->timeout_usec, USEC_PER_SEC));
e537352b
LP
740
741 if (m->control_pid > 0)
742 fprintf(f,
ccd06097
ZJS
743 "%sControl PID: "PID_FMT"\n",
744 prefix, m->control_pid);
e537352b
LP
745
746 exec_context_dump(&m->exec_context, f, prefix);
4819ff03 747 kill_context_dump(&m->kill_context, f, prefix);
18f573aa 748 cgroup_context_dump(&m->cgroup_context, f, prefix);
e537352b
LP
749}
750
a16e1123 751static int mount_spawn(Mount *m, ExecCommand *c, pid_t *_pid) {
3c7416b6 752
9fa95f85 753 ExecParameters exec_params = {
1703fa41 754 .flags = EXEC_APPLY_SANDBOXING|EXEC_APPLY_CHROOT|EXEC_APPLY_TTY_STDIN,
c39f1ce2
LP
755 .stdin_fd = -1,
756 .stdout_fd = -1,
757 .stderr_fd = -1,
9fa95f85 758 };
3c7416b6
LP
759 pid_t pid;
760 int r;
a16e1123
LP
761
762 assert(m);
763 assert(c);
764 assert(_pid);
765
3c7416b6 766 r = unit_prepare_exec(UNIT(m));
29206d46
LP
767 if (r < 0)
768 return r;
769
36c16a7c 770 r = mount_arm_timer(m, usec_add(now(CLOCK_MONOTONIC), m->timeout_usec));
36697dc0 771 if (r < 0)
36c16a7c 772 return r;
a16e1123 773
f0d47797 774 unit_set_exec_params(UNIT(m), &exec_params);
9fa95f85 775
f2341e0a
LP
776 r = exec_spawn(UNIT(m),
777 c,
4ad49000 778 &m->exec_context,
9fa95f85 779 &exec_params,
613b411c 780 m->exec_runtime,
29206d46 781 &m->dynamic_creds,
4ad49000
LP
782 &pid);
783 if (r < 0)
36c16a7c 784 return r;
a16e1123 785
4ad49000
LP
786 r = unit_watch_pid(UNIT(m), pid);
787 if (r < 0)
a16e1123 788 /* FIXME: we need to do something here */
36c16a7c 789 return r;
a16e1123
LP
790
791 *_pid = pid;
792
793 return 0;
a16e1123
LP
794}
795
9d2f5178 796static void mount_enter_dead(Mount *m, MountResult f) {
e537352b
LP
797 assert(m);
798
a0fef983 799 if (m->result == MOUNT_SUCCESS)
9d2f5178 800 m->result = f;
e537352b 801
ed77d407
LP
802 if (m->result != MOUNT_SUCCESS)
803 log_unit_warning(UNIT(m), "Failed with result '%s'.", mount_result_to_string(m->result));
804
29206d46
LP
805 mount_set_state(m, m->result != MOUNT_SUCCESS ? MOUNT_FAILED : MOUNT_DEAD);
806
e8a565cb 807 m->exec_runtime = exec_runtime_unref(m->exec_runtime, true);
613b411c 808
3536f49e 809 exec_context_destroy_runtime_directory(&m->exec_context, UNIT(m)->manager->prefix[EXEC_DIRECTORY_RUNTIME]);
e66cf1a3 810
00d9ef85
LP
811 unit_unref_uid_gid(UNIT(m), true);
812
29206d46 813 dynamic_creds_destroy(&m->dynamic_creds);
e537352b
LP
814}
815
9d2f5178 816static void mount_enter_mounted(Mount *m, MountResult f) {
80876c20
LP
817 assert(m);
818
a0fef983 819 if (m->result == MOUNT_SUCCESS)
9d2f5178 820 m->result = f;
80876c20
LP
821
822 mount_set_state(m, MOUNT_MOUNTED);
823}
824
22af0e58
LP
825static void mount_enter_dead_or_mounted(Mount *m, MountResult f) {
826 assert(m);
827
828 /* Enter DEAD or MOUNTED state, depending on what the kernel currently says about the mount point. We use this
829 * whenever we executed an operation, so that our internal state reflects what the kernel says again, after all
830 * ultimately we just mirror the kernel's internal state on this. */
831
832 if (m->from_proc_self_mountinfo)
833 mount_enter_mounted(m, f);
834 else
835 mount_enter_dead(m, f);
836}
837
838static int state_to_kill_operation(MountState state) {
839 switch (state) {
840
841 case MOUNT_REMOUNTING_SIGTERM:
842 case MOUNT_UNMOUNTING_SIGTERM:
843 return KILL_TERMINATE;
844
845 case MOUNT_REMOUNTING_SIGKILL:
846 case MOUNT_UNMOUNTING_SIGKILL:
847 return KILL_KILL;
848
849 default:
850 return _KILL_OPERATION_INVALID;
851 }
852}
853
9d2f5178 854static void mount_enter_signal(Mount *m, MountState state, MountResult f) {
e537352b
LP
855 int r;
856
857 assert(m);
858
a0fef983 859 if (m->result == MOUNT_SUCCESS)
9d2f5178 860 m->result = f;
e537352b 861
cd2086fe
LP
862 r = unit_kill_context(
863 UNIT(m),
864 &m->kill_context,
22af0e58 865 state_to_kill_operation(state),
cd2086fe
LP
866 -1,
867 m->control_pid,
868 false);
869 if (r < 0)
870 goto fail;
e537352b 871
cd2086fe 872 if (r > 0) {
36c16a7c 873 r = mount_arm_timer(m, usec_add(now(CLOCK_MONOTONIC), m->timeout_usec));
36697dc0 874 if (r < 0)
80876c20 875 goto fail;
e537352b 876
80876c20 877 mount_set_state(m, state);
22af0e58 878 } else if (state == MOUNT_REMOUNTING_SIGTERM && m->kill_context.send_sigkill)
ac84d1fb 879 mount_enter_signal(m, MOUNT_REMOUNTING_SIGKILL, MOUNT_SUCCESS);
22af0e58 880 else if (IN_SET(state, MOUNT_REMOUNTING_SIGTERM, MOUNT_REMOUNTING_SIGKILL))
9d2f5178 881 mount_enter_mounted(m, MOUNT_SUCCESS);
22af0e58 882 else if (state == MOUNT_UNMOUNTING_SIGTERM && m->kill_context.send_sigkill)
ac84d1fb 883 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGKILL, MOUNT_SUCCESS);
80876c20 884 else
22af0e58 885 mount_enter_dead_or_mounted(m, MOUNT_SUCCESS);
e537352b
LP
886
887 return;
888
889fail:
f2341e0a 890 log_unit_warning_errno(UNIT(m), r, "Failed to kill processes: %m");
22af0e58 891 mount_enter_dead_or_mounted(m, MOUNT_FAILURE_RESOURCES);
5261ba90
TT
892}
893
9d2f5178 894static void mount_enter_unmounting(Mount *m) {
e537352b
LP
895 int r;
896
897 assert(m);
898
7d54a03a
LP
899 /* Start counting our attempts */
900 if (!IN_SET(m->state,
901 MOUNT_UNMOUNTING,
902 MOUNT_UNMOUNTING_SIGTERM,
903 MOUNT_UNMOUNTING_SIGKILL))
904 m->n_retry_umount = 0;
905
a16e1123
LP
906 m->control_command_id = MOUNT_EXEC_UNMOUNT;
907 m->control_command = m->exec_command + MOUNT_EXEC_UNMOUNT;
e537352b 908
83897d54 909 r = exec_command_set(m->control_command, UMOUNT_PATH, m->where, "-c", NULL);
e520950a
BR
910 if (r >= 0 && m->lazy_unmount)
911 r = exec_command_append(m->control_command, "-l", NULL);
4f8d40a9
BR
912 if (r >= 0 && m->force_unmount)
913 r = exec_command_append(m->control_command, "-f", NULL);
7d54a03a 914 if (r < 0)
e537352b
LP
915 goto fail;
916
a16e1123 917 mount_unwatch_control_pid(m);
5e94833f 918
7d54a03a
LP
919 r = mount_spawn(m, m->control_command, &m->control_pid);
920 if (r < 0)
e537352b
LP
921 goto fail;
922
923 mount_set_state(m, MOUNT_UNMOUNTING);
924
925 return;
926
927fail:
f2341e0a 928 log_unit_warning_errno(UNIT(m), r, "Failed to run 'umount' task: %m");
22af0e58 929 mount_enter_dead_or_mounted(m, MOUNT_FAILURE_RESOURCES);
e537352b
LP
930}
931
8d567588 932static void mount_enter_mounting(Mount *m) {
e537352b 933 int r;
cb39ed3f 934 MountParameters *p;
e537352b
LP
935
936 assert(m);
937
25cd4964 938 r = unit_fail_if_noncanonical(UNIT(m), m->where);
f2341e0a
LP
939 if (r < 0)
940 goto fail;
941
942 (void) mkdir_p_label(m->where, m->directory_mode);
3e5235b0 943
f2341e0a 944 unit_warn_if_dir_nonempty(UNIT(m), m->where);
257f1d8e 945
a4634b21
LP
946 unit_warn_leftover_processes(UNIT(m));
947
948 m->control_command_id = MOUNT_EXEC_MOUNT;
949 m->control_command = m->exec_command + MOUNT_EXEC_MOUNT;
950
cb39ed3f 951 /* Create the source directory for bind-mounts if needed */
6b1dc2bd 952 p = get_mount_parameters_fragment(m);
cb39ed3f 953 if (p && mount_is_bind(p))
f2341e0a 954 (void) mkdir_p_label(p->what, m->directory_mode);
5261ba90 955
b294b79f 956 if (p) {
17a1c597
ZJS
957 _cleanup_free_ char *opts = NULL;
958
b294b79f 959 r = fstab_filter_options(p->options, "nofail\0" "noauto\0" "auto\0", NULL, NULL, &opts);
17a1c597
ZJS
960 if (r < 0)
961 goto fail;
962
b294b79f 963 r = exec_command_set(m->control_command, MOUNT_PATH, p->what, m->where, NULL);
e86b3761
ZJS
964 if (r >= 0 && m->sloppy_options)
965 r = exec_command_append(m->control_command, "-s", NULL);
b294b79f
MO
966 if (r >= 0 && p->fstype)
967 r = exec_command_append(m->control_command, "-t", p->fstype, NULL);
0c47569a 968 if (r >= 0 && !isempty(opts))
17a1c597 969 r = exec_command_append(m->control_command, "-o", opts, NULL);
e86b3761 970 } else
e537352b 971 r = -ENOENT;
e537352b
LP
972 if (r < 0)
973 goto fail;
974
a16e1123 975 mount_unwatch_control_pid(m);
5e94833f 976
257f1d8e
LP
977 r = mount_spawn(m, m->control_command, &m->control_pid);
978 if (r < 0)
e537352b
LP
979 goto fail;
980
981 mount_set_state(m, MOUNT_MOUNTING);
982
983 return;
984
985fail:
f2341e0a 986 log_unit_warning_errno(UNIT(m), r, "Failed to run 'mount' task: %m");
22af0e58 987 mount_enter_dead_or_mounted(m, MOUNT_FAILURE_RESOURCES);
e537352b
LP
988}
989
850b7410
LP
990static void mount_set_reload_result(Mount *m, MountResult result) {
991 assert(m);
992
993 /* Only store the first error we encounter */
994 if (m->reload_result != MOUNT_SUCCESS)
995 return;
996
997 m->reload_result = result;
998}
999
9d2f5178 1000static void mount_enter_remounting(Mount *m) {
e537352b 1001 int r;
b294b79f 1002 MountParameters *p;
e537352b
LP
1003
1004 assert(m);
1005
850b7410
LP
1006 /* Reset reload result when we are about to start a new remount operation */
1007 m->reload_result = MOUNT_SUCCESS;
1008
a16e1123
LP
1009 m->control_command_id = MOUNT_EXEC_REMOUNT;
1010 m->control_command = m->exec_command + MOUNT_EXEC_REMOUNT;
e537352b 1011
b294b79f
MO
1012 p = get_mount_parameters_fragment(m);
1013 if (p) {
e537352b
LP
1014 const char *o;
1015
b294b79f
MO
1016 if (p->options)
1017 o = strjoina("remount,", p->options);
718db961 1018 else
e537352b
LP
1019 o = "remount";
1020
f00929ad 1021 r = exec_command_set(m->control_command, MOUNT_PATH,
b294b79f 1022 p->what, m->where,
e86b3761 1023 "-o", o, NULL);
e86b3761
ZJS
1024 if (r >= 0 && m->sloppy_options)
1025 r = exec_command_append(m->control_command, "-s", NULL);
b294b79f
MO
1026 if (r >= 0 && p->fstype)
1027 r = exec_command_append(m->control_command, "-t", p->fstype, NULL);
6b1dc2bd 1028 } else
e537352b 1029 r = -ENOENT;
60b912f6 1030 if (r < 0)
e537352b 1031 goto fail;
e537352b 1032
a16e1123 1033 mount_unwatch_control_pid(m);
5e94833f 1034
718db961
LP
1035 r = mount_spawn(m, m->control_command, &m->control_pid);
1036 if (r < 0)
e537352b
LP
1037 goto fail;
1038
1039 mount_set_state(m, MOUNT_REMOUNTING);
1040
1041 return;
1042
1043fail:
f2341e0a 1044 log_unit_warning_errno(UNIT(m), r, "Failed to run 'remount' task: %m");
850b7410 1045 mount_set_reload_result(m, MOUNT_FAILURE_RESOURCES);
22af0e58 1046 mount_enter_dead_or_mounted(m, MOUNT_SUCCESS);
e537352b
LP
1047}
1048
1049static int mount_start(Unit *u) {
1050 Mount *m = MOUNT(u);
07299350 1051 int r;
e537352b
LP
1052
1053 assert(m);
1054
1055 /* We cannot fulfill this request right now, try again later
1056 * please! */
f2aed307
LP
1057 if (IN_SET(m->state,
1058 MOUNT_UNMOUNTING,
1059 MOUNT_UNMOUNTING_SIGTERM,
22af0e58 1060 MOUNT_UNMOUNTING_SIGKILL))
e537352b
LP
1061 return -EAGAIN;
1062
1063 /* Already on it! */
60b912f6 1064 if (m->state == MOUNT_MOUNTING)
e537352b
LP
1065 return 0;
1066
f2aed307 1067 assert(IN_SET(m->state, MOUNT_DEAD, MOUNT_FAILED));
e537352b 1068
07299350
LP
1069 r = unit_start_limit_test(u);
1070 if (r < 0) {
1071 mount_enter_dead(m, MOUNT_FAILURE_START_LIMIT_HIT);
1072 return r;
1073 }
1074
4b58153d
LP
1075 r = unit_acquire_invocation_id(u);
1076 if (r < 0)
1077 return r;
1078
9d2f5178
LP
1079 m->result = MOUNT_SUCCESS;
1080 m->reload_result = MOUNT_SUCCESS;
3c7416b6
LP
1081
1082 u->reset_accounting = true;
9d2f5178 1083
8d567588 1084 mount_enter_mounting(m);
82a2b6bb 1085 return 1;
e537352b
LP
1086}
1087
1088static int mount_stop(Unit *u) {
1089 Mount *m = MOUNT(u);
1090
1091 assert(m);
1092
22af0e58
LP
1093 switch (m->state) {
1094
1095 case MOUNT_UNMOUNTING:
1096 case MOUNT_UNMOUNTING_SIGKILL:
1097 case MOUNT_UNMOUNTING_SIGTERM:
1098 /* Already on it */
e537352b
LP
1099 return 0;
1100
22af0e58
LP
1101 case MOUNT_MOUNTING:
1102 case MOUNT_MOUNTING_DONE:
1103 case MOUNT_REMOUNTING:
1104 /* If we are still waiting for /bin/mount, we go directly into kill mode. */
1105 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGTERM, MOUNT_SUCCESS);
1106 return 0;
e537352b 1107
22af0e58
LP
1108 case MOUNT_REMOUNTING_SIGTERM:
1109 /* If we are already waiting for a hung remount, convert this to the matching unmounting state */
1110 mount_set_state(m, MOUNT_UNMOUNTING_SIGTERM);
1111 return 0;
1112
1113 case MOUNT_REMOUNTING_SIGKILL:
1114 /* as above */
1115 mount_set_state(m, MOUNT_UNMOUNTING_SIGKILL);
1116 return 0;
1117
1118 case MOUNT_MOUNTED:
1119 mount_enter_unmounting(m);
1120 return 1;
1121
1122 default:
1123 assert_not_reached("Unexpected state.");
1124 }
e537352b
LP
1125}
1126
1127static int mount_reload(Unit *u) {
1128 Mount *m = MOUNT(u);
1129
1130 assert(m);
e537352b
LP
1131 assert(m->state == MOUNT_MOUNTED);
1132
9d2f5178 1133 mount_enter_remounting(m);
22af0e58 1134
2d018ae2 1135 return 1;
e537352b
LP
1136}
1137
a16e1123
LP
1138static int mount_serialize(Unit *u, FILE *f, FDSet *fds) {
1139 Mount *m = MOUNT(u);
1140
1141 assert(m);
1142 assert(f);
1143 assert(fds);
1144
1145 unit_serialize_item(u, f, "state", mount_state_to_string(m->state));
9d2f5178
LP
1146 unit_serialize_item(u, f, "result", mount_result_to_string(m->result));
1147 unit_serialize_item(u, f, "reload-result", mount_result_to_string(m->reload_result));
a16e1123
LP
1148
1149 if (m->control_pid > 0)
ccd06097 1150 unit_serialize_item_format(u, f, "control-pid", PID_FMT, m->control_pid);
a16e1123
LP
1151
1152 if (m->control_command_id >= 0)
1153 unit_serialize_item(u, f, "control-command", mount_exec_command_to_string(m->control_command_id));
1154
1155 return 0;
1156}
1157
1158static int mount_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
1159 Mount *m = MOUNT(u);
a16e1123
LP
1160
1161 assert(u);
1162 assert(key);
1163 assert(value);
1164 assert(fds);
1165
1166 if (streq(key, "state")) {
1167 MountState state;
1168
1169 if ((state = mount_state_from_string(value)) < 0)
f2341e0a 1170 log_unit_debug(u, "Failed to parse state value: %s", value);
a16e1123
LP
1171 else
1172 m->deserialized_state = state;
9d2f5178
LP
1173 } else if (streq(key, "result")) {
1174 MountResult f;
a16e1123 1175
9d2f5178
LP
1176 f = mount_result_from_string(value);
1177 if (f < 0)
f2341e0a 1178 log_unit_debug(u, "Failed to parse result value: %s", value);
9d2f5178
LP
1179 else if (f != MOUNT_SUCCESS)
1180 m->result = f;
1181
1182 } else if (streq(key, "reload-result")) {
1183 MountResult f;
1184
1185 f = mount_result_from_string(value);
1186 if (f < 0)
f2341e0a 1187 log_unit_debug(u, "Failed to parse reload result value: %s", value);
9d2f5178
LP
1188 else if (f != MOUNT_SUCCESS)
1189 m->reload_result = f;
a16e1123
LP
1190
1191 } else if (streq(key, "control-pid")) {
5925dd3c 1192 pid_t pid;
a16e1123 1193
e364ad06 1194 if (parse_pid(value, &pid) < 0)
f2341e0a 1195 log_unit_debug(u, "Failed to parse control-pid value: %s", value);
a16e1123 1196 else
5925dd3c 1197 m->control_pid = pid;
a16e1123
LP
1198 } else if (streq(key, "control-command")) {
1199 MountExecCommand id;
1200
f2341e0a
LP
1201 id = mount_exec_command_from_string(value);
1202 if (id < 0)
1203 log_unit_debug(u, "Failed to parse exec-command value: %s", value);
a16e1123
LP
1204 else {
1205 m->control_command_id = id;
1206 m->control_command = m->exec_command + id;
1207 }
a16e1123 1208 } else
f2341e0a 1209 log_unit_debug(u, "Unknown serialization key: %s", key);
a16e1123
LP
1210
1211 return 0;
1212}
1213
44a6b1b6 1214_pure_ static UnitActiveState mount_active_state(Unit *u) {
e537352b
LP
1215 assert(u);
1216
1217 return state_translation_table[MOUNT(u)->state];
1218}
1219
44a6b1b6 1220_pure_ static const char *mount_sub_state_to_string(Unit *u) {
10a94420
LP
1221 assert(u);
1222
a16e1123 1223 return mount_state_to_string(MOUNT(u)->state);
10a94420
LP
1224}
1225
f2f725e5 1226_pure_ static bool mount_may_gc(Unit *u) {
701cc384
LP
1227 Mount *m = MOUNT(u);
1228
1229 assert(m);
1230
f2f725e5
ZJS
1231 if (m->from_proc_self_mountinfo)
1232 return false;
1233
1234 return true;
701cc384
LP
1235}
1236
e537352b
LP
1237static void mount_sigchld_event(Unit *u, pid_t pid, int code, int status) {
1238 Mount *m = MOUNT(u);
9d2f5178 1239 MountResult f;
e537352b
LP
1240
1241 assert(m);
1242 assert(pid >= 0);
1243
8c47c732
LP
1244 if (pid != m->control_pid)
1245 return;
e537352b 1246
e537352b
LP
1247 m->control_pid = 0;
1248
1f0958f6 1249 if (is_clean_exit(code, status, EXIT_CLEAN_COMMAND, NULL))
9d2f5178
LP
1250 f = MOUNT_SUCCESS;
1251 else if (code == CLD_EXITED)
1252 f = MOUNT_FAILURE_EXIT_CODE;
1253 else if (code == CLD_KILLED)
1254 f = MOUNT_FAILURE_SIGNAL;
1255 else if (code == CLD_DUMPED)
1256 f = MOUNT_FAILURE_CORE_DUMP;
1257 else
1258 assert_not_reached("Unknown code");
1259
850b7410
LP
1260 if (IN_SET(m->state, MOUNT_REMOUNTING, MOUNT_REMOUNTING_SIGKILL, MOUNT_REMOUNTING_SIGTERM))
1261 mount_set_reload_result(m, f);
1262 else if (m->result == MOUNT_SUCCESS)
9d2f5178 1263 m->result = f;
8c47c732 1264
a16e1123 1265 if (m->control_command) {
6ea832a2 1266 exec_status_exit(&m->control_command->exec_status, &m->exec_context, pid, code, status);
9d2f5178 1267
a16e1123
LP
1268 m->control_command = NULL;
1269 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
1270 }
1271
f2341e0a
LP
1272 log_unit_full(u, f == MOUNT_SUCCESS ? LOG_DEBUG : LOG_NOTICE, 0,
1273 "Mount process exited, code=%s status=%i", sigchld_code_to_string(code), status);
e537352b 1274
006aabbd
AJ
1275 /* Note that due to the io event priority logic, we can be sure the new mountinfo is loaded
1276 * before we process the SIGCHLD for the mount command. */
e537352b
LP
1277
1278 switch (m->state) {
1279
1280 case MOUNT_MOUNTING:
006aabbd 1281 /* Our mount point has not appeared in mountinfo. Something went wrong. */
e537352b 1282
006aabbd
AJ
1283 if (f == MOUNT_SUCCESS) {
1284 /* Either /bin/mount has an unexpected definition of success,
1285 * or someone raced us and we lost. */
1286 log_unit_warning(UNIT(m), "Mount process finished, but there is no mount.");
1287 f = MOUNT_FAILURE_PROTOCOL;
1288 }
1289 mount_enter_dead(m, f);
1290 break;
1291
1292 case MOUNT_MOUNTING_DONE:
1293 mount_enter_mounted(m, f);
e537352b
LP
1294 break;
1295
e2f3b44c 1296 case MOUNT_REMOUNTING:
e2f3b44c 1297 case MOUNT_REMOUNTING_SIGTERM:
22af0e58
LP
1298 case MOUNT_REMOUNTING_SIGKILL:
1299 mount_enter_dead_or_mounted(m, MOUNT_SUCCESS);
e2f3b44c
LP
1300 break;
1301
e537352b 1302 case MOUNT_UNMOUNTING:
e537352b 1303
3cc96856 1304 if (f == MOUNT_SUCCESS && m->from_proc_self_mountinfo) {
22af0e58
LP
1305
1306 /* Still a mount point? If so, let's try again. Most likely there were multiple mount points
57018361
AJ
1307 * stacked on top of each other. We might exceed the timeout specified by the user overall,
1308 * but we will stop as soon as any one umount times out. */
22af0e58
LP
1309
1310 if (m->n_retry_umount < RETRY_UMOUNT_MAX) {
1311 log_unit_debug(u, "Mount still present, trying again.");
1312 m->n_retry_umount++;
1313 mount_enter_unmounting(m);
1314 } else {
006aabbd 1315 log_unit_warning(u, "Mount still present after %u attempts to unmount, giving up.", m->n_retry_umount);
22af0e58
LP
1316 mount_enter_mounted(m, f);
1317 }
1318 } else
3cc96856 1319 mount_enter_dead_or_mounted(m, f);
22af0e58 1320
e537352b 1321 break;
57018361
AJ
1322
1323 case MOUNT_UNMOUNTING_SIGKILL:
1324 case MOUNT_UNMOUNTING_SIGTERM:
1325 mount_enter_dead_or_mounted(m, f);
1326 break;
e537352b
LP
1327
1328 default:
1329 assert_not_reached("Uh, control process died at wrong time.");
1330 }
c4e2ceae
LP
1331
1332 /* Notify clients about changed exit status */
1333 unit_add_to_dbus_queue(u);
e537352b
LP
1334}
1335
718db961
LP
1336static int mount_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
1337 Mount *m = MOUNT(userdata);
e537352b
LP
1338
1339 assert(m);
718db961 1340 assert(m->timer_event_source == source);
e537352b
LP
1341
1342 switch (m->state) {
1343
1344 case MOUNT_MOUNTING:
1345 case MOUNT_MOUNTING_DONE:
22af0e58
LP
1346 log_unit_warning(UNIT(m), "Mounting timed out. Terminating.");
1347 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGTERM, MOUNT_FAILURE_TIMEOUT);
e537352b
LP
1348 break;
1349
1350 case MOUNT_REMOUNTING:
79aafbd1 1351 log_unit_warning(UNIT(m), "Remounting timed out. Terminating remount process.");
22af0e58
LP
1352 mount_set_reload_result(m, MOUNT_FAILURE_TIMEOUT);
1353 mount_enter_signal(m, MOUNT_REMOUNTING_SIGTERM, MOUNT_SUCCESS);
e537352b
LP
1354 break;
1355
22af0e58
LP
1356 case MOUNT_REMOUNTING_SIGTERM:
1357 mount_set_reload_result(m, MOUNT_FAILURE_TIMEOUT);
e537352b 1358
4819ff03 1359 if (m->kill_context.send_sigkill) {
22af0e58
LP
1360 log_unit_warning(UNIT(m), "Remounting timed out. Killing.");
1361 mount_enter_signal(m, MOUNT_REMOUNTING_SIGKILL, MOUNT_SUCCESS);
ba035df2 1362 } else {
22af0e58
LP
1363 log_unit_warning(UNIT(m), "Remounting timed out. Skipping SIGKILL. Ignoring.");
1364 mount_enter_dead_or_mounted(m, MOUNT_SUCCESS);
ba035df2 1365 }
e537352b
LP
1366 break;
1367
22af0e58
LP
1368 case MOUNT_REMOUNTING_SIGKILL:
1369 mount_set_reload_result(m, MOUNT_FAILURE_TIMEOUT);
ba035df2 1370
22af0e58
LP
1371 log_unit_warning(UNIT(m), "Mount process still around after SIGKILL. Ignoring.");
1372 mount_enter_dead_or_mounted(m, MOUNT_SUCCESS);
1373 break;
1374
1375 case MOUNT_UNMOUNTING:
79aafbd1 1376 log_unit_warning(UNIT(m), "Unmounting timed out. Terminating.");
22af0e58 1377 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGTERM, MOUNT_FAILURE_TIMEOUT);
e537352b
LP
1378 break;
1379
1380 case MOUNT_UNMOUNTING_SIGTERM:
4819ff03 1381 if (m->kill_context.send_sigkill) {
22af0e58 1382 log_unit_warning(UNIT(m), "Mount process timed out. Killing.");
9d2f5178 1383 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGKILL, MOUNT_FAILURE_TIMEOUT);
ba035df2 1384 } else {
22af0e58
LP
1385 log_unit_warning(UNIT(m), "Mount process timed out. Skipping SIGKILL. Ignoring.");
1386 mount_enter_dead_or_mounted(m, MOUNT_FAILURE_TIMEOUT);
ba035df2 1387 }
e537352b
LP
1388 break;
1389
e537352b 1390 case MOUNT_UNMOUNTING_SIGKILL:
22af0e58
LP
1391 log_unit_warning(UNIT(m), "Mount process still around after SIGKILL. Ignoring.");
1392 mount_enter_dead_or_mounted(m, MOUNT_FAILURE_TIMEOUT);
e537352b
LP
1393 break;
1394
1395 default:
1396 assert_not_reached("Timeout at wrong time.");
1397 }
718db961
LP
1398
1399 return 0;
e537352b
LP
1400}
1401
03b8cfed
FB
1402typedef struct {
1403 bool is_mounted;
1404 bool just_mounted;
1405 bool just_changed;
1406} MountSetupFlags;
1407
1408static int mount_setup_new_unit(
1409 Unit *u,
1410 const char *what,
1411 const char *where,
1412 const char *options,
1413 const char *fstype,
1414 MountSetupFlags *flags) {
1415
1416 MountParameters *p;
1417
1418 assert(u);
1419 assert(flags);
1420
1421 u->source_path = strdup("/proc/self/mountinfo");
1422 MOUNT(u)->where = strdup(where);
a51ee72d 1423 if (!u->source_path || !MOUNT(u)->where)
03b8cfed
FB
1424 return -ENOMEM;
1425
1426 /* Make sure to initialize those fields before mount_is_extrinsic(). */
1427 MOUNT(u)->from_proc_self_mountinfo = true;
1428 p = &MOUNT(u)->parameters_proc_self_mountinfo;
1429
1430 p->what = strdup(what);
1431 p->options = strdup(options);
1432 p->fstype = strdup(fstype);
1433 if (!p->what || !p->options || !p->fstype)
1434 return -ENOMEM;
1435
1436 if (!mount_is_extrinsic(MOUNT(u))) {
1437 const char *target;
1438 int r;
1439
1440 target = mount_is_network(p) ? SPECIAL_REMOTE_FS_TARGET : SPECIAL_LOCAL_FS_TARGET;
eef85c4a 1441 r = unit_add_dependency_by_name(u, UNIT_BEFORE, target, NULL, true, UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT);
03b8cfed
FB
1442 if (r < 0)
1443 return r;
1444
eef85c4a 1445 r = unit_add_dependency_by_name(u, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true, UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT);
03b8cfed
FB
1446 if (r < 0)
1447 return r;
1448 }
1449
cfcd4318 1450 unit_add_to_load_queue(u);
03b8cfed
FB
1451 flags->is_mounted = true;
1452 flags->just_mounted = true;
1453 flags->just_changed = true;
1454
1455 return 0;
1456}
1457
1458static int mount_setup_existing_unit(
1459 Unit *u,
1460 const char *what,
1461 const char *where,
1462 const char *options,
1463 const char *fstype,
1464 MountSetupFlags *flags) {
1465
1466 MountParameters *p;
1467 bool load_extras = false;
1468 int r1, r2, r3;
1469
1470 assert(u);
1471 assert(flags);
1472
1473 if (!MOUNT(u)->where) {
1474 MOUNT(u)->where = strdup(where);
1475 if (!MOUNT(u)->where)
1476 return -ENOMEM;
1477 }
1478
1479 /* Make sure to initialize those fields before mount_is_extrinsic(). */
1480 p = &MOUNT(u)->parameters_proc_self_mountinfo;
1481
1482 r1 = free_and_strdup(&p->what, what);
1483 r2 = free_and_strdup(&p->options, options);
1484 r3 = free_and_strdup(&p->fstype, fstype);
1485 if (r1 < 0 || r2 < 0 || r3 < 0)
1486 return -ENOMEM;
1487
1488 flags->just_changed = r1 > 0 || r2 > 0 || r3 > 0;
1489 flags->is_mounted = true;
65d36b49 1490 flags->just_mounted = !MOUNT(u)->from_proc_self_mountinfo || MOUNT(u)->just_mounted;
03b8cfed
FB
1491
1492 MOUNT(u)->from_proc_self_mountinfo = true;
1493
1494 if (!mount_is_extrinsic(MOUNT(u)) && mount_is_network(p)) {
1495 /* _netdev option may have shown up late, or on a
1496 * remount. Add remote-fs dependencies, even though
1497 * local-fs ones may already be there.
1498 *
1499 * Note: due to a current limitation (we don't track
1500 * in the dependency "Set*" objects who created a
1501 * dependency), we can only add deps, never lose them,
1502 * until the next full daemon-reload. */
eef85c4a 1503 unit_add_dependency_by_name(u, UNIT_BEFORE, SPECIAL_REMOTE_FS_TARGET, NULL, true, UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT);
03b8cfed
FB
1504 load_extras = true;
1505 }
1506
1507 if (u->load_state == UNIT_NOT_FOUND) {
1508 u->load_state = UNIT_LOADED;
1509 u->load_error = 0;
1510
1511 /* Load in the extras later on, after we
1512 * finished initialization of the unit */
1513
1514 /* FIXME: since we're going to load the unit later on, why setting load_extras=true ? */
1515 load_extras = true;
1516 flags->just_changed = true;
1517 }
1518
1519 if (load_extras)
1520 return mount_add_extras(MOUNT(u));
1521
1522 return 0;
1523}
1524
628c89cc 1525static int mount_setup_unit(
e537352b
LP
1526 Manager *m,
1527 const char *what,
1528 const char *where,
1529 const char *options,
1530 const char *fstype,
e537352b 1531 bool set_flags) {
057d9ab8 1532
03b8cfed
FB
1533 _cleanup_free_ char *e = NULL;
1534 MountSetupFlags flags;
057d9ab8
LP
1535 Unit *u;
1536 int r;
b08d03ff 1537
f50e0a01 1538 assert(m);
b08d03ff
LP
1539 assert(what);
1540 assert(where);
e537352b
LP
1541 assert(options);
1542 assert(fstype);
1543
e537352b
LP
1544 /* Ignore API mount points. They should never be referenced in
1545 * dependencies ever. */
33ff02c9 1546 if (mount_point_is_api(where) || mount_point_ignore(where))
57f2a956 1547 return 0;
b08d03ff 1548
8d567588
LP
1549 if (streq(fstype, "autofs"))
1550 return 0;
1551
4e85aff4
LP
1552 /* probably some kind of swap, ignore */
1553 if (!is_path(where))
b08d03ff
LP
1554 return 0;
1555
7410616c
LP
1556 r = unit_name_from_path(where, ".mount", &e);
1557 if (r < 0)
1558 return r;
b08d03ff 1559
7d17cfbc
MS
1560 u = manager_get_unit(m, e);
1561 if (!u) {
03b8cfed
FB
1562 /* First time we see this mount point meaning that it's
1563 * not been initiated by a mount unit but rather by the
1564 * sysadmin having called mount(8) directly. */
a581e45a 1565 r = unit_new_for_name(m, sizeof(Mount), e, &u);
b08d03ff
LP
1566 if (r < 0)
1567 goto fail;
1568
03b8cfed
FB
1569 r = mount_setup_new_unit(u, what, where, options, fstype, &flags);
1570 if (r < 0)
1571 unit_free(u);
1572 } else
1573 r = mount_setup_existing_unit(u, what, where, options, fstype, &flags);
b08d03ff 1574
03b8cfed 1575 if (r < 0)
e537352b 1576 goto fail;
ff5f34d0 1577
6b1dc2bd 1578 if (set_flags) {
03b8cfed
FB
1579 MOUNT(u)->is_mounted = flags.is_mounted;
1580 MOUNT(u)->just_mounted = flags.just_mounted;
1581 MOUNT(u)->just_changed = flags.just_changed;
b87705cd
LP
1582 }
1583
03b8cfed 1584 if (flags.just_changed)
ff5f34d0 1585 unit_add_to_dbus_queue(u);
c1e1601e 1586
b08d03ff 1587 return 0;
b08d03ff 1588fail:
628c89cc 1589 log_warning_errno(r, "Failed to set up mount unit: %m");
4e85aff4 1590 return r;
b08d03ff
LP
1591}
1592
ef734fd6 1593static int mount_load_proc_self_mountinfo(Manager *m, bool set_flags) {
628c89cc
LP
1594 _cleanup_(mnt_free_tablep) struct libmnt_table *t = NULL;
1595 _cleanup_(mnt_free_iterp) struct libmnt_iter *i = NULL;
60b912f6 1596 int r = 0;
b08d03ff
LP
1597
1598 assert(m);
1599
628c89cc 1600 t = mnt_new_table();
628c89cc 1601 i = mnt_new_iter(MNT_ITER_FORWARD);
95b862b0 1602 if (!t || !i)
628c89cc
LP
1603 return log_oom();
1604
1605 r = mnt_table_parse_mtab(t, NULL);
5cca8def 1606 if (r < 0)
628c89cc 1607 return log_error_errno(r, "Failed to parse /proc/self/mountinfo: %m");
e537352b 1608
5cca8def
ZJS
1609 r = 0;
1610 for (;;) {
95b862b0 1611 struct libmnt_fs *fs;
8d3ae2bd 1612 const char *device, *path, *options, *fstype;
527b7a42 1613 _cleanup_free_ char *d = NULL, *p = NULL;
8d3ae2bd 1614 int k;
b08d03ff 1615
628c89cc 1616 k = mnt_table_next_fs(t, i, &fs);
5cca8def
ZJS
1617 if (k == 1)
1618 break;
628c89cc
LP
1619 if (k < 0)
1620 return log_error_errno(k, "Failed to get next entry from /proc/self/mountinfo: %m");
5cca8def 1621
8d3ae2bd
CL
1622 device = mnt_fs_get_source(fs);
1623 path = mnt_fs_get_target(fs);
1624 options = mnt_fs_get_options(fs);
1625 fstype = mnt_fs_get_fstype(fs);
a2e0f3d3 1626
c0a7f8d3
DM
1627 if (!device || !path)
1628 continue;
1629
527b7a42 1630 if (cunescape(device, UNESCAPE_RELAX, &d) < 0)
628c89cc
LP
1631 return log_oom();
1632
527b7a42 1633 if (cunescape(path, UNESCAPE_RELAX, &p) < 0)
a57f7e2c 1634 return log_oom();
b08d03ff 1635
628c89cc
LP
1636 (void) device_found_node(m, d, true, DEVICE_FOUND_MOUNT, set_flags);
1637
1638 k = mount_setup_unit(m, d, p, options, fstype, set_flags);
5cca8def 1639 if (r == 0 && k < 0)
60b912f6 1640 r = k;
b08d03ff
LP
1641 }
1642
e537352b
LP
1643 return r;
1644}
1645
1646static void mount_shutdown(Manager *m) {
1647 assert(m);
1648
718db961
LP
1649 m->mount_event_source = sd_event_source_unref(m->mount_event_source);
1650
d379d442
KZ
1651 mnt_unref_monitor(m->mount_monitor);
1652 m->mount_monitor = NULL;
b08d03ff
LP
1653}
1654
7a7821c8 1655static int mount_get_timeout(Unit *u, usec_t *timeout) {
68db7a3b 1656 Mount *m = MOUNT(u);
7a7821c8 1657 usec_t t;
68db7a3b
ZJS
1658 int r;
1659
1660 if (!m->timer_event_source)
1661 return 0;
1662
7a7821c8 1663 r = sd_event_source_get_time(m->timer_event_source, &t);
68db7a3b
ZJS
1664 if (r < 0)
1665 return r;
7a7821c8
LP
1666 if (t == USEC_INFINITY)
1667 return 0;
68db7a3b 1668
7a7821c8 1669 *timeout = t;
68db7a3b
ZJS
1670 return 1;
1671}
1672
1201cae7 1673static int synthesize_root_mount(Manager *m) {
11222d0f
LP
1674 Unit *u;
1675 int r;
1676
1677 assert(m);
1678
1679 /* Whatever happens, we know for sure that the root directory is around, and cannot go away. Let's
1680 * unconditionally synthesize it here and mark it as perpetual. */
1681
1682 u = manager_get_unit(m, SPECIAL_ROOT_MOUNT);
1683 if (!u) {
a581e45a 1684 r = unit_new_for_name(m, sizeof(Mount), SPECIAL_ROOT_MOUNT, &u);
1201cae7
LP
1685 if (r < 0)
1686 return log_error_errno(r, "Failed to allocate the special " SPECIAL_ROOT_MOUNT " unit: %m");
11222d0f
LP
1687 }
1688
1689 u->perpetual = true;
1690 MOUNT(u)->deserialized_state = MOUNT_MOUNTED;
1691
1692 unit_add_to_load_queue(u);
1693 unit_add_to_dbus_queue(u);
1201cae7
LP
1694
1695 return 0;
11222d0f
LP
1696}
1697
1698static bool mount_is_mounted(Mount *m) {
1699 assert(m);
1700
1701 return UNIT(m)->perpetual || m->is_mounted;
1702}
1703
ba64af90 1704static void mount_enumerate(Manager *m) {
b08d03ff 1705 int r;
d379d442 1706
b08d03ff
LP
1707 assert(m);
1708
1201cae7
LP
1709 r = synthesize_root_mount(m);
1710 if (r < 0)
1711 goto fail;
11222d0f 1712
8d3ae2bd
CL
1713 mnt_init_debug(0);
1714
d379d442
KZ
1715 if (!m->mount_monitor) {
1716 int fd;
ef734fd6 1717
d379d442
KZ
1718 m->mount_monitor = mnt_new_monitor();
1719 if (!m->mount_monitor) {
ba64af90 1720 log_oom();
718db961 1721 goto fail;
d379d442 1722 }
29083707 1723
d379d442 1724 r = mnt_monitor_enable_kernel(m->mount_monitor, 1);
ba64af90
LP
1725 if (r < 0) {
1726 log_error_errno(r, "Failed to enable watching of kernel mount events: %m");
29083707 1727 goto fail;
ba64af90
LP
1728 }
1729
d379d442 1730 r = mnt_monitor_enable_userspace(m->mount_monitor, 1, NULL);
ba64af90
LP
1731 if (r < 0) {
1732 log_error_errno(r, "Failed to enable watching of userspace mount events: %m");
f7c1ad4f 1733 goto fail;
ba64af90 1734 }
90598531 1735
d379d442
KZ
1736 /* mnt_unref_monitor() will close the fd */
1737 fd = r = mnt_monitor_get_fd(m->mount_monitor);
ba64af90
LP
1738 if (r < 0) {
1739 log_error_errno(r, "Failed to acquire watch file descriptor: %m");
f7c1ad4f 1740 goto fail;
ba64af90 1741 }
befb6d54 1742
d379d442 1743 r = sd_event_add_io(m->event, &m->mount_event_source, fd, EPOLLIN, mount_dispatch_io, m);
ba64af90
LP
1744 if (r < 0) {
1745 log_error_errno(r, "Failed to watch mount file descriptor: %m");
befb6d54 1746 goto fail;
ba64af90 1747 }
befb6d54 1748
83231637 1749 r = sd_event_source_set_priority(m->mount_event_source, SD_EVENT_PRIORITY_NORMAL-10);
ba64af90
LP
1750 if (r < 0) {
1751 log_error_errno(r, "Failed to adjust mount watch priority: %m");
befb6d54 1752 goto fail;
ba64af90 1753 }
7dfbe2e3 1754
d379d442 1755 (void) sd_event_source_set_description(m->mount_event_source, "mount-monitor-dispatch");
befb6d54
CL
1756 }
1757
e62d8c39
ZJS
1758 r = mount_load_proc_self_mountinfo(m, false);
1759 if (r < 0)
b08d03ff
LP
1760 goto fail;
1761
ba64af90 1762 return;
b08d03ff
LP
1763
1764fail:
1765 mount_shutdown(m);
5cb5a6ff
LP
1766}
1767
718db961 1768static int mount_dispatch_io(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
fcd8b266 1769 _cleanup_set_free_ Set *around = NULL, *gone = NULL;
718db961 1770 Manager *m = userdata;
fcd8b266
LP
1771 const char *what;
1772 Iterator i;
595ed347 1773 Unit *u;
ef734fd6
LP
1774 int r;
1775
1776 assert(m);
d379d442 1777 assert(revents & EPOLLIN);
ef734fd6 1778
d379d442 1779 if (fd == mnt_monitor_get_fd(m->mount_monitor)) {
df63dda6 1780 bool rescan = false;
befb6d54 1781
d379d442
KZ
1782 /* Drain all events and verify that the event is valid.
1783 *
1784 * Note that libmount also monitors /run/mount mkdir if the
1785 * directory does not exist yet. The mkdir may generate event
1786 * which is irrelevant for us.
1787 *
1788 * error: r < 0; valid: r == 0, false positive: rc == 1 */
1789 do {
1790 r = mnt_monitor_next_change(m->mount_monitor, NULL, NULL);
1791 if (r == 0)
1792 rescan = true;
1793 else if (r < 0)
1794 return log_error_errno(r, "Failed to drain libmount events");
1795 } while (r == 0);
1796
1797 log_debug("libmount event [rescan: %s]", yes_no(rescan));
befb6d54
CL
1798 if (!rescan)
1799 return 0;
1800 }
ef734fd6 1801
4f0eedb7
ZJS
1802 r = mount_load_proc_self_mountinfo(m, true);
1803 if (r < 0) {
e537352b 1804 /* Reset flags, just in case, for later calls */
595ed347
MS
1805 LIST_FOREACH(units_by_type, u, m->units_by_type[UNIT_MOUNT]) {
1806 Mount *mount = MOUNT(u);
e537352b
LP
1807
1808 mount->is_mounted = mount->just_mounted = mount->just_changed = false;
1809 }
1810
718db961 1811 return 0;
ef734fd6
LP
1812 }
1813
1814 manager_dispatch_load_queue(m);
1815
595ed347
MS
1816 LIST_FOREACH(units_by_type, u, m->units_by_type[UNIT_MOUNT]) {
1817 Mount *mount = MOUNT(u);
ef734fd6 1818
11222d0f 1819 if (!mount_is_mounted(mount)) {
e537352b 1820
394763f6
LP
1821 /* A mount point is not around right now. It
1822 * might be gone, or might never have
1823 * existed. */
1824
1825 if (mount->from_proc_self_mountinfo &&
1826 mount->parameters_proc_self_mountinfo.what) {
1827
1828 /* Remember that this device might just have disappeared */
548f6937 1829 if (set_ensure_allocated(&gone, &path_hash_ops) < 0 ||
394763f6
LP
1830 set_put(gone, mount->parameters_proc_self_mountinfo.what) < 0)
1831 log_oom(); /* we don't care too much about OOM here... */
1832 }
fcd8b266 1833
ef734fd6 1834 mount->from_proc_self_mountinfo = false;
e537352b
LP
1835
1836 switch (mount->state) {
1837
1838 case MOUNT_MOUNTED:
aef83136
LP
1839 /* This has just been unmounted by
1840 * somebody else, follow the state
1841 * change. */
cf6f7f66 1842 mount->result = MOUNT_SUCCESS; /* make sure we forget any earlier umount failures */
9d2f5178 1843 mount_enter_dead(mount, MOUNT_SUCCESS);
e537352b
LP
1844 break;
1845
1846 default:
e537352b 1847 break;
e537352b
LP
1848 }
1849
1850 } else if (mount->just_mounted || mount->just_changed) {
1851
fcd8b266 1852 /* A mount point was added or changed */
e537352b
LP
1853
1854 switch (mount->state) {
1855
1856 case MOUNT_DEAD:
fdf20a31 1857 case MOUNT_FAILED:
4b58153d
LP
1858
1859 /* This has just been mounted by somebody else, follow the state change, but let's
1860 * generate a new invocation ID for this implicitly and automatically. */
1861 (void) unit_acquire_invocation_id(UNIT(mount));
9d2f5178 1862 mount_enter_mounted(mount, MOUNT_SUCCESS);
e537352b
LP
1863 break;
1864
1865 case MOUNT_MOUNTING:
5bcb0f2b 1866 mount_set_state(mount, MOUNT_MOUNTING_DONE);
e537352b
LP
1867 break;
1868
1869 default:
1870 /* Nothing really changed, but let's
1871 * issue an notification call
1872 * nonetheless, in case somebody is
1873 * waiting for this. (e.g. file system
1874 * ro/rw remounts.) */
1875 mount_set_state(mount, mount->state);
1876 break;
1877 }
394763f6 1878 }
fcd8b266 1879
11222d0f 1880 if (mount_is_mounted(mount) &&
394763f6
LP
1881 mount->from_proc_self_mountinfo &&
1882 mount->parameters_proc_self_mountinfo.what) {
fcd8b266 1883
548f6937 1884 if (set_ensure_allocated(&around, &path_hash_ops) < 0 ||
394763f6
LP
1885 set_put(around, mount->parameters_proc_self_mountinfo.what) < 0)
1886 log_oom();
e537352b
LP
1887 }
1888
1889 /* Reset the flags for later calls */
1890 mount->is_mounted = mount->just_mounted = mount->just_changed = false;
1891 }
718db961 1892
fcd8b266
LP
1893 SET_FOREACH(what, gone, i) {
1894 if (set_contains(around, what))
1895 continue;
1896
1897 /* Let the device units know that the device is no longer mounted */
1898 (void) device_found_node(m, what, false, DEVICE_FOUND_MOUNT, true);
1899 }
1900
718db961 1901 return 0;
e537352b
LP
1902}
1903
fdf20a31 1904static void mount_reset_failed(Unit *u) {
5632e374
LP
1905 Mount *m = MOUNT(u);
1906
1907 assert(m);
1908
fdf20a31 1909 if (m->state == MOUNT_FAILED)
5632e374
LP
1910 mount_set_state(m, MOUNT_DEAD);
1911
9d2f5178
LP
1912 m->result = MOUNT_SUCCESS;
1913 m->reload_result = MOUNT_SUCCESS;
5632e374
LP
1914}
1915
718db961 1916static int mount_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) {
22af0e58
LP
1917 Mount *m = MOUNT(u);
1918
1919 assert(m);
1920
814cc562 1921 return unit_kill_common(u, who, signo, -1, MOUNT(u)->control_pid, error);
8a0867d6
LP
1922}
1923
291d565a
LP
1924static int mount_control_pid(Unit *u) {
1925 Mount *m = MOUNT(u);
1926
1927 assert(m);
1928
1929 return m->control_pid;
1930}
1931
a16e1123
LP
1932static const char* const mount_exec_command_table[_MOUNT_EXEC_COMMAND_MAX] = {
1933 [MOUNT_EXEC_MOUNT] = "ExecMount",
1934 [MOUNT_EXEC_UNMOUNT] = "ExecUnmount",
1935 [MOUNT_EXEC_REMOUNT] = "ExecRemount",
1936};
1937
1938DEFINE_STRING_TABLE_LOOKUP(mount_exec_command, MountExecCommand);
1939
9d2f5178
LP
1940static const char* const mount_result_table[_MOUNT_RESULT_MAX] = {
1941 [MOUNT_SUCCESS] = "success",
1942 [MOUNT_FAILURE_RESOURCES] = "resources",
1943 [MOUNT_FAILURE_TIMEOUT] = "timeout",
1944 [MOUNT_FAILURE_EXIT_CODE] = "exit-code",
1945 [MOUNT_FAILURE_SIGNAL] = "signal",
07299350
LP
1946 [MOUNT_FAILURE_CORE_DUMP] = "core-dump",
1947 [MOUNT_FAILURE_START_LIMIT_HIT] = "start-limit-hit",
006aabbd 1948 [MOUNT_FAILURE_PROTOCOL] = "protocol",
9d2f5178
LP
1949};
1950
1951DEFINE_STRING_TABLE_LOOKUP(mount_result, MountResult);
1952
87f0e418 1953const UnitVTable mount_vtable = {
7d17cfbc 1954 .object_size = sizeof(Mount),
718db961
LP
1955 .exec_context_offset = offsetof(Mount, exec_context),
1956 .cgroup_context_offset = offsetof(Mount, cgroup_context),
1957 .kill_context_offset = offsetof(Mount, kill_context),
613b411c 1958 .exec_runtime_offset = offsetof(Mount, exec_runtime),
29206d46 1959 .dynamic_creds_offset = offsetof(Mount, dynamic_creds),
3ef63c31 1960
f975e971
LP
1961 .sections =
1962 "Unit\0"
1963 "Mount\0"
1964 "Install\0",
4ad49000 1965 .private_section = "Mount",
71645aca 1966
e537352b
LP
1967 .init = mount_init,
1968 .load = mount_load,
034c6ed7 1969 .done = mount_done,
e537352b 1970
f50e0a01
LP
1971 .coldplug = mount_coldplug,
1972
034c6ed7 1973 .dump = mount_dump,
5cb5a6ff 1974
e537352b
LP
1975 .start = mount_start,
1976 .stop = mount_stop,
1977 .reload = mount_reload,
1978
8a0867d6
LP
1979 .kill = mount_kill,
1980
a16e1123
LP
1981 .serialize = mount_serialize,
1982 .deserialize_item = mount_deserialize_item,
1983
f50e0a01 1984 .active_state = mount_active_state,
10a94420 1985 .sub_state_to_string = mount_sub_state_to_string,
b08d03ff 1986
f2f725e5 1987 .may_gc = mount_may_gc,
701cc384 1988
e537352b 1989 .sigchld_event = mount_sigchld_event,
e537352b 1990
fdf20a31 1991 .reset_failed = mount_reset_failed,
291d565a
LP
1992
1993 .control_pid = mount_control_pid,
5632e374 1994
718db961 1995 .bus_vtable = bus_mount_vtable,
74c964d3
LP
1996 .bus_set_property = bus_mount_set_property,
1997 .bus_commit_properties = bus_mount_commit_properties,
4139c1b2 1998
68db7a3b
ZJS
1999 .get_timeout = mount_get_timeout,
2000
0e252f6b
TG
2001 .can_transient = true,
2002
f50e0a01 2003 .enumerate = mount_enumerate,
c6918296
MS
2004 .shutdown = mount_shutdown,
2005
2006 .status_message_formats = {
2007 .starting_stopping = {
2008 [0] = "Mounting %s...",
2009 [1] = "Unmounting %s...",
2010 },
2011 .finished_start_job = {
2012 [JOB_DONE] = "Mounted %s.",
2013 [JOB_FAILED] = "Failed to mount %s.",
c6918296
MS
2014 [JOB_TIMEOUT] = "Timed out mounting %s.",
2015 },
2016 .finished_stop_job = {
2017 [JOB_DONE] = "Unmounted %s.",
2018 [JOB_FAILED] = "Failed unmounting %s.",
2019 [JOB_TIMEOUT] = "Timed out unmounting %s.",
2020 },
2021 },
5cb5a6ff 2022};