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