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