]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/mount.c
dbus: follow standardized fdo PropertiesChanged signal spec
[thirdparty/systemd.git] / src / mount.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <errno.h>
23 #include <stdio.h>
24 #include <mntent.h>
25 #include <sys/epoll.h>
26 #include <signal.h>
27
28 #include "unit.h"
29 #include "mount.h"
30 #include "load-fragment.h"
31 #include "load-dropin.h"
32 #include "log.h"
33 #include "strv.h"
34 #include "mount-setup.h"
35 #include "unit-name.h"
36 #include "mount.h"
37 #include "dbus-mount.h"
38 #include "special.h"
39
40 static const UnitActiveState state_translation_table[_MOUNT_STATE_MAX] = {
41 [MOUNT_DEAD] = UNIT_INACTIVE,
42 [MOUNT_MOUNTING] = UNIT_ACTIVATING,
43 [MOUNT_MOUNTING_DONE] = UNIT_ACTIVE,
44 [MOUNT_MOUNTED] = UNIT_ACTIVE,
45 [MOUNT_REMOUNTING] = UNIT_RELOADING,
46 [MOUNT_UNMOUNTING] = UNIT_DEACTIVATING,
47 [MOUNT_MOUNTING_SIGTERM] = UNIT_DEACTIVATING,
48 [MOUNT_MOUNTING_SIGKILL] = UNIT_DEACTIVATING,
49 [MOUNT_REMOUNTING_SIGTERM] = UNIT_RELOADING,
50 [MOUNT_REMOUNTING_SIGKILL] = UNIT_RELOADING,
51 [MOUNT_UNMOUNTING_SIGTERM] = UNIT_DEACTIVATING,
52 [MOUNT_UNMOUNTING_SIGKILL] = UNIT_DEACTIVATING,
53 [MOUNT_MAINTENANCE] = UNIT_MAINTENANCE
54 };
55
56 static void mount_init(Unit *u) {
57 Mount *m = MOUNT(u);
58
59 assert(u);
60 assert(u->meta.load_state == UNIT_STUB);
61
62 m->timeout_usec = DEFAULT_TIMEOUT_USEC;
63 m->directory_mode = 0755;
64
65 exec_context_init(&m->exec_context);
66
67 /* We need to make sure that /bin/mount is always called in
68 * the same process group as us, so that the autofs kernel
69 * side doesn't send us another mount request while we are
70 * already trying to comply its last one. */
71 m->exec_context.same_pgrp = true;
72
73 m->timer_watch.type = WATCH_INVALID;
74
75 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
76 }
77
78 static void mount_unwatch_control_pid(Mount *m) {
79 assert(m);
80
81 if (m->control_pid <= 0)
82 return;
83
84 unit_unwatch_pid(UNIT(m), m->control_pid);
85 m->control_pid = 0;
86 }
87
88 static void mount_parameters_done(MountParameters *p) {
89 assert(p);
90
91 free(p->what);
92 free(p->options);
93 free(p->fstype);
94
95 p->what = p->options = p->fstype = NULL;
96 }
97
98 static void mount_done(Unit *u) {
99 Mount *m = MOUNT(u);
100
101 assert(m);
102
103 free(m->where);
104 m->where = NULL;
105
106 mount_parameters_done(&m->parameters_etc_fstab);
107 mount_parameters_done(&m->parameters_proc_self_mountinfo);
108 mount_parameters_done(&m->parameters_fragment);
109
110 exec_context_done(&m->exec_context);
111 exec_command_done_array(m->exec_command, _MOUNT_EXEC_COMMAND_MAX);
112 m->control_command = NULL;
113
114 mount_unwatch_control_pid(m);
115
116 unit_unwatch_timer(u, &m->timer_watch);
117 }
118
119 static int mount_add_mount_links(Mount *m) {
120 Meta *other;
121 int r;
122
123 assert(m);
124
125 /* Adds in links to other mount points that might lie below or
126 * above us in the hierarchy */
127
128 LIST_FOREACH(units_per_type, other, m->meta.manager->units_per_type[UNIT_MOUNT]) {
129 Mount *n = (Mount*) other;
130
131 if (n == m)
132 continue;
133
134 if (n->meta.load_state != UNIT_LOADED)
135 continue;
136
137 if (path_startswith(m->where, n->where)) {
138
139 if ((r = unit_add_dependency(UNIT(m), UNIT_AFTER, UNIT(n), true)) < 0)
140 return r;
141
142 if (n->from_etc_fstab || n->from_fragment)
143 if ((r = unit_add_dependency(UNIT(m), UNIT_REQUIRES, UNIT(n), true)) < 0)
144 return r;
145
146 } else if (path_startswith(n->where, m->where)) {
147
148 if ((r = unit_add_dependency(UNIT(m), UNIT_BEFORE, UNIT(n), true)) < 0)
149 return r;
150
151 if (m->from_etc_fstab || m->from_fragment)
152 if ((r = unit_add_dependency(UNIT(n), UNIT_REQUIRES, UNIT(m), true)) < 0)
153 return r;
154 }
155 }
156
157 return 0;
158 }
159
160 static int mount_add_swap_links(Mount *m) {
161 Meta *other;
162 int r;
163
164 assert(m);
165
166 LIST_FOREACH(units_per_type, other, m->meta.manager->units_per_type[UNIT_SWAP])
167 if ((r = swap_add_one_mount_link((Swap*) other, m)) < 0)
168 return r;
169
170 return 0;
171 }
172
173 static int mount_add_path_links(Mount *m) {
174 Meta *other;
175 int r;
176
177 assert(m);
178
179 LIST_FOREACH(units_per_type, other, m->meta.manager->units_per_type[UNIT_PATH])
180 if ((r = path_add_one_mount_link((Path*) other, m)) < 0)
181 return r;
182
183 return 0;
184 }
185
186 static int mount_add_automount_links(Mount *m) {
187 Meta *other;
188 int r;
189
190 assert(m);
191
192 LIST_FOREACH(units_per_type, other, m->meta.manager->units_per_type[UNIT_AUTOMOUNT])
193 if ((r = automount_add_one_mount_link((Automount*) other, m)) < 0)
194 return r;
195
196 return 0;
197 }
198
199 static int mount_add_socket_links(Mount *m) {
200 Meta *other;
201 int r;
202
203 assert(m);
204
205 LIST_FOREACH(units_per_type, other, m->meta.manager->units_per_type[UNIT_SOCKET])
206 if ((r = socket_add_one_mount_link((Socket*) other, m)) < 0)
207 return r;
208
209 return 0;
210 }
211
212 static char* mount_test_option(const char *haystack, const char *needle) {
213 struct mntent me;
214
215 assert(needle);
216
217 /* Like glibc's hasmntopt(), but works on a string, not a
218 * struct mntent */
219
220 if (!haystack)
221 return false;
222
223 zero(me);
224 me.mnt_opts = (char*) haystack;
225
226 return hasmntopt(&me, needle);
227 }
228
229 static int mount_add_target_links(Mount *m) {
230 const char *target;
231 MountParameters *p;
232 Unit *tu;
233 int r;
234 bool noauto, handle, automount, user;
235
236 assert(m);
237
238 if (m->from_fragment)
239 p = &m->parameters_fragment;
240 else if (m->from_etc_fstab)
241 p = &m->parameters_etc_fstab;
242 else
243 return 0;
244
245 noauto = !!mount_test_option(p->options, MNTOPT_NOAUTO);
246 user = mount_test_option(p->options, "user") || mount_test_option(p->options, "users");
247 handle = !!mount_test_option(p->options, "comment=systemd.mount");
248 automount = !!mount_test_option(p->options, "comment=systemd.automount");
249
250 if (mount_test_option(p->options, "_netdev") ||
251 fstype_is_network(p->fstype))
252 target = SPECIAL_REMOTE_FS_TARGET;
253 else
254 target = SPECIAL_LOCAL_FS_TARGET;
255
256 if ((r = manager_load_unit(m->meta.manager, target, NULL, NULL, &tu)) < 0)
257 return r;
258
259 if (automount && m->meta.manager->running_as == MANAGER_SYSTEM) {
260 Unit *am;
261
262 if ((r = unit_load_related_unit(UNIT(m), ".automount", &am)) < 0)
263 return r;
264
265 return unit_add_two_dependencies(tu, UNIT_AFTER, UNIT_WANTS, UNIT(am), true);
266 } else {
267
268 if (!noauto && handle)
269 if (user || m->meta.manager->running_as == MANAGER_SYSTEM)
270 if ((r = unit_add_dependency(tu, UNIT_WANTS, UNIT(m), true)) < 0)
271 return r;
272
273 return unit_add_dependency(UNIT(m), UNIT_BEFORE, tu, true);
274 }
275 }
276
277 static int mount_add_default_dependencies(Mount *m) {
278 int r;
279
280 assert(m);
281
282 if (m->meta.manager->running_as == MANAGER_SYSTEM &&
283 !path_equal(m->where, "/")) {
284
285 if ((r = unit_add_dependency_by_name(UNIT(m), UNIT_AFTER, SPECIAL_FSCK_TARGET, NULL, true)) < 0)
286 return r;
287
288 if ((r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_CONFLICTED_BY, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0)
289 return r;
290 }
291
292 return 0;
293 }
294
295 static int mount_verify(Mount *m) {
296 bool b;
297 char *e;
298 assert(m);
299
300 if (m->meta.load_state != UNIT_LOADED)
301 return 0;
302
303 if (!m->from_etc_fstab && !m->from_fragment && !m->from_proc_self_mountinfo)
304 return -ENOENT;
305
306 if (!(e = unit_name_from_path(m->where, ".mount")))
307 return -ENOMEM;
308
309 b = unit_has_name(UNIT(m), e);
310 free(e);
311
312 if (!b) {
313 log_error("%s's Where setting doesn't match unit name. Refusing.", m->meta.id);
314 return -EINVAL;
315 }
316
317 if (m->meta.fragment_path && !m->parameters_fragment.what) {
318 log_error("%s's What setting is missing. Refusing.", m->meta.id);
319 return -EBADMSG;
320 }
321
322 if (m->exec_context.pam_name && m->exec_context.kill_mode != KILL_CONTROL_GROUP) {
323 log_error("%s has PAM enabled. Kill mode must be set to 'control-group'. Refusing.", m->meta.id);
324 return -EINVAL;
325 }
326
327 return 0;
328 }
329
330 static int mount_load(Unit *u) {
331 Mount *m = MOUNT(u);
332 int r;
333
334 assert(u);
335 assert(u->meta.load_state == UNIT_STUB);
336
337 if ((r = unit_load_fragment_and_dropin_optional(u)) < 0)
338 return r;
339
340 /* This is a new unit? Then let's add in some extras */
341 if (u->meta.load_state == UNIT_LOADED) {
342 const char *what = NULL;
343
344 if (m->meta.fragment_path)
345 m->from_fragment = true;
346
347 if (!m->where)
348 if (!(m->where = unit_name_to_path(u->meta.id)))
349 return -ENOMEM;
350
351 path_kill_slashes(m->where);
352
353 if (!m->meta.description)
354 if ((r = unit_set_description(u, m->where)) < 0)
355 return r;
356
357 if (m->from_fragment && m->parameters_fragment.what)
358 what = m->parameters_fragment.what;
359 else if (m->from_etc_fstab && m->parameters_etc_fstab.what)
360 what = m->parameters_etc_fstab.what;
361 else if (m->from_proc_self_mountinfo && m->parameters_proc_self_mountinfo.what)
362 what = m->parameters_proc_self_mountinfo.what;
363
364 if (what)
365 if ((r = unit_add_node_link(u, what, u->meta.manager->running_as == MANAGER_SYSTEM)) < 0)
366 return r;
367
368 if ((r = mount_add_mount_links(m)) < 0)
369 return r;
370
371 if ((r = mount_add_socket_links(m)) < 0)
372 return r;
373
374 if ((r = mount_add_swap_links(m)) < 0)
375 return r;
376
377 if ((r = mount_add_path_links(m)) < 0)
378 return r;
379
380 if ((r = mount_add_automount_links(m)) < 0)
381 return r;
382
383 if ((r = mount_add_target_links(m)) < 0)
384 return r;
385
386 if ((r = unit_add_default_cgroup(u)) < 0)
387 return r;
388
389 if (m->meta.default_dependencies)
390 if ((r = mount_add_default_dependencies(m)) < 0)
391 return r;
392 }
393
394 return mount_verify(m);
395 }
396
397 static int mount_notify_automount(Mount *m, int status) {
398 Unit *p;
399 int r;
400
401 assert(m);
402
403 if ((r = unit_get_related_unit(UNIT(m), ".automount", &p)) < 0)
404 return r == -ENOENT ? 0 : r;
405
406 return automount_send_ready(AUTOMOUNT(p), status);
407 }
408
409 static void mount_set_state(Mount *m, MountState state) {
410 MountState old_state;
411 assert(m);
412
413 old_state = m->state;
414 m->state = state;
415
416 if (state != MOUNT_MOUNTING &&
417 state != MOUNT_MOUNTING_DONE &&
418 state != MOUNT_REMOUNTING &&
419 state != MOUNT_UNMOUNTING &&
420 state != MOUNT_MOUNTING_SIGTERM &&
421 state != MOUNT_MOUNTING_SIGKILL &&
422 state != MOUNT_UNMOUNTING_SIGTERM &&
423 state != MOUNT_UNMOUNTING_SIGKILL &&
424 state != MOUNT_REMOUNTING_SIGTERM &&
425 state != MOUNT_REMOUNTING_SIGKILL) {
426 unit_unwatch_timer(UNIT(m), &m->timer_watch);
427 mount_unwatch_control_pid(m);
428 m->control_command = NULL;
429 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
430 }
431
432 if (state == MOUNT_MOUNTED ||
433 state == MOUNT_REMOUNTING)
434 mount_notify_automount(m, 0);
435 else if (state == MOUNT_DEAD ||
436 state == MOUNT_UNMOUNTING ||
437 state == MOUNT_MOUNTING_SIGTERM ||
438 state == MOUNT_MOUNTING_SIGKILL ||
439 state == MOUNT_REMOUNTING_SIGTERM ||
440 state == MOUNT_REMOUNTING_SIGKILL ||
441 state == MOUNT_UNMOUNTING_SIGTERM ||
442 state == MOUNT_UNMOUNTING_SIGKILL ||
443 state == MOUNT_MAINTENANCE)
444 mount_notify_automount(m, -ENODEV);
445
446 if (state != old_state)
447 log_debug("%s changed %s -> %s",
448 m->meta.id,
449 mount_state_to_string(old_state),
450 mount_state_to_string(state));
451
452 unit_notify(UNIT(m), state_translation_table[old_state], state_translation_table[state]);
453 }
454
455 static int mount_coldplug(Unit *u) {
456 Mount *m = MOUNT(u);
457 MountState new_state = MOUNT_DEAD;
458 int r;
459
460 assert(m);
461 assert(m->state == MOUNT_DEAD);
462
463 if (m->deserialized_state != m->state)
464 new_state = m->deserialized_state;
465 else if (m->from_proc_self_mountinfo)
466 new_state = MOUNT_MOUNTED;
467
468 if (new_state != m->state) {
469
470 if (new_state == MOUNT_MOUNTING ||
471 new_state == MOUNT_MOUNTING_DONE ||
472 new_state == MOUNT_REMOUNTING ||
473 new_state == MOUNT_UNMOUNTING ||
474 new_state == MOUNT_MOUNTING_SIGTERM ||
475 new_state == MOUNT_MOUNTING_SIGKILL ||
476 new_state == MOUNT_UNMOUNTING_SIGTERM ||
477 new_state == MOUNT_UNMOUNTING_SIGKILL ||
478 new_state == MOUNT_REMOUNTING_SIGTERM ||
479 new_state == MOUNT_REMOUNTING_SIGKILL) {
480
481 if (m->control_pid <= 0)
482 return -EBADMSG;
483
484 if ((r = unit_watch_pid(UNIT(m), m->control_pid)) < 0)
485 return r;
486
487 if ((r = unit_watch_timer(UNIT(m), m->timeout_usec, &m->timer_watch)) < 0)
488 return r;
489 }
490
491 mount_set_state(m, new_state);
492 }
493
494 return 0;
495 }
496
497 static void mount_dump(Unit *u, FILE *f, const char *prefix) {
498 Mount *m = MOUNT(u);
499 MountParameters *p;
500
501 assert(m);
502 assert(f);
503
504 if (m->from_proc_self_mountinfo)
505 p = &m->parameters_proc_self_mountinfo;
506 else if (m->from_fragment)
507 p = &m->parameters_fragment;
508 else
509 p = &m->parameters_etc_fstab;
510
511 fprintf(f,
512 "%sMount State: %s\n"
513 "%sWhere: %s\n"
514 "%sWhat: %s\n"
515 "%sFile System Type: %s\n"
516 "%sOptions: %s\n"
517 "%sFrom /etc/fstab: %s\n"
518 "%sFrom /proc/self/mountinfo: %s\n"
519 "%sFrom fragment: %s\n"
520 "%sDirectoryMode: %04o\n",
521 prefix, mount_state_to_string(m->state),
522 prefix, m->where,
523 prefix, strna(p->what),
524 prefix, strna(p->fstype),
525 prefix, strna(p->options),
526 prefix, yes_no(m->from_etc_fstab),
527 prefix, yes_no(m->from_proc_self_mountinfo),
528 prefix, yes_no(m->from_fragment),
529 prefix, m->directory_mode);
530
531 if (m->control_pid > 0)
532 fprintf(f,
533 "%sControl PID: %lu\n",
534 prefix, (unsigned long) m->control_pid);
535
536 exec_context_dump(&m->exec_context, f, prefix);
537 }
538
539 static int mount_spawn(Mount *m, ExecCommand *c, pid_t *_pid) {
540 pid_t pid;
541 int r;
542
543 assert(m);
544 assert(c);
545 assert(_pid);
546
547 if ((r = unit_watch_timer(UNIT(m), m->timeout_usec, &m->timer_watch)) < 0)
548 goto fail;
549
550 if ((r = exec_spawn(c,
551 NULL,
552 &m->exec_context,
553 NULL, 0,
554 m->meta.manager->environment,
555 true,
556 true,
557 true,
558 m->meta.manager->confirm_spawn,
559 m->meta.cgroup_bondings,
560 &pid)) < 0)
561 goto fail;
562
563 if ((r = unit_watch_pid(UNIT(m), pid)) < 0)
564 /* FIXME: we need to do something here */
565 goto fail;
566
567 *_pid = pid;
568
569 return 0;
570
571 fail:
572 unit_unwatch_timer(UNIT(m), &m->timer_watch);
573
574 return r;
575 }
576
577 static void mount_enter_dead(Mount *m, bool success) {
578 assert(m);
579
580 if (!success)
581 m->failure = true;
582
583 mount_set_state(m, m->failure ? MOUNT_MAINTENANCE : MOUNT_DEAD);
584 }
585
586 static void mount_enter_mounted(Mount *m, bool success) {
587 assert(m);
588
589 if (!success)
590 m->failure = true;
591
592 mount_set_state(m, MOUNT_MOUNTED);
593 }
594
595 static void mount_enter_signal(Mount *m, MountState state, bool success) {
596 int r;
597 bool sent = false;
598
599 assert(m);
600
601 if (!success)
602 m->failure = true;
603
604 if (m->exec_context.kill_mode != KILL_NONE) {
605 int sig = (state == MOUNT_MOUNTING_SIGTERM ||
606 state == MOUNT_UNMOUNTING_SIGTERM ||
607 state == MOUNT_REMOUNTING_SIGTERM) ? m->exec_context.kill_signal : SIGKILL;
608
609 if (m->exec_context.kill_mode == KILL_CONTROL_GROUP) {
610
611 if ((r = cgroup_bonding_kill_list(m->meta.cgroup_bondings, sig)) < 0) {
612 if (r != -EAGAIN && r != -ESRCH)
613 goto fail;
614 } else
615 sent = true;
616 }
617
618 if (!sent && m->control_pid > 0)
619 if (kill(m->exec_context.kill_mode == KILL_PROCESS ?
620 m->control_pid :
621 -m->control_pid, sig) < 0 && errno != ESRCH) {
622
623 r = -errno;
624 goto fail;
625 }
626 }
627
628 if (sent) {
629 if ((r = unit_watch_timer(UNIT(m), m->timeout_usec, &m->timer_watch)) < 0)
630 goto fail;
631
632 mount_set_state(m, state);
633 } else if (state == MOUNT_REMOUNTING_SIGTERM || state == MOUNT_REMOUNTING_SIGKILL)
634 mount_enter_mounted(m, true);
635 else
636 mount_enter_dead(m, true);
637
638 return;
639
640 fail:
641 log_warning("%s failed to kill processes: %s", m->meta.id, strerror(-r));
642
643 if (state == MOUNT_REMOUNTING_SIGTERM || state == MOUNT_REMOUNTING_SIGKILL)
644 mount_enter_mounted(m, false);
645 else
646 mount_enter_dead(m, false);
647 }
648
649 static void mount_enter_unmounting(Mount *m, bool success) {
650 int r;
651
652 assert(m);
653
654 if (!success)
655 m->failure = true;
656
657 m->control_command_id = MOUNT_EXEC_UNMOUNT;
658 m->control_command = m->exec_command + MOUNT_EXEC_UNMOUNT;
659
660 if ((r = exec_command_set(
661 m->control_command,
662 "/bin/umount",
663 m->where,
664 NULL)) < 0)
665 goto fail;
666
667 mount_unwatch_control_pid(m);
668
669 if ((r = mount_spawn(m, m->control_command, &m->control_pid)) < 0)
670 goto fail;
671
672 mount_set_state(m, MOUNT_UNMOUNTING);
673
674 return;
675
676 fail:
677 log_warning("%s failed to run 'umount' task: %s", m->meta.id, strerror(-r));
678 mount_enter_mounted(m, false);
679 }
680
681 static void mount_enter_mounting(Mount *m) {
682 int r;
683
684 assert(m);
685
686 m->control_command_id = MOUNT_EXEC_MOUNT;
687 m->control_command = m->exec_command + MOUNT_EXEC_MOUNT;
688
689 mkdir_p(m->where, m->directory_mode);
690
691 if (m->from_fragment)
692 r = exec_command_set(
693 m->control_command,
694 "/bin/mount",
695 m->parameters_fragment.what,
696 m->where,
697 "-t", m->parameters_fragment.fstype,
698 m->parameters_fragment.options ? "-o" : NULL, m->parameters_fragment.options,
699 NULL);
700 else if (m->from_etc_fstab)
701 r = exec_command_set(
702 m->control_command,
703 "/bin/mount",
704 m->where,
705 NULL);
706 else
707 r = -ENOENT;
708
709 if (r < 0)
710 goto fail;
711
712 mount_unwatch_control_pid(m);
713
714 if ((r = mount_spawn(m, m->control_command, &m->control_pid)) < 0)
715 goto fail;
716
717 mount_set_state(m, MOUNT_MOUNTING);
718
719 return;
720
721 fail:
722 log_warning("%s failed to run 'mount' task: %s", m->meta.id, strerror(-r));
723 mount_enter_dead(m, false);
724 }
725
726 static void mount_enter_mounting_done(Mount *m) {
727 assert(m);
728
729 mount_set_state(m, MOUNT_MOUNTING_DONE);
730 }
731
732 static void mount_enter_remounting(Mount *m, bool success) {
733 int r;
734
735 assert(m);
736
737 if (!success)
738 m->failure = true;
739
740 m->control_command_id = MOUNT_EXEC_REMOUNT;
741 m->control_command = m->exec_command + MOUNT_EXEC_REMOUNT;
742
743 if (m->from_fragment) {
744 char *buf = NULL;
745 const char *o;
746
747 if (m->parameters_fragment.options) {
748 if (!(buf = strappend("remount,", m->parameters_fragment.options))) {
749 r = -ENOMEM;
750 goto fail;
751 }
752
753 o = buf;
754 } else
755 o = "remount";
756
757 r = exec_command_set(
758 m->control_command,
759 "/bin/mount",
760 m->parameters_fragment.what,
761 m->where,
762 "-t", m->parameters_fragment.fstype,
763 "-o", o,
764 NULL);
765
766 free(buf);
767 } else if (m->from_etc_fstab)
768 r = exec_command_set(
769 m->control_command,
770 "/bin/mount",
771 m->where,
772 "-o", "remount",
773 NULL);
774 else
775 r = -ENOENT;
776
777 if (r < 0) {
778 r = -ENOMEM;
779 goto fail;
780 }
781
782 mount_unwatch_control_pid(m);
783
784 if ((r = mount_spawn(m, m->control_command, &m->control_pid)) < 0)
785 goto fail;
786
787 mount_set_state(m, MOUNT_REMOUNTING);
788
789 return;
790
791 fail:
792 log_warning("%s failed to run 'remount' task: %s", m->meta.id, strerror(-r));
793 mount_enter_mounted(m, false);
794 }
795
796 static int mount_start(Unit *u) {
797 Mount *m = MOUNT(u);
798
799 assert(m);
800
801 /* We cannot fulfill this request right now, try again later
802 * please! */
803 if (m->state == MOUNT_UNMOUNTING ||
804 m->state == MOUNT_UNMOUNTING_SIGTERM ||
805 m->state == MOUNT_UNMOUNTING_SIGKILL)
806 return -EAGAIN;
807
808 /* Already on it! */
809 if (m->state == MOUNT_MOUNTING ||
810 m->state == MOUNT_MOUNTING_SIGTERM ||
811 m->state == MOUNT_MOUNTING_SIGKILL)
812 return 0;
813
814 assert(m->state == MOUNT_DEAD || m->state == MOUNT_MAINTENANCE);
815
816 m->failure = false;
817 mount_enter_mounting(m);
818 return 0;
819 }
820
821 static int mount_stop(Unit *u) {
822 Mount *m = MOUNT(u);
823
824 assert(m);
825
826 /* Already on it */
827 if (m->state == MOUNT_UNMOUNTING ||
828 m->state == MOUNT_UNMOUNTING_SIGKILL ||
829 m->state == MOUNT_UNMOUNTING_SIGTERM)
830 return 0;
831
832 assert(m->state == MOUNT_MOUNTING ||
833 m->state == MOUNT_MOUNTING_DONE ||
834 m->state == MOUNT_MOUNTED ||
835 m->state == MOUNT_MOUNTING_SIGTERM ||
836 m->state == MOUNT_MOUNTING_SIGKILL ||
837 m->state == MOUNT_REMOUNTING ||
838 m->state == MOUNT_REMOUNTING_SIGTERM ||
839 m->state == MOUNT_REMOUNTING_SIGKILL);
840
841 mount_enter_unmounting(m, true);
842 return 0;
843 }
844
845 static int mount_reload(Unit *u) {
846 Mount *m = MOUNT(u);
847
848 assert(m);
849
850 if (m->state == MOUNT_MOUNTING_DONE)
851 return -EAGAIN;
852
853 assert(m->state == MOUNT_MOUNTED);
854
855 mount_enter_remounting(m, true);
856 return 0;
857 }
858
859 static int mount_serialize(Unit *u, FILE *f, FDSet *fds) {
860 Mount *m = MOUNT(u);
861
862 assert(m);
863 assert(f);
864 assert(fds);
865
866 unit_serialize_item(u, f, "state", mount_state_to_string(m->state));
867 unit_serialize_item(u, f, "failure", yes_no(m->failure));
868
869 if (m->control_pid > 0)
870 unit_serialize_item_format(u, f, "control-pid", "%lu", (unsigned long) m->control_pid);
871
872 if (m->control_command_id >= 0)
873 unit_serialize_item(u, f, "control-command", mount_exec_command_to_string(m->control_command_id));
874
875 return 0;
876 }
877
878 static int mount_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
879 Mount *m = MOUNT(u);
880
881 assert(u);
882 assert(key);
883 assert(value);
884 assert(fds);
885
886 if (streq(key, "state")) {
887 MountState state;
888
889 if ((state = mount_state_from_string(value)) < 0)
890 log_debug("Failed to parse state value %s", value);
891 else
892 m->deserialized_state = state;
893 } else if (streq(key, "failure")) {
894 int b;
895
896 if ((b = parse_boolean(value)) < 0)
897 log_debug("Failed to parse failure value %s", value);
898 else
899 m->failure = b || m->failure;
900
901 } else if (streq(key, "control-pid")) {
902 pid_t pid;
903
904 if (parse_pid(value, &pid) < 0)
905 log_debug("Failed to parse control-pid value %s", value);
906 else
907 m->control_pid = pid;
908 } else if (streq(key, "control-command")) {
909 MountExecCommand id;
910
911 if ((id = mount_exec_command_from_string(value)) < 0)
912 log_debug("Failed to parse exec-command value %s", value);
913 else {
914 m->control_command_id = id;
915 m->control_command = m->exec_command + id;
916 }
917
918 } else
919 log_debug("Unknown serialization key '%s'", key);
920
921 return 0;
922 }
923
924 static UnitActiveState mount_active_state(Unit *u) {
925 assert(u);
926
927 return state_translation_table[MOUNT(u)->state];
928 }
929
930 static const char *mount_sub_state_to_string(Unit *u) {
931 assert(u);
932
933 return mount_state_to_string(MOUNT(u)->state);
934 }
935
936 static bool mount_check_gc(Unit *u) {
937 Mount *m = MOUNT(u);
938
939 assert(m);
940
941 return m->from_etc_fstab || m->from_proc_self_mountinfo;
942 }
943
944 static void mount_sigchld_event(Unit *u, pid_t pid, int code, int status) {
945 Mount *m = MOUNT(u);
946 bool success;
947
948 assert(m);
949 assert(pid >= 0);
950
951 if (pid != m->control_pid)
952 return;
953
954 m->control_pid = 0;
955
956 success = is_clean_exit(code, status);
957 m->failure = m->failure || !success;
958
959 if (m->control_command) {
960 exec_status_exit(&m->control_command->exec_status, pid, code, status);
961 m->control_command = NULL;
962 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
963 }
964
965 log_full(success ? LOG_DEBUG : LOG_NOTICE,
966 "%s mount process exited, code=%s status=%i", u->meta.id, sigchld_code_to_string(code), status);
967
968 /* Note that mount(8) returning and the kernel sending us a
969 * mount table change event might happen out-of-order. If an
970 * operation succeed we assume the kernel will follow soon too
971 * and already change into the resulting state. If it fails
972 * we check if the kernel still knows about the mount. and
973 * change state accordingly. */
974
975 switch (m->state) {
976
977 case MOUNT_MOUNTING:
978 case MOUNT_MOUNTING_DONE:
979 case MOUNT_MOUNTING_SIGKILL:
980 case MOUNT_MOUNTING_SIGTERM:
981 case MOUNT_REMOUNTING:
982 case MOUNT_REMOUNTING_SIGKILL:
983 case MOUNT_REMOUNTING_SIGTERM:
984
985 if (success)
986 mount_enter_mounted(m, true);
987 else if (m->from_proc_self_mountinfo)
988 mount_enter_mounted(m, false);
989 else
990 mount_enter_dead(m, false);
991 break;
992
993 case MOUNT_UNMOUNTING:
994 case MOUNT_UNMOUNTING_SIGKILL:
995 case MOUNT_UNMOUNTING_SIGTERM:
996
997 if (success)
998 mount_enter_dead(m, true);
999 else if (m->from_proc_self_mountinfo)
1000 mount_enter_mounted(m, false);
1001 else
1002 mount_enter_dead(m, false);
1003 break;
1004
1005 default:
1006 assert_not_reached("Uh, control process died at wrong time.");
1007 }
1008
1009 /* Notify clients about changed exit status */
1010 unit_add_to_dbus_queue(u);
1011 }
1012
1013 static void mount_timer_event(Unit *u, uint64_t elapsed, Watch *w) {
1014 Mount *m = MOUNT(u);
1015
1016 assert(m);
1017 assert(elapsed == 1);
1018 assert(w == &m->timer_watch);
1019
1020 switch (m->state) {
1021
1022 case MOUNT_MOUNTING:
1023 case MOUNT_MOUNTING_DONE:
1024 log_warning("%s mounting timed out. Stopping.", u->meta.id);
1025 mount_enter_signal(m, MOUNT_MOUNTING_SIGTERM, false);
1026 break;
1027
1028 case MOUNT_REMOUNTING:
1029 log_warning("%s remounting timed out. Stopping.", u->meta.id);
1030 mount_enter_signal(m, MOUNT_REMOUNTING_SIGTERM, false);
1031 break;
1032
1033 case MOUNT_UNMOUNTING:
1034 log_warning("%s unmounting timed out. Stopping.", u->meta.id);
1035 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGTERM, false);
1036 break;
1037
1038 case MOUNT_MOUNTING_SIGTERM:
1039 log_warning("%s mounting timed out. Killing.", u->meta.id);
1040 mount_enter_signal(m, MOUNT_MOUNTING_SIGKILL, false);
1041 break;
1042
1043 case MOUNT_REMOUNTING_SIGTERM:
1044 log_warning("%s remounting timed out. Killing.", u->meta.id);
1045 mount_enter_signal(m, MOUNT_REMOUNTING_SIGKILL, false);
1046 break;
1047
1048 case MOUNT_UNMOUNTING_SIGTERM:
1049 log_warning("%s unmounting timed out. Killing.", u->meta.id);
1050 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGKILL, false);
1051 break;
1052
1053 case MOUNT_MOUNTING_SIGKILL:
1054 case MOUNT_REMOUNTING_SIGKILL:
1055 case MOUNT_UNMOUNTING_SIGKILL:
1056 log_warning("%s mount process still around after SIGKILL. Ignoring.", u->meta.id);
1057
1058 if (m->from_proc_self_mountinfo)
1059 mount_enter_mounted(m, false);
1060 else
1061 mount_enter_dead(m, false);
1062 break;
1063
1064 default:
1065 assert_not_reached("Timeout at wrong time.");
1066 }
1067 }
1068
1069 static int mount_add_one(
1070 Manager *m,
1071 const char *what,
1072 const char *where,
1073 const char *options,
1074 const char *fstype,
1075 bool from_proc_self_mountinfo,
1076 bool set_flags) {
1077 int r;
1078 Unit *u;
1079 bool delete;
1080 char *e, *w = NULL, *o = NULL, *f = NULL;
1081 MountParameters *p;
1082
1083 assert(m);
1084 assert(what);
1085 assert(where);
1086 assert(options);
1087 assert(fstype);
1088
1089 assert(!set_flags || from_proc_self_mountinfo);
1090
1091 /* Ignore API mount points. They should never be referenced in
1092 * dependencies ever. */
1093 if (mount_point_is_api(where))
1094 return 0;
1095
1096 if (streq(fstype, "autofs"))
1097 return 0;
1098
1099 /* probably some kind of swap, ignore */
1100 if (!is_path(where))
1101 return 0;
1102
1103 if (!(e = unit_name_from_path(where, ".mount")))
1104 return -ENOMEM;
1105
1106 if (!(u = manager_get_unit(m, e))) {
1107 delete = true;
1108
1109 if (!(u = unit_new(m))) {
1110 free(e);
1111 return -ENOMEM;
1112 }
1113
1114 r = unit_add_name(u, e);
1115 free(e);
1116
1117 if (r < 0)
1118 goto fail;
1119
1120 if (!(MOUNT(u)->where = strdup(where))) {
1121 r = -ENOMEM;
1122 goto fail;
1123 }
1124
1125 unit_add_to_load_queue(u);
1126 } else {
1127 delete = false;
1128 free(e);
1129 }
1130
1131 if (!(w = strdup(what)) ||
1132 !(o = strdup(options)) ||
1133 !(f = strdup(fstype))) {
1134 r = -ENOMEM;
1135 goto fail;
1136 }
1137
1138 if (from_proc_self_mountinfo) {
1139 p = &MOUNT(u)->parameters_proc_self_mountinfo;
1140
1141 if (set_flags) {
1142 MOUNT(u)->is_mounted = true;
1143 MOUNT(u)->just_mounted = !MOUNT(u)->from_proc_self_mountinfo;
1144 MOUNT(u)->just_changed = !streq_ptr(p->options, o);
1145 }
1146
1147 MOUNT(u)->from_proc_self_mountinfo = true;
1148 } else {
1149 p = &MOUNT(u)->parameters_etc_fstab;
1150 MOUNT(u)->from_etc_fstab = true;
1151 }
1152
1153 free(p->what);
1154 p->what = w;
1155
1156 free(p->options);
1157 p->options = o;
1158
1159 free(p->fstype);
1160 p->fstype = f;
1161
1162 unit_add_to_dbus_queue(u);
1163
1164 return 0;
1165
1166 fail:
1167 free(w);
1168 free(o);
1169 free(f);
1170
1171 if (delete && u)
1172 unit_free(u);
1173
1174 return r;
1175 }
1176
1177 static char *fstab_node_to_udev_node(char *p) {
1178 char *dn, *t;
1179 int r;
1180
1181 /* FIXME: to follow udev's logic 100% we need to leave valid
1182 * UTF8 chars unescaped */
1183
1184 if (startswith(p, "LABEL=")) {
1185
1186 if (!(t = xescape(p+6, "/ ")))
1187 return NULL;
1188
1189 r = asprintf(&dn, "/dev/disk/by-label/%s", t);
1190 free(t);
1191
1192 if (r < 0)
1193 return NULL;
1194
1195 return dn;
1196 }
1197
1198 if (startswith(p, "UUID=")) {
1199
1200 if (!(t = xescape(p+5, "/ ")))
1201 return NULL;
1202
1203 r = asprintf(&dn, "/dev/disk/by-uuid/%s", ascii_strlower(t));
1204 free(t);
1205
1206 if (r < 0)
1207 return NULL;
1208
1209 return dn;
1210 }
1211
1212 return strdup(p);
1213 }
1214
1215 static int mount_find_pri(char *options) {
1216 char *end, *pri;
1217 unsigned long r;
1218
1219 if (!(pri = mount_test_option(options, "pri=")))
1220 return 0;
1221
1222 pri += 4;
1223
1224 errno = 0;
1225 r = strtoul(pri, &end, 10);
1226
1227 if (errno != 0)
1228 return -errno;
1229
1230 if (end == pri || (*end != ',' && *end != 0))
1231 return -EINVAL;
1232
1233 return (int) r;
1234 }
1235
1236 static int mount_load_etc_fstab(Manager *m) {
1237 FILE *f;
1238 int r;
1239 struct mntent* me;
1240
1241 assert(m);
1242
1243 errno = 0;
1244 if (!(f = setmntent("/etc/fstab", "r")))
1245 return -errno;
1246
1247 while ((me = getmntent(f))) {
1248 char *where, *what;
1249
1250 if (!(what = fstab_node_to_udev_node(me->mnt_fsname))) {
1251 r = -ENOMEM;
1252 goto finish;
1253 }
1254
1255 if (!(where = strdup(me->mnt_dir))) {
1256 free(what);
1257 r = -ENOMEM;
1258 goto finish;
1259 }
1260
1261 if (what[0] == '/')
1262 path_kill_slashes(what);
1263
1264 if (where[0] == '/')
1265 path_kill_slashes(where);
1266
1267 if (streq(me->mnt_type, "swap")) {
1268 int pri;
1269
1270 if ((pri = mount_find_pri(me->mnt_opts)) < 0)
1271 r = pri;
1272 else
1273 r = swap_add_one(m,
1274 what,
1275 pri,
1276 !!mount_test_option(me->mnt_opts, MNTOPT_NOAUTO),
1277 !!mount_test_option(me->mnt_opts, "comment=systemd.swapon"),
1278 false);
1279 } else
1280 r = mount_add_one(m, what, where, me->mnt_opts, me->mnt_type, false, false);
1281
1282 free(what);
1283 free(where);
1284
1285 if (r < 0)
1286 goto finish;
1287 }
1288
1289 r = 0;
1290 finish:
1291
1292 endmntent(f);
1293 return r;
1294 }
1295
1296 static int mount_load_proc_self_mountinfo(Manager *m, bool set_flags) {
1297 int r;
1298 char *device, *path, *options, *options2, *fstype, *d, *p, *o;
1299
1300 assert(m);
1301
1302 rewind(m->proc_self_mountinfo);
1303
1304 for (;;) {
1305 int k;
1306
1307 device = path = options = options2 = fstype = d = p = o = NULL;
1308
1309 if ((k = fscanf(m->proc_self_mountinfo,
1310 "%*s " /* (1) mount id */
1311 "%*s " /* (2) parent id */
1312 "%*s " /* (3) major:minor */
1313 "%*s " /* (4) root */
1314 "%ms " /* (5) mount point */
1315 "%ms" /* (6) mount options */
1316 "%*[^-]" /* (7) optional fields */
1317 "- " /* (8) seperator */
1318 "%ms " /* (9) file system type */
1319 "%ms" /* (10) mount source */
1320 "%ms" /* (11) mount options 2 */
1321 "%*[^\n]", /* some rubbish at the end */
1322 &path,
1323 &options,
1324 &fstype,
1325 &device,
1326 &options2)) != 5) {
1327
1328 if (k == EOF)
1329 break;
1330
1331 r = -EBADMSG;
1332 goto finish;
1333 }
1334
1335 if (asprintf(&o, "%s,%s", options, options2) < 0) {
1336 r = -ENOMEM;
1337 goto finish;
1338 }
1339
1340 if (!(d = cunescape(device)) ||
1341 !(p = cunescape(path))) {
1342 r = -ENOMEM;
1343 goto finish;
1344 }
1345
1346 if ((r = mount_add_one(m, d, p, o, fstype, true, set_flags)) < 0)
1347 goto finish;
1348
1349 free(device);
1350 free(path);
1351 free(options);
1352 free(options2);
1353 free(fstype);
1354 free(d);
1355 free(p);
1356 free(o);
1357 }
1358
1359 r = 0;
1360
1361 finish:
1362 free(device);
1363 free(path);
1364 free(options);
1365 free(options2);
1366 free(fstype);
1367 free(d);
1368 free(p);
1369 free(o);
1370
1371 return r;
1372 }
1373
1374 static void mount_shutdown(Manager *m) {
1375 assert(m);
1376
1377 if (m->proc_self_mountinfo) {
1378 fclose(m->proc_self_mountinfo);
1379 m->proc_self_mountinfo = NULL;
1380 }
1381 }
1382
1383 static int mount_enumerate(Manager *m) {
1384 int r;
1385 struct epoll_event ev;
1386 assert(m);
1387
1388 if (!m->proc_self_mountinfo) {
1389 if (!(m->proc_self_mountinfo = fopen("/proc/self/mountinfo", "re")))
1390 return -errno;
1391
1392 m->mount_watch.type = WATCH_MOUNT;
1393 m->mount_watch.fd = fileno(m->proc_self_mountinfo);
1394
1395 zero(ev);
1396 ev.events = EPOLLERR;
1397 ev.data.ptr = &m->mount_watch;
1398
1399 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->mount_watch.fd, &ev) < 0)
1400 return -errno;
1401 }
1402
1403 if ((r = mount_load_etc_fstab(m)) < 0)
1404 goto fail;
1405
1406 if ((r = mount_load_proc_self_mountinfo(m, false)) < 0)
1407 goto fail;
1408
1409 return 0;
1410
1411 fail:
1412 mount_shutdown(m);
1413 return r;
1414 }
1415
1416 void mount_fd_event(Manager *m, int events) {
1417 Meta *meta;
1418 int r;
1419
1420 assert(m);
1421 assert(events == EPOLLERR);
1422
1423 /* The manager calls this for every fd event happening on the
1424 * /proc/self/mountinfo file, which informs us about mounting
1425 * table changes */
1426
1427 if ((r = mount_load_proc_self_mountinfo(m, true)) < 0) {
1428 log_error("Failed to reread /proc/self/mountinfo: %s", strerror(-r));
1429
1430 /* Reset flags, just in case, for later calls */
1431 LIST_FOREACH(units_per_type, meta, m->units_per_type[UNIT_MOUNT]) {
1432 Mount *mount = (Mount*) meta;
1433
1434 mount->is_mounted = mount->just_mounted = mount->just_changed = false;
1435 }
1436
1437 return;
1438 }
1439
1440 manager_dispatch_load_queue(m);
1441
1442 LIST_FOREACH(units_per_type, meta, m->units_per_type[UNIT_MOUNT]) {
1443 Mount *mount = (Mount*) meta;
1444
1445 if (!mount->is_mounted) {
1446 /* This has just been unmounted. */
1447
1448 mount->from_proc_self_mountinfo = false;
1449
1450 switch (mount->state) {
1451
1452 case MOUNT_MOUNTED:
1453 mount_enter_dead(mount, true);
1454 break;
1455
1456 default:
1457 mount_set_state(mount, mount->state);
1458 break;
1459
1460 }
1461
1462 } else if (mount->just_mounted || mount->just_changed) {
1463
1464 /* New or changed entrymount */
1465
1466 switch (mount->state) {
1467
1468 case MOUNT_DEAD:
1469 case MOUNT_MAINTENANCE:
1470 mount_enter_mounted(mount, true);
1471 break;
1472
1473 case MOUNT_MOUNTING:
1474 mount_enter_mounting_done(mount);
1475 break;
1476
1477 default:
1478 /* Nothing really changed, but let's
1479 * issue an notification call
1480 * nonetheless, in case somebody is
1481 * waiting for this. (e.g. file system
1482 * ro/rw remounts.) */
1483 mount_set_state(mount, mount->state);
1484 break;
1485 }
1486 }
1487
1488 /* Reset the flags for later calls */
1489 mount->is_mounted = mount->just_mounted = mount->just_changed = false;
1490 }
1491 }
1492
1493 static void mount_reset_maintenance(Unit *u) {
1494 Mount *m = MOUNT(u);
1495
1496 assert(m);
1497
1498 if (m->state == MOUNT_MAINTENANCE)
1499 mount_set_state(m, MOUNT_DEAD);
1500
1501 m->failure = false;
1502 }
1503
1504 static const char* const mount_state_table[_MOUNT_STATE_MAX] = {
1505 [MOUNT_DEAD] = "dead",
1506 [MOUNT_MOUNTING] = "mounting",
1507 [MOUNT_MOUNTING_DONE] = "mounting-done",
1508 [MOUNT_MOUNTED] = "mounted",
1509 [MOUNT_REMOUNTING] = "remounting",
1510 [MOUNT_UNMOUNTING] = "unmounting",
1511 [MOUNT_MOUNTING_SIGTERM] = "mounting-sigterm",
1512 [MOUNT_MOUNTING_SIGKILL] = "mounting-sigkill",
1513 [MOUNT_REMOUNTING_SIGTERM] = "remounting-sigterm",
1514 [MOUNT_REMOUNTING_SIGKILL] = "remounting-sigkill",
1515 [MOUNT_UNMOUNTING_SIGTERM] = "unmounting-sigterm",
1516 [MOUNT_UNMOUNTING_SIGKILL] = "unmounting-sigkill",
1517 [MOUNT_MAINTENANCE] = "maintenance"
1518 };
1519
1520 DEFINE_STRING_TABLE_LOOKUP(mount_state, MountState);
1521
1522 static const char* const mount_exec_command_table[_MOUNT_EXEC_COMMAND_MAX] = {
1523 [MOUNT_EXEC_MOUNT] = "ExecMount",
1524 [MOUNT_EXEC_UNMOUNT] = "ExecUnmount",
1525 [MOUNT_EXEC_REMOUNT] = "ExecRemount",
1526 };
1527
1528 DEFINE_STRING_TABLE_LOOKUP(mount_exec_command, MountExecCommand);
1529
1530 const UnitVTable mount_vtable = {
1531 .suffix = ".mount",
1532
1533 .no_alias = true,
1534 .no_instances = true,
1535 .no_isolate = true,
1536 .show_status = true,
1537
1538 .init = mount_init,
1539 .load = mount_load,
1540 .done = mount_done,
1541
1542 .coldplug = mount_coldplug,
1543
1544 .dump = mount_dump,
1545
1546 .start = mount_start,
1547 .stop = mount_stop,
1548 .reload = mount_reload,
1549
1550 .serialize = mount_serialize,
1551 .deserialize_item = mount_deserialize_item,
1552
1553 .active_state = mount_active_state,
1554 .sub_state_to_string = mount_sub_state_to_string,
1555
1556 .check_gc = mount_check_gc,
1557
1558 .sigchld_event = mount_sigchld_event,
1559 .timer_event = mount_timer_event,
1560
1561 .reset_maintenance = mount_reset_maintenance,
1562
1563 .bus_interface = "org.freedesktop.systemd1.Mount",
1564 .bus_message_handler = bus_mount_message_handler,
1565 .bus_invalidating_properties = bus_mount_invalidating_properties,
1566
1567 .enumerate = mount_enumerate,
1568 .shutdown = mount_shutdown
1569 };