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