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