]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/mount.c
job: after converting a job from restart to start readd it to run queue
[thirdparty/systemd.git] / src / mount.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
5cb5a6ff 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 36#include "dbus-mount.h"
514f4ef5 37#include "special.h"
8a0867d6 38#include "bus-errors.h"
9a57c629 39#include "exit-status.h"
f6a6225e 40#include "def.h"
5cb5a6ff 41
f50e0a01
LP
42static const UnitActiveState state_translation_table[_MOUNT_STATE_MAX] = {
43 [MOUNT_DEAD] = UNIT_INACTIVE,
44 [MOUNT_MOUNTING] = UNIT_ACTIVATING,
e537352b 45 [MOUNT_MOUNTING_DONE] = UNIT_ACTIVE,
f50e0a01 46 [MOUNT_MOUNTED] = UNIT_ACTIVE,
032ff4af 47 [MOUNT_REMOUNTING] = UNIT_RELOADING,
f50e0a01 48 [MOUNT_UNMOUNTING] = UNIT_DEACTIVATING,
e537352b
LP
49 [MOUNT_MOUNTING_SIGTERM] = UNIT_DEACTIVATING,
50 [MOUNT_MOUNTING_SIGKILL] = UNIT_DEACTIVATING,
032ff4af
LP
51 [MOUNT_REMOUNTING_SIGTERM] = UNIT_RELOADING,
52 [MOUNT_REMOUNTING_SIGKILL] = UNIT_RELOADING,
e537352b
LP
53 [MOUNT_UNMOUNTING_SIGTERM] = UNIT_DEACTIVATING,
54 [MOUNT_UNMOUNTING_SIGKILL] = UNIT_DEACTIVATING,
fdf20a31 55 [MOUNT_FAILED] = UNIT_FAILED
f50e0a01 56};
5cb5a6ff 57
a16e1123
LP
58static void mount_init(Unit *u) {
59 Mount *m = MOUNT(u);
5cb5a6ff 60
a16e1123
LP
61 assert(u);
62 assert(u->meta.load_state == UNIT_STUB);
63
64 m->timeout_usec = DEFAULT_TIMEOUT_USEC;
3e5235b0
LP
65 m->directory_mode = 0755;
66
c3686083 67 exec_context_init(&m->exec_context);
d893269d
LP
68
69 /* The stdio/kmsg bridge socket is on /, in order to avoid a
70 * dep loop, don't use kmsg logging for -.mount */
71 if (!unit_has_name(u, "-.mount"))
72 m->exec_context.std_output = EXEC_OUTPUT_KMSG;
c3686083 73
a16e1123
LP
74 /* We need to make sure that /bin/mount is always called in
75 * the same process group as us, so that the autofs kernel
76 * side doesn't send us another mount request while we are
77 * already trying to comply its last one. */
74922904 78 m->exec_context.same_pgrp = true;
8d567588 79
a16e1123
LP
80 m->timer_watch.type = WATCH_INVALID;
81
82 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
c8f4d764
LP
83
84 m->meta.ignore_on_isolate = true;
8d567588
LP
85}
86
a16e1123 87static void mount_unwatch_control_pid(Mount *m) {
5e94833f
LP
88 assert(m);
89
90 if (m->control_pid <= 0)
91 return;
92
93 unit_unwatch_pid(UNIT(m), m->control_pid);
94 m->control_pid = 0;
95}
96
e537352b
LP
97static void mount_parameters_done(MountParameters *p) {
98 assert(p);
99
100 free(p->what);
101 free(p->options);
102 free(p->fstype);
103
104 p->what = p->options = p->fstype = NULL;
105}
106
87f0e418 107static void mount_done(Unit *u) {
ef734fd6 108 Mount *m = MOUNT(u);
e0fa621b 109 Meta *other;
034c6ed7 110
ef734fd6 111 assert(m);
034c6ed7 112
e537352b
LP
113 free(m->where);
114 m->where = NULL;
f50e0a01 115
e0fa621b 116 /* Try to detach us from the automount unit if there is any */
ab5c3e3f 117 LIST_FOREACH(units_by_type, other, m->meta.manager->units_by_type[UNIT_AUTOMOUNT]) {
e0fa621b
LP
118 Automount *a = (Automount*) other;
119
120 if (a->mount == m)
121 a->mount = NULL;
122 }
123
e537352b
LP
124 mount_parameters_done(&m->parameters_etc_fstab);
125 mount_parameters_done(&m->parameters_proc_self_mountinfo);
126 mount_parameters_done(&m->parameters_fragment);
ef734fd6 127
e537352b
LP
128 exec_context_done(&m->exec_context);
129 exec_command_done_array(m->exec_command, _MOUNT_EXEC_COMMAND_MAX);
130 m->control_command = NULL;
f50e0a01 131
a16e1123 132 mount_unwatch_control_pid(m);
f50e0a01 133
e537352b 134 unit_unwatch_timer(u, &m->timer_watch);
f50e0a01
LP
135}
136
cb39ed3f
LP
137static MountParameters* get_mount_parameters_configured(Mount *m) {
138 assert(m);
139
140 if (m->from_fragment)
141 return &m->parameters_fragment;
142 else if (m->from_etc_fstab)
143 return &m->parameters_etc_fstab;
144
145 return NULL;
146}
147
148static MountParameters* get_mount_parameters(Mount *m) {
149 assert(m);
150
151 if (m->from_proc_self_mountinfo)
152 return &m->parameters_proc_self_mountinfo;
153
154 return get_mount_parameters_configured(m);
155}
156
6e2ef85b
LP
157static int mount_add_mount_links(Mount *m) {
158 Meta *other;
b08d03ff 159 int r;
5c78d8e2 160 MountParameters *pm;
b08d03ff 161
6e2ef85b 162 assert(m);
b08d03ff 163
cb39ed3f 164 pm = get_mount_parameters_configured(m);
5c78d8e2 165
6e2ef85b
LP
166 /* Adds in links to other mount points that might lie below or
167 * above us in the hierarchy */
e537352b 168
ab5c3e3f 169 LIST_FOREACH(units_by_type, other, m->meta.manager->units_by_type[UNIT_MOUNT]) {
6e2ef85b 170 Mount *n = (Mount*) other;
5c78d8e2 171 MountParameters *pn;
07b0b134 172
6e2ef85b
LP
173 if (n == m)
174 continue;
b08d03ff 175
6e2ef85b
LP
176 if (n->meta.load_state != UNIT_LOADED)
177 continue;
b08d03ff 178
cb39ed3f 179 pn = get_mount_parameters_configured(n);
5c78d8e2 180
6e2ef85b 181 if (path_startswith(m->where, n->where)) {
b08d03ff 182
6e2ef85b
LP
183 if ((r = unit_add_dependency(UNIT(m), UNIT_AFTER, UNIT(n), true)) < 0)
184 return r;
b08d03ff 185
cb39ed3f 186 if (pn)
6e2ef85b
LP
187 if ((r = unit_add_dependency(UNIT(m), UNIT_REQUIRES, UNIT(n), true)) < 0)
188 return r;
b08d03ff 189
6e2ef85b 190 } else if (path_startswith(n->where, m->where)) {
b08d03ff 191
5c78d8e2
LP
192 if ((r = unit_add_dependency(UNIT(n), UNIT_AFTER, UNIT(m), true)) < 0)
193 return r;
194
cb39ed3f 195 if (pm)
5c78d8e2
LP
196 if ((r = unit_add_dependency(UNIT(n), UNIT_REQUIRES, UNIT(m), true)) < 0)
197 return r;
198
199 } else if (pm && path_startswith(pm->what, n->where)) {
200
201 if ((r = unit_add_dependency(UNIT(m), UNIT_AFTER, UNIT(n), true)) < 0)
6e2ef85b
LP
202 return r;
203
cb39ed3f
LP
204 if ((r = unit_add_dependency(UNIT(m), UNIT_REQUIRES, UNIT(n), true)) < 0)
205 return r;
5c78d8e2
LP
206
207 } else if (pn && path_startswith(pn->what, m->where)) {
208
209 if ((r = unit_add_dependency(UNIT(n), UNIT_AFTER, UNIT(m), true)) < 0)
210 return r;
211
cb39ed3f
LP
212 if ((r = unit_add_dependency(UNIT(n), UNIT_REQUIRES, UNIT(m), true)) < 0)
213 return r;
6e2ef85b
LP
214 }
215 }
b08d03ff
LP
216
217 return 0;
218}
219
6e2ef85b 220static int mount_add_swap_links(Mount *m) {
ef734fd6 221 Meta *other;
b08d03ff
LP
222 int r;
223
6e2ef85b 224 assert(m);
b08d03ff 225
ab5c3e3f 226 LIST_FOREACH(units_by_type, other, m->meta.manager->units_by_type[UNIT_SWAP])
6e2ef85b
LP
227 if ((r = swap_add_one_mount_link((Swap*) other, m)) < 0)
228 return r;
b08d03ff 229
6e2ef85b
LP
230 return 0;
231}
b08d03ff 232
01f78473
LP
233static int mount_add_path_links(Mount *m) {
234 Meta *other;
235 int r;
236
237 assert(m);
238
ab5c3e3f 239 LIST_FOREACH(units_by_type, other, m->meta.manager->units_by_type[UNIT_PATH])
01f78473
LP
240 if ((r = path_add_one_mount_link((Path*) other, m)) < 0)
241 return r;
242
243 return 0;
244}
245
6e2ef85b
LP
246static int mount_add_automount_links(Mount *m) {
247 Meta *other;
248 int r;
e537352b 249
6e2ef85b 250 assert(m);
b08d03ff 251
ab5c3e3f 252 LIST_FOREACH(units_by_type, other, m->meta.manager->units_by_type[UNIT_AUTOMOUNT])
6e2ef85b
LP
253 if ((r = automount_add_one_mount_link((Automount*) other, m)) < 0)
254 return r;
b08d03ff 255
6e2ef85b
LP
256 return 0;
257}
b08d03ff 258
6e2ef85b
LP
259static int mount_add_socket_links(Mount *m) {
260 Meta *other;
261 int r;
b08d03ff 262
6e2ef85b 263 assert(m);
b08d03ff 264
ab5c3e3f 265 LIST_FOREACH(units_by_type, other, m->meta.manager->units_by_type[UNIT_SOCKET])
6e2ef85b
LP
266 if ((r = socket_add_one_mount_link((Socket*) other, m)) < 0)
267 return r;
b08d03ff
LP
268
269 return 0;
270}
271
07b0b134 272static char* mount_test_option(const char *haystack, const char *needle) {
e537352b
LP
273 struct mntent me;
274
275 assert(needle);
276
277 /* Like glibc's hasmntopt(), but works on a string, not a
278 * struct mntent */
279
280 if (!haystack)
281 return false;
282
283 zero(me);
284 me.mnt_opts = (char*) haystack;
285
07b0b134 286 return hasmntopt(&me, needle);
e537352b
LP
287}
288
cb39ed3f
LP
289static bool mount_is_network(MountParameters *p) {
290 assert(p);
291
292 if (mount_test_option(p->options, "_netdev"))
293 return true;
294
295 if (p->fstype && fstype_is_network(p->fstype))
296 return true;
297
298 return false;
299}
300
301static bool mount_is_bind(MountParameters *p) {
302 assert(p);
303
304 if (mount_test_option(p->options, "bind"))
305 return true;
306
307 if (p->fstype && streq(p->fstype, "bind"))
308 return true;
309
310 return false;
311}
312
313static bool needs_quota(MountParameters *p) {
314 assert(p);
315
316 if (mount_is_network(p))
317 return false;
318
319 if (mount_is_bind(p))
320 return false;
321
322 return mount_test_option(p->options, "usrquota") ||
323 mount_test_option(p->options, "grpquota");
324}
325
155da457 326static int mount_add_fstab_links(Mount *m) {
a55da3cd 327 const char *target, *after = NULL;
e537352b 328 MountParameters *p;
a16e1123 329 Unit *tu;
e537352b 330 int r;
d9143006 331 bool noauto, nofail, handle, automount;
e537352b
LP
332
333 assert(m);
334
155da457
LP
335 if (m->meta.manager->running_as != MANAGER_SYSTEM)
336 return 0;
337
cb39ed3f 338 if (!(p = get_mount_parameters_configured(m)))
e537352b
LP
339 return 0;
340
155da457
LP
341 if (p != &m->parameters_etc_fstab)
342 return 0;
343
344 noauto = !!mount_test_option(p->options, "noauto");
d9143006 345 nofail = !!mount_test_option(p->options, "nofail");
155da457
LP
346 automount =
347 mount_test_option(p->options, "comment=systemd.automount") ||
348 mount_test_option(p->options, "x-systemd-automount");
d4a7e06d 349 handle =
155da457 350 automount ||
d4a7e06d
LP
351 mount_test_option(p->options, "comment=systemd.mount") ||
352 mount_test_option(p->options, "x-systemd-mount") ||
d3689161 353 m->meta.manager->mount_auto;
e537352b 354
cb39ed3f 355 if (mount_is_network(p)) {
e537352b 356 target = SPECIAL_REMOTE_FS_TARGET;
155da457 357 after = SPECIAL_NETWORK_TARGET;
a55da3cd 358 } else
e537352b
LP
359 target = SPECIAL_LOCAL_FS_TARGET;
360
155da457
LP
361 if (!path_equal(m->where, "/"))
362 if ((r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0)
363 return r;
364
398ef8ba 365 if ((r = manager_load_unit(m->meta.manager, target, NULL, NULL, &tu)) < 0)
e537352b
LP
366 return r;
367
a55da3cd 368 if (after)
50483512 369 if ((r = unit_add_dependency_by_name(UNIT(m), UNIT_AFTER, after, NULL, true)) < 0)
a55da3cd
LP
370 return r;
371
155da457 372 if (automount) {
a16e1123
LP
373 Unit *am;
374
375 if ((r = unit_load_related_unit(UNIT(m), ".automount", &am)) < 0)
9fcc065a 376 return r;
e537352b 377
155da457
LP
378 /* If auto is configured as well also pull in the
379 * mount right-away, but don't rely on it. */
380 if (!noauto) /* automount + auto */
381 if ((r = unit_add_dependency(tu, UNIT_WANTS, UNIT(m), true)) < 0)
382 return r;
383
384 /* Install automount unit */
385 if (!nofail) /* automount + fail */
386 return unit_add_two_dependencies(tu, UNIT_AFTER, UNIT_REQUIRES, UNIT(am), true);
387 else /* automount + nofail */
388 return unit_add_two_dependencies(tu, UNIT_AFTER, UNIT_WANTS, UNIT(am), true);
389
390 } else if (handle && !noauto) {
a16e1123 391
81bf310e
LP
392 /* Automatically add mount points that aren't natively
393 * configured to local-fs.target */
a16e1123 394
155da457
LP
395 if (!nofail) /* auto + fail */
396 return unit_add_two_dependencies(tu, UNIT_AFTER, UNIT_REQUIRES, UNIT(m), true);
397 else /* auto + nofail */
398 return unit_add_dependency(tu, UNIT_WANTS, UNIT(m), true);
a16e1123 399 }
155da457
LP
400
401 return 0;
e537352b
LP
402}
403
173a8d04
LP
404static int mount_add_device_links(Mount *m) {
405 MountParameters *p;
9fff8a1f 406 int r;
173a8d04
LP
407
408 assert(m);
409
cb39ed3f 410 if (!(p = get_mount_parameters_configured(m)))
173a8d04
LP
411 return 0;
412
9fff8a1f 413 if (!p->what)
173a8d04 414 return 0;
5c78d8e2 415
155da457
LP
416 if (!mount_is_bind(p) &&
417 !path_equal(m->where, "/") &&
418 p == &m->parameters_etc_fstab) {
9fff8a1f 419 bool nofail, noauto;
173a8d04 420
155da457 421 noauto = !!mount_test_option(p->options, "noauto");
9fff8a1f
LP
422 nofail = !!mount_test_option(p->options, "nofail");
423
424 if ((r = unit_add_node_link(UNIT(m), p->what,
425 !noauto && nofail &&
426 UNIT(m)->meta.manager->running_as == MANAGER_SYSTEM)) < 0)
427 return r;
428 }
429
491ad5dc 430 if (p->passno > 0 &&
ff2e0f05 431 !mount_is_bind(p) &&
b65a25f2
LP
432 UNIT(m)->meta.manager->running_as == MANAGER_SYSTEM &&
433 !path_equal(m->where, "/")) {
9fff8a1f
LP
434 char *name;
435 Unit *fsck;
436 /* Let's add in the fsck service */
173a8d04 437
a9e1f5ec 438 /* aka SPECIAL_FSCK_SERVICE */
9fff8a1f
LP
439 if (!(name = unit_name_from_path_instance("fsck", p->what, ".service")))
440 return -ENOMEM;
441
442 if ((r = manager_load_unit_prepare(m->meta.manager, name, NULL, NULL, &fsck)) < 0) {
443 log_warning("Failed to prepare unit %s: %s", name, strerror(-r));
444 free(name);
445 return r;
446 }
447
448 free(name);
449
450 SERVICE(fsck)->fsck_passno = p->passno;
451
0355825f 452 if ((r = unit_add_two_dependencies(UNIT(m), UNIT_AFTER, UNIT_REQUIRES, fsck, true)) < 0)
9fff8a1f
LP
453 return r;
454 }
455
456 return 0;
173a8d04
LP
457}
458
2edd4434
LP
459static int mount_add_default_dependencies(Mount *m) {
460 int r;
461
462 assert(m);
463
75d287d3
LP
464 if (m->meta.manager->running_as == MANAGER_SYSTEM &&
465 !path_equal(m->where, "/")) {
0c380104 466 MountParameters *p;
2edd4434 467
cb39ed3f
LP
468 p = get_mount_parameters_configured(m);
469
470 if (p && needs_quota(p)) {
0c380104
AB
471 if ((r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_WANTS, SPECIAL_QUOTACHECK_SERVICE, NULL, true)) < 0 ||
472 (r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_WANTS, SPECIAL_QUOTAON_SERVICE, NULL, true)) < 0)
473 return r;
cb39ed3f 474 }
2edd4434 475
ead8e478 476 if ((r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0)
75d287d3 477 return r;
2edd4434
LP
478 }
479
480 return 0;
481}
482
f4c05147 483static int mount_fix_timeouts(Mount *m) {
8024c3a7
LP
484 MountParameters *p;
485 const char *timeout = NULL;
486 Unit *other;
487 Iterator i;
488 usec_t u;
f4c05147
LP
489 char *t;
490 int r;
8024c3a7
LP
491
492 assert(m);
493
494 if (!(p = get_mount_parameters_configured(m)))
f4c05147 495 return 0;
8024c3a7
LP
496
497 /* Allow configuration how long we wait for a device that
498 * backs a mount point to show up. This is useful to support
499 * endless device timeouts for devices that show up only after
500 * user input, like crypto devices. */
501
502 if ((timeout = mount_test_option(p->options, "comment=systemd.device-timeout")))
503 timeout += 31;
504 else if ((timeout = mount_test_option(p->options, "x-systemd-device-timeout")))
505 timeout += 25;
506 else
f4c05147
LP
507 return 0;
508
509 t = strndup(timeout, strcspn(timeout, ",;" WHITESPACE));
510 if (!t)
511 return -ENOMEM;
8024c3a7 512
f4c05147
LP
513 r = parse_usec(t, &u);
514 free(t);
515
516 if (r < 0) {
8024c3a7 517 log_warning("Failed to parse timeout for %s, ignoring: %s", m->where, timeout);
f4c05147 518 return r;
8024c3a7
LP
519 }
520
521 SET_FOREACH(other, m->meta.dependencies[UNIT_AFTER], i) {
522 if (other->meta.type != UNIT_DEVICE)
523 continue;
524
525 other->meta.job_timeout = u;
526 }
f4c05147
LP
527
528 return 0;
8024c3a7
LP
529}
530
8d567588
LP
531static int mount_verify(Mount *m) {
532 bool b;
533 char *e;
534 assert(m);
535
8cbef760 536 if (m->meta.load_state != UNIT_LOADED)
8d567588
LP
537 return 0;
538
8cbef760
LP
539 if (!m->from_etc_fstab && !m->from_fragment && !m->from_proc_self_mountinfo)
540 return -ENOENT;
541
a16e1123 542 if (!(e = unit_name_from_path(m->where, ".mount")))
8d567588
LP
543 return -ENOMEM;
544
545 b = unit_has_name(UNIT(m), e);
546 free(e);
547
548 if (!b) {
4cd1fbcc 549 log_error("%s's Where setting doesn't match unit name. Refusing.", m->meta.id);
8d567588
LP
550 return -EINVAL;
551 }
552
33ff02c9
LP
553 if (mount_point_is_api(m->where) || mount_point_ignore(m->where)) {
554 log_error("Cannot create mount unit for API file system %s. Refusing.", m->where);
555 return -EINVAL;
556 }
557
4e85aff4 558 if (m->meta.fragment_path && !m->parameters_fragment.what) {
4cd1fbcc 559 log_error("%s's What setting is missing. Refusing.", m->meta.id);
4e85aff4
LP
560 return -EBADMSG;
561 }
562
2e22afe9 563 if (m->exec_context.pam_name && m->exec_context.kill_mode != KILL_CONTROL_GROUP) {
4d0e5dbd
LP
564 log_error("%s has PAM enabled. Kill mode must be set to 'control-group'. Refusing.", m->meta.id);
565 return -EINVAL;
566 }
567
8d567588
LP
568 return 0;
569}
570
e537352b
LP
571static int mount_load(Unit *u) {
572 Mount *m = MOUNT(u);
573 int r;
574
575 assert(u);
576 assert(u->meta.load_state == UNIT_STUB);
577
578 if ((r = unit_load_fragment_and_dropin_optional(u)) < 0)
579 return r;
580
581 /* This is a new unit? Then let's add in some extras */
582 if (u->meta.load_state == UNIT_LOADED) {
27abbe82
LP
583 if ((r = unit_add_exec_dependencies(u, &m->exec_context)) < 0)
584 return r;
585
4e85aff4
LP
586 if (m->meta.fragment_path)
587 m->from_fragment = true;
155da457
LP
588 else if (m->from_etc_fstab)
589 m->meta.default_dependencies = false;
e537352b 590
a16e1123
LP
591 if (!m->where)
592 if (!(m->where = unit_name_to_path(u->meta.id)))
593 return -ENOMEM;
594
595 path_kill_slashes(m->where);
596
4e85aff4
LP
597 if (!m->meta.description)
598 if ((r = unit_set_description(u, m->where)) < 0)
599 return r;
e537352b 600
173a8d04
LP
601 if ((r = mount_add_device_links(m)) < 0)
602 return r;
6e2ef85b
LP
603
604 if ((r = mount_add_mount_links(m)) < 0)
605 return r;
606
607 if ((r = mount_add_socket_links(m)) < 0)
608 return r;
609
610 if ((r = mount_add_swap_links(m)) < 0)
e537352b
LP
611 return r;
612
01f78473
LP
613 if ((r = mount_add_path_links(m)) < 0)
614 return r;
615
6e2ef85b 616 if ((r = mount_add_automount_links(m)) < 0)
e537352b
LP
617 return r;
618
155da457 619 if ((r = mount_add_fstab_links(m)) < 0)
e537352b 620 return r;
4e67ddd6 621
2edd4434
LP
622 if (m->meta.default_dependencies)
623 if ((r = mount_add_default_dependencies(m)) < 0)
4e67ddd6 624 return r;
8024c3a7 625
155da457
LP
626 if ((r = unit_add_default_cgroups(u)) < 0)
627 return r;
628
8024c3a7 629 mount_fix_timeouts(m);
e537352b
LP
630 }
631
8d567588 632 return mount_verify(m);
e537352b
LP
633}
634
a16e1123
LP
635static int mount_notify_automount(Mount *m, int status) {
636 Unit *p;
637 int r;
638
639 assert(m);
640
641 if ((r = unit_get_related_unit(UNIT(m), ".automount", &p)) < 0)
642 return r == -ENOENT ? 0 : r;
643
644 return automount_send_ready(AUTOMOUNT(p), status);
645}
646
e537352b
LP
647static void mount_set_state(Mount *m, MountState state) {
648 MountState old_state;
649 assert(m);
650
651 old_state = m->state;
652 m->state = state;
653
654 if (state != MOUNT_MOUNTING &&
655 state != MOUNT_MOUNTING_DONE &&
656 state != MOUNT_REMOUNTING &&
657 state != MOUNT_UNMOUNTING &&
658 state != MOUNT_MOUNTING_SIGTERM &&
659 state != MOUNT_MOUNTING_SIGKILL &&
660 state != MOUNT_UNMOUNTING_SIGTERM &&
661 state != MOUNT_UNMOUNTING_SIGKILL &&
662 state != MOUNT_REMOUNTING_SIGTERM &&
663 state != MOUNT_REMOUNTING_SIGKILL) {
664 unit_unwatch_timer(UNIT(m), &m->timer_watch);
a16e1123 665 mount_unwatch_control_pid(m);
e537352b 666 m->control_command = NULL;
a16e1123 667 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
e537352b
LP
668 }
669
8d567588
LP
670 if (state == MOUNT_MOUNTED ||
671 state == MOUNT_REMOUNTING)
672 mount_notify_automount(m, 0);
673 else if (state == MOUNT_DEAD ||
674 state == MOUNT_UNMOUNTING ||
675 state == MOUNT_MOUNTING_SIGTERM ||
676 state == MOUNT_MOUNTING_SIGKILL ||
677 state == MOUNT_REMOUNTING_SIGTERM ||
678 state == MOUNT_REMOUNTING_SIGKILL ||
679 state == MOUNT_UNMOUNTING_SIGTERM ||
680 state == MOUNT_UNMOUNTING_SIGKILL ||
fdf20a31 681 state == MOUNT_FAILED)
8d567588
LP
682 mount_notify_automount(m, -ENODEV);
683
e537352b 684 if (state != old_state)
40d50879 685 log_debug("%s changed %s -> %s",
4cd1fbcc 686 m->meta.id,
a16e1123
LP
687 mount_state_to_string(old_state),
688 mount_state_to_string(state));
e537352b 689
e2f3b44c
LP
690 unit_notify(UNIT(m), state_translation_table[old_state], state_translation_table[state], !m->reload_failure);
691 m->reload_failure = false;
e537352b
LP
692}
693
694static int mount_coldplug(Unit *u) {
695 Mount *m = MOUNT(u);
a16e1123
LP
696 MountState new_state = MOUNT_DEAD;
697 int r;
e537352b
LP
698
699 assert(m);
700 assert(m->state == MOUNT_DEAD);
701
a16e1123
LP
702 if (m->deserialized_state != m->state)
703 new_state = m->deserialized_state;
704 else if (m->from_proc_self_mountinfo)
705 new_state = MOUNT_MOUNTED;
e537352b 706
a16e1123 707 if (new_state != m->state) {
e537352b 708
a16e1123
LP
709 if (new_state == MOUNT_MOUNTING ||
710 new_state == MOUNT_MOUNTING_DONE ||
711 new_state == MOUNT_REMOUNTING ||
712 new_state == MOUNT_UNMOUNTING ||
713 new_state == MOUNT_MOUNTING_SIGTERM ||
714 new_state == MOUNT_MOUNTING_SIGKILL ||
715 new_state == MOUNT_UNMOUNTING_SIGTERM ||
716 new_state == MOUNT_UNMOUNTING_SIGKILL ||
717 new_state == MOUNT_REMOUNTING_SIGTERM ||
718 new_state == MOUNT_REMOUNTING_SIGKILL) {
e537352b 719
a16e1123
LP
720 if (m->control_pid <= 0)
721 return -EBADMSG;
e537352b 722
a16e1123
LP
723 if ((r = unit_watch_pid(UNIT(m), m->control_pid)) < 0)
724 return r;
e537352b 725
a16e1123
LP
726 if ((r = unit_watch_timer(UNIT(m), m->timeout_usec, &m->timer_watch)) < 0)
727 return r;
728 }
e537352b 729
a16e1123
LP
730 mount_set_state(m, new_state);
731 }
e537352b
LP
732
733 return 0;
e537352b
LP
734}
735
736static void mount_dump(Unit *u, FILE *f, const char *prefix) {
737 Mount *m = MOUNT(u);
738 MountParameters *p;
739
740 assert(m);
741 assert(f);
742
cb39ed3f 743 p = get_mount_parameters(m);
e537352b
LP
744
745 fprintf(f,
746 "%sMount State: %s\n"
747 "%sWhere: %s\n"
748 "%sWhat: %s\n"
749 "%sFile System Type: %s\n"
750 "%sOptions: %s\n"
751 "%sFrom /etc/fstab: %s\n"
752 "%sFrom /proc/self/mountinfo: %s\n"
753 "%sFrom fragment: %s\n"
3e5235b0 754 "%sDirectoryMode: %04o\n",
a16e1123 755 prefix, mount_state_to_string(m->state),
e537352b
LP
756 prefix, m->where,
757 prefix, strna(p->what),
758 prefix, strna(p->fstype),
759 prefix, strna(p->options),
760 prefix, yes_no(m->from_etc_fstab),
761 prefix, yes_no(m->from_proc_self_mountinfo),
762 prefix, yes_no(m->from_fragment),
3e5235b0 763 prefix, m->directory_mode);
e537352b
LP
764
765 if (m->control_pid > 0)
766 fprintf(f,
bb00e604
LP
767 "%sControl PID: %lu\n",
768 prefix, (unsigned long) m->control_pid);
e537352b
LP
769
770 exec_context_dump(&m->exec_context, f, prefix);
771}
772
a16e1123
LP
773static int mount_spawn(Mount *m, ExecCommand *c, pid_t *_pid) {
774 pid_t pid;
775 int r;
776
777 assert(m);
778 assert(c);
779 assert(_pid);
780
781 if ((r = unit_watch_timer(UNIT(m), m->timeout_usec, &m->timer_watch)) < 0)
782 goto fail;
783
784 if ((r = exec_spawn(c,
785 NULL,
786 &m->exec_context,
787 NULL, 0,
1137a57c 788 m->meta.manager->environment,
a16e1123
LP
789 true,
790 true,
1e3ad081 791 true,
c3686083 792 m->meta.manager->confirm_spawn,
4cd1fbcc 793 m->meta.cgroup_bondings,
ab1f0633 794 m->meta.cgroup_attributes,
a16e1123
LP
795 &pid)) < 0)
796 goto fail;
797
798 if ((r = unit_watch_pid(UNIT(m), pid)) < 0)
799 /* FIXME: we need to do something here */
800 goto fail;
801
802 *_pid = pid;
803
804 return 0;
805
806fail:
807 unit_unwatch_timer(UNIT(m), &m->timer_watch);
808
809 return r;
810}
811
e537352b
LP
812static void mount_enter_dead(Mount *m, bool success) {
813 assert(m);
814
815 if (!success)
816 m->failure = true;
817
fdf20a31 818 mount_set_state(m, m->failure ? MOUNT_FAILED : MOUNT_DEAD);
e537352b
LP
819}
820
80876c20
LP
821static void mount_enter_mounted(Mount *m, bool success) {
822 assert(m);
823
824 if (!success)
825 m->failure = true;
826
827 mount_set_state(m, MOUNT_MOUNTED);
828}
829
e537352b
LP
830static void mount_enter_signal(Mount *m, MountState state, bool success) {
831 int r;
ca949c9d
LP
832 Set *pid_set = NULL;
833 bool wait_for_exit = false;
e537352b
LP
834
835 assert(m);
836
837 if (!success)
838 m->failure = true;
839
2e22afe9 840 if (m->exec_context.kill_mode != KILL_NONE) {
80876c20
LP
841 int sig = (state == MOUNT_MOUNTING_SIGTERM ||
842 state == MOUNT_UNMOUNTING_SIGTERM ||
2e22afe9 843 state == MOUNT_REMOUNTING_SIGTERM) ? m->exec_context.kill_signal : SIGKILL;
e537352b 844
ca949c9d 845 if (m->control_pid > 0) {
cd25cce9 846 if (kill_and_sigcont(m->control_pid, sig) < 0 && errno != ESRCH)
e537352b 847
ca949c9d
LP
848 log_warning("Failed to kill control process %li: %m", (long) m->control_pid);
849 else
850 wait_for_exit = true;
e537352b
LP
851 }
852
ca949c9d 853 if (m->exec_context.kill_mode == KILL_CONTROL_GROUP) {
2e22afe9 854
ca949c9d
LP
855 if (!(pid_set = set_new(trivial_hash_func, trivial_compare_func))) {
856 r = -ENOMEM;
e537352b
LP
857 goto fail;
858 }
ca949c9d
LP
859
860 /* Exclude the control pid from being killed via the cgroup */
861 if (m->control_pid > 0)
862 if ((r = set_put(pid_set, LONG_TO_PTR(m->control_pid))) < 0)
863 goto fail;
864
430c18ed 865 if ((r = cgroup_bonding_kill_list(m->meta.cgroup_bondings, sig, true, pid_set)) < 0) {
ca949c9d
LP
866 if (r != -EAGAIN && r != -ESRCH && r != -ENOENT)
867 log_warning("Failed to kill control group: %s", strerror(-r));
868 } else if (r > 0)
869 wait_for_exit = true;
870
871 set_free(pid_set);
da19d5c1 872 pid_set = NULL;
ca949c9d 873 }
e537352b
LP
874 }
875
ca949c9d 876 if (wait_for_exit) {
80876c20
LP
877 if ((r = unit_watch_timer(UNIT(m), m->timeout_usec, &m->timer_watch)) < 0)
878 goto fail;
e537352b 879
80876c20
LP
880 mount_set_state(m, state);
881 } else if (state == MOUNT_REMOUNTING_SIGTERM || state == MOUNT_REMOUNTING_SIGKILL)
882 mount_enter_mounted(m, true);
883 else
e537352b
LP
884 mount_enter_dead(m, true);
885
886 return;
887
888fail:
4cd1fbcc 889 log_warning("%s failed to kill processes: %s", m->meta.id, strerror(-r));
e537352b 890
80876c20
LP
891 if (state == MOUNT_REMOUNTING_SIGTERM || state == MOUNT_REMOUNTING_SIGKILL)
892 mount_enter_mounted(m, false);
893 else
894 mount_enter_dead(m, false);
ca949c9d
LP
895
896 if (pid_set)
897 set_free(pid_set);
e537352b
LP
898}
899
900static void mount_enter_unmounting(Mount *m, bool success) {
e537352b
LP
901 int r;
902
903 assert(m);
904
905 if (!success)
906 m->failure = true;
907
a16e1123
LP
908 m->control_command_id = MOUNT_EXEC_UNMOUNT;
909 m->control_command = m->exec_command + MOUNT_EXEC_UNMOUNT;
e537352b
LP
910
911 if ((r = exec_command_set(
a16e1123 912 m->control_command,
e537352b
LP
913 "/bin/umount",
914 m->where,
915 NULL)) < 0)
916 goto fail;
917
a16e1123 918 mount_unwatch_control_pid(m);
5e94833f 919
a16e1123 920 if ((r = mount_spawn(m, m->control_command, &m->control_pid)) < 0)
e537352b
LP
921 goto fail;
922
923 mount_set_state(m, MOUNT_UNMOUNTING);
924
925 return;
926
927fail:
4cd1fbcc 928 log_warning("%s failed to run 'umount' task: %s", m->meta.id, strerror(-r));
e537352b
LP
929 mount_enter_mounted(m, false);
930}
931
8d567588 932static void mount_enter_mounting(Mount *m) {
e537352b 933 int r;
cb39ed3f 934 MountParameters *p;
e537352b
LP
935
936 assert(m);
937
a16e1123
LP
938 m->control_command_id = MOUNT_EXEC_MOUNT;
939 m->control_command = m->exec_command + MOUNT_EXEC_MOUNT;
e537352b 940
3e5235b0
LP
941 mkdir_p(m->where, m->directory_mode);
942
cb39ed3f
LP
943 /* Create the source directory for bind-mounts if needed */
944 p = get_mount_parameters_configured(m);
945 if (p && mount_is_bind(p))
946 mkdir_p(p->what, m->directory_mode);
2b583ce6 947
e537352b
LP
948 if (m->from_fragment)
949 r = exec_command_set(
a16e1123 950 m->control_command,
e537352b
LP
951 "/bin/mount",
952 m->parameters_fragment.what,
953 m->where,
40b8a332 954 "-t", m->parameters_fragment.fstype ? m->parameters_fragment.fstype : "auto",
8d567588 955 m->parameters_fragment.options ? "-o" : NULL, m->parameters_fragment.options,
e537352b
LP
956 NULL);
957 else if (m->from_etc_fstab)
958 r = exec_command_set(
a16e1123 959 m->control_command,
e537352b
LP
960 "/bin/mount",
961 m->where,
962 NULL);
963 else
964 r = -ENOENT;
965
966 if (r < 0)
967 goto fail;
968
a16e1123 969 mount_unwatch_control_pid(m);
5e94833f 970
a16e1123 971 if ((r = mount_spawn(m, m->control_command, &m->control_pid)) < 0)
e537352b
LP
972 goto fail;
973
974 mount_set_state(m, MOUNT_MOUNTING);
975
976 return;
977
978fail:
4cd1fbcc 979 log_warning("%s failed to run 'mount' task: %s", m->meta.id, strerror(-r));
e537352b
LP
980 mount_enter_dead(m, false);
981}
982
8d567588 983static void mount_enter_mounting_done(Mount *m) {
e537352b
LP
984 assert(m);
985
e537352b
LP
986 mount_set_state(m, MOUNT_MOUNTING_DONE);
987}
988
989static void mount_enter_remounting(Mount *m, bool success) {
e537352b
LP
990 int r;
991
992 assert(m);
993
994 if (!success)
995 m->failure = true;
996
a16e1123
LP
997 m->control_command_id = MOUNT_EXEC_REMOUNT;
998 m->control_command = m->exec_command + MOUNT_EXEC_REMOUNT;
e537352b
LP
999
1000 if (m->from_fragment) {
1001 char *buf = NULL;
1002 const char *o;
1003
1004 if (m->parameters_fragment.options) {
1005 if (!(buf = strappend("remount,", m->parameters_fragment.options))) {
1006 r = -ENOMEM;
1007 goto fail;
1008 }
1009
1010 o = buf;
1011 } else
1012 o = "remount";
1013
1014 r = exec_command_set(
a16e1123 1015 m->control_command,
e537352b
LP
1016 "/bin/mount",
1017 m->parameters_fragment.what,
1018 m->where,
40b8a332 1019 "-t", m->parameters_fragment.fstype ? m->parameters_fragment.fstype : "auto",
e537352b
LP
1020 "-o", o,
1021 NULL);
1022
1023 free(buf);
1024 } else if (m->from_etc_fstab)
1025 r = exec_command_set(
a16e1123 1026 m->control_command,
e537352b
LP
1027 "/bin/mount",
1028 m->where,
1029 "-o", "remount",
1030 NULL);
1031 else
1032 r = -ENOENT;
1033
60b912f6 1034 if (r < 0)
e537352b 1035 goto fail;
e537352b 1036
a16e1123 1037 mount_unwatch_control_pid(m);
5e94833f 1038
a16e1123 1039 if ((r = mount_spawn(m, m->control_command, &m->control_pid)) < 0)
e537352b
LP
1040 goto fail;
1041
1042 mount_set_state(m, MOUNT_REMOUNTING);
1043
1044 return;
1045
1046fail:
e364ad06 1047 log_warning("%s failed to run 'remount' task: %s", m->meta.id, strerror(-r));
e2f3b44c
LP
1048 m->reload_failure = true;
1049 mount_enter_mounted(m, true);
e537352b
LP
1050}
1051
1052static int mount_start(Unit *u) {
1053 Mount *m = MOUNT(u);
1054
1055 assert(m);
1056
1057 /* We cannot fulfill this request right now, try again later
1058 * please! */
1059 if (m->state == MOUNT_UNMOUNTING ||
1060 m->state == MOUNT_UNMOUNTING_SIGTERM ||
60b912f6
LP
1061 m->state == MOUNT_UNMOUNTING_SIGKILL ||
1062 m->state == MOUNT_MOUNTING_SIGTERM ||
1063 m->state == MOUNT_MOUNTING_SIGKILL)
e537352b
LP
1064 return -EAGAIN;
1065
1066 /* Already on it! */
60b912f6 1067 if (m->state == MOUNT_MOUNTING)
e537352b
LP
1068 return 0;
1069
fdf20a31 1070 assert(m->state == MOUNT_DEAD || m->state == MOUNT_FAILED);
e537352b
LP
1071
1072 m->failure = false;
8d567588 1073 mount_enter_mounting(m);
e537352b
LP
1074 return 0;
1075}
1076
1077static int mount_stop(Unit *u) {
1078 Mount *m = MOUNT(u);
1079
1080 assert(m);
1081
e537352b
LP
1082 /* Already on it */
1083 if (m->state == MOUNT_UNMOUNTING ||
1084 m->state == MOUNT_UNMOUNTING_SIGKILL ||
60b912f6
LP
1085 m->state == MOUNT_UNMOUNTING_SIGTERM ||
1086 m->state == MOUNT_MOUNTING_SIGTERM ||
1087 m->state == MOUNT_MOUNTING_SIGKILL)
e537352b
LP
1088 return 0;
1089
3f6c78dc
LP
1090 assert(m->state == MOUNT_MOUNTING ||
1091 m->state == MOUNT_MOUNTING_DONE ||
1092 m->state == MOUNT_MOUNTED ||
3f6c78dc
LP
1093 m->state == MOUNT_REMOUNTING ||
1094 m->state == MOUNT_REMOUNTING_SIGTERM ||
1095 m->state == MOUNT_REMOUNTING_SIGKILL);
e537352b
LP
1096
1097 mount_enter_unmounting(m, true);
1098 return 0;
1099}
1100
1101static int mount_reload(Unit *u) {
1102 Mount *m = MOUNT(u);
1103
1104 assert(m);
1105
1106 if (m->state == MOUNT_MOUNTING_DONE)
1107 return -EAGAIN;
1108
1109 assert(m->state == MOUNT_MOUNTED);
1110
1111 mount_enter_remounting(m, true);
1112 return 0;
1113}
1114
a16e1123
LP
1115static int mount_serialize(Unit *u, FILE *f, FDSet *fds) {
1116 Mount *m = MOUNT(u);
1117
1118 assert(m);
1119 assert(f);
1120 assert(fds);
1121
1122 unit_serialize_item(u, f, "state", mount_state_to_string(m->state));
1123 unit_serialize_item(u, f, "failure", yes_no(m->failure));
1124
1125 if (m->control_pid > 0)
5925dd3c 1126 unit_serialize_item_format(u, f, "control-pid", "%lu", (unsigned long) m->control_pid);
a16e1123
LP
1127
1128 if (m->control_command_id >= 0)
1129 unit_serialize_item(u, f, "control-command", mount_exec_command_to_string(m->control_command_id));
1130
1131 return 0;
1132}
1133
1134static int mount_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
1135 Mount *m = MOUNT(u);
a16e1123
LP
1136
1137 assert(u);
1138 assert(key);
1139 assert(value);
1140 assert(fds);
1141
1142 if (streq(key, "state")) {
1143 MountState state;
1144
1145 if ((state = mount_state_from_string(value)) < 0)
1146 log_debug("Failed to parse state value %s", value);
1147 else
1148 m->deserialized_state = state;
1149 } else if (streq(key, "failure")) {
1150 int b;
1151
1152 if ((b = parse_boolean(value)) < 0)
1153 log_debug("Failed to parse failure value %s", value);
1154 else
1155 m->failure = b || m->failure;
1156
1157 } else if (streq(key, "control-pid")) {
5925dd3c 1158 pid_t pid;
a16e1123 1159
e364ad06 1160 if (parse_pid(value, &pid) < 0)
a16e1123
LP
1161 log_debug("Failed to parse control-pid value %s", value);
1162 else
5925dd3c 1163 m->control_pid = pid;
a16e1123
LP
1164 } else if (streq(key, "control-command")) {
1165 MountExecCommand id;
1166
1167 if ((id = mount_exec_command_from_string(value)) < 0)
1168 log_debug("Failed to parse exec-command value %s", value);
1169 else {
1170 m->control_command_id = id;
1171 m->control_command = m->exec_command + id;
1172 }
1173
1174 } else
1175 log_debug("Unknown serialization key '%s'", key);
1176
1177 return 0;
1178}
1179
e537352b
LP
1180static UnitActiveState mount_active_state(Unit *u) {
1181 assert(u);
1182
1183 return state_translation_table[MOUNT(u)->state];
1184}
1185
10a94420
LP
1186static const char *mount_sub_state_to_string(Unit *u) {
1187 assert(u);
1188
a16e1123 1189 return mount_state_to_string(MOUNT(u)->state);
10a94420
LP
1190}
1191
701cc384
LP
1192static bool mount_check_gc(Unit *u) {
1193 Mount *m = MOUNT(u);
1194
1195 assert(m);
1196
1197 return m->from_etc_fstab || m->from_proc_self_mountinfo;
1198}
1199
e537352b
LP
1200static void mount_sigchld_event(Unit *u, pid_t pid, int code, int status) {
1201 Mount *m = MOUNT(u);
1202 bool success;
1203
1204 assert(m);
1205 assert(pid >= 0);
1206
8c47c732
LP
1207 if (pid != m->control_pid)
1208 return;
e537352b 1209
e537352b
LP
1210 m->control_pid = 0;
1211
8c47c732
LP
1212 success = is_clean_exit(code, status);
1213 m->failure = m->failure || !success;
1214
a16e1123 1215 if (m->control_command) {
6ea832a2 1216 exec_status_exit(&m->control_command->exec_status, &m->exec_context, pid, code, status);
a16e1123
LP
1217 m->control_command = NULL;
1218 m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID;
1219 }
1220
92abbefb
LP
1221 log_full(success ? LOG_DEBUG : LOG_NOTICE,
1222 "%s mount process exited, code=%s status=%i", u->meta.id, sigchld_code_to_string(code), status);
e537352b
LP
1223
1224 /* Note that mount(8) returning and the kernel sending us a
1225 * mount table change event might happen out-of-order. If an
1226 * operation succeed we assume the kernel will follow soon too
1227 * and already change into the resulting state. If it fails
1228 * we check if the kernel still knows about the mount. and
1229 * change state accordingly. */
1230
1231 switch (m->state) {
1232
1233 case MOUNT_MOUNTING:
1234 case MOUNT_MOUNTING_DONE:
1235 case MOUNT_MOUNTING_SIGKILL:
1236 case MOUNT_MOUNTING_SIGTERM:
e537352b 1237
19b160fa 1238 if (success)
e537352b
LP
1239 mount_enter_mounted(m, true);
1240 else if (m->from_proc_self_mountinfo)
1241 mount_enter_mounted(m, false);
1242 else
1243 mount_enter_dead(m, false);
1244 break;
1245
e2f3b44c
LP
1246 case MOUNT_REMOUNTING:
1247 case MOUNT_REMOUNTING_SIGKILL:
1248 case MOUNT_REMOUNTING_SIGTERM:
1249
1250 m->reload_failure = !success;
1251 if (m->from_proc_self_mountinfo)
1252 mount_enter_mounted(m, true);
1253 else
1254 mount_enter_dead(m, true);
1255
1256 break;
1257
e537352b
LP
1258 case MOUNT_UNMOUNTING:
1259 case MOUNT_UNMOUNTING_SIGKILL:
1260 case MOUNT_UNMOUNTING_SIGTERM:
1261
1262 if (success)
1263 mount_enter_dead(m, true);
1264 else if (m->from_proc_self_mountinfo)
1265 mount_enter_mounted(m, false);
1266 else
1267 mount_enter_dead(m, false);
1268 break;
1269
1270 default:
1271 assert_not_reached("Uh, control process died at wrong time.");
1272 }
c4e2ceae
LP
1273
1274 /* Notify clients about changed exit status */
1275 unit_add_to_dbus_queue(u);
e537352b
LP
1276}
1277
1278static void mount_timer_event(Unit *u, uint64_t elapsed, Watch *w) {
1279 Mount *m = MOUNT(u);
1280
1281 assert(m);
1282 assert(elapsed == 1);
1283 assert(w == &m->timer_watch);
1284
1285 switch (m->state) {
1286
1287 case MOUNT_MOUNTING:
1288 case MOUNT_MOUNTING_DONE:
9e2f7c11 1289 log_warning("%s mounting timed out. Stopping.", u->meta.id);
e537352b
LP
1290 mount_enter_signal(m, MOUNT_MOUNTING_SIGTERM, false);
1291 break;
1292
1293 case MOUNT_REMOUNTING:
9e2f7c11 1294 log_warning("%s remounting timed out. Stopping.", u->meta.id);
e2f3b44c
LP
1295 m->reload_failure = true;
1296 mount_enter_mounted(m, true);
e537352b
LP
1297 break;
1298
1299 case MOUNT_UNMOUNTING:
9e2f7c11 1300 log_warning("%s unmounting timed out. Stopping.", u->meta.id);
e537352b
LP
1301 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGTERM, false);
1302 break;
1303
1304 case MOUNT_MOUNTING_SIGTERM:
ba035df2
LP
1305 if (m->exec_context.send_sigkill) {
1306 log_warning("%s mounting timed out. Killing.", u->meta.id);
1307 mount_enter_signal(m, MOUNT_MOUNTING_SIGKILL, false);
1308 } else {
1309 log_warning("%s mounting timed out. Skipping SIGKILL. Ignoring.", u->meta.id);
1310
1311 if (m->from_proc_self_mountinfo)
1312 mount_enter_mounted(m, false);
1313 else
1314 mount_enter_dead(m, false);
1315 }
e537352b
LP
1316 break;
1317
1318 case MOUNT_REMOUNTING_SIGTERM:
ba035df2
LP
1319 if (m->exec_context.send_sigkill) {
1320 log_warning("%s remounting timed out. Killing.", u->meta.id);
1321 mount_enter_signal(m, MOUNT_REMOUNTING_SIGKILL, false);
1322 } else {
1323 log_warning("%s remounting timed out. Skipping SIGKILL. Ignoring.", u->meta.id);
1324
1325 if (m->from_proc_self_mountinfo)
1326 mount_enter_mounted(m, false);
1327 else
1328 mount_enter_dead(m, false);
1329 }
e537352b
LP
1330 break;
1331
1332 case MOUNT_UNMOUNTING_SIGTERM:
ba035df2
LP
1333 if (m->exec_context.send_sigkill) {
1334 log_warning("%s unmounting timed out. Killing.", u->meta.id);
1335 mount_enter_signal(m, MOUNT_UNMOUNTING_SIGKILL, false);
1336 } else {
1337 log_warning("%s unmounting timed out. Skipping SIGKILL. Ignoring.", u->meta.id);
1338
1339 if (m->from_proc_self_mountinfo)
1340 mount_enter_mounted(m, false);
1341 else
1342 mount_enter_dead(m, false);
1343 }
e537352b
LP
1344 break;
1345
1346 case MOUNT_MOUNTING_SIGKILL:
1347 case MOUNT_REMOUNTING_SIGKILL:
1348 case MOUNT_UNMOUNTING_SIGKILL:
9e2f7c11 1349 log_warning("%s mount process still around after SIGKILL. Ignoring.", u->meta.id);
e537352b
LP
1350
1351 if (m->from_proc_self_mountinfo)
1352 mount_enter_mounted(m, false);
1353 else
1354 mount_enter_dead(m, false);
1355 break;
1356
1357 default:
1358 assert_not_reached("Timeout at wrong time.");
1359 }
1360}
1361
1362static int mount_add_one(
1363 Manager *m,
1364 const char *what,
1365 const char *where,
1366 const char *options,
1367 const char *fstype,
9fff8a1f 1368 int passno,
e537352b
LP
1369 bool from_proc_self_mountinfo,
1370 bool set_flags) {
b08d03ff
LP
1371 int r;
1372 Unit *u;
1373 bool delete;
e537352b 1374 char *e, *w = NULL, *o = NULL, *f = NULL;
4e85aff4 1375 MountParameters *p;
b08d03ff 1376
f50e0a01 1377 assert(m);
b08d03ff
LP
1378 assert(what);
1379 assert(where);
e537352b
LP
1380 assert(options);
1381 assert(fstype);
1382
1383 assert(!set_flags || from_proc_self_mountinfo);
1384
1385 /* Ignore API mount points. They should never be referenced in
1386 * dependencies ever. */
33ff02c9 1387 if (mount_point_is_api(where) || mount_point_ignore(where))
57f2a956 1388 return 0;
b08d03ff 1389
8d567588
LP
1390 if (streq(fstype, "autofs"))
1391 return 0;
1392
4e85aff4
LP
1393 /* probably some kind of swap, ignore */
1394 if (!is_path(where))
b08d03ff
LP
1395 return 0;
1396
a16e1123 1397 if (!(e = unit_name_from_path(where, ".mount")))
b08d03ff
LP
1398 return -ENOMEM;
1399
1400 if (!(u = manager_get_unit(m, e))) {
1401 delete = true;
1402
1403 if (!(u = unit_new(m))) {
1404 free(e);
1405 return -ENOMEM;
1406 }
1407
1408 r = unit_add_name(u, e);
1409 free(e);
1410
1411 if (r < 0)
1412 goto fail;
1413
e537352b 1414 if (!(MOUNT(u)->where = strdup(where))) {
07b0b134
ML
1415 r = -ENOMEM;
1416 goto fail;
1417 }
f50e0a01 1418
f94ea366 1419 unit_add_to_load_queue(u);
b08d03ff
LP
1420 } else {
1421 delete = false;
1422 free(e);
1423 }
1424
e537352b
LP
1425 if (!(w = strdup(what)) ||
1426 !(o = strdup(options)) ||
1427 !(f = strdup(fstype))) {
1428 r = -ENOMEM;
1429 goto fail;
1430 }
1431
1432 if (from_proc_self_mountinfo) {
4e85aff4 1433 p = &MOUNT(u)->parameters_proc_self_mountinfo;
e537352b
LP
1434
1435 if (set_flags) {
1436 MOUNT(u)->is_mounted = true;
1437 MOUNT(u)->just_mounted = !MOUNT(u)->from_proc_self_mountinfo;
4e85aff4 1438 MOUNT(u)->just_changed = !streq_ptr(p->options, o);
e537352b 1439 }
ef734fd6 1440
f50e0a01 1441 MOUNT(u)->from_proc_self_mountinfo = true;
ef734fd6 1442 } else {
4e85aff4 1443 p = &MOUNT(u)->parameters_etc_fstab;
f50e0a01 1444 MOUNT(u)->from_etc_fstab = true;
ef734fd6 1445 }
f50e0a01 1446
4e85aff4
LP
1447 free(p->what);
1448 p->what = w;
b08d03ff 1449
4e85aff4
LP
1450 free(p->options);
1451 p->options = o;
e537352b 1452
4e85aff4
LP
1453 free(p->fstype);
1454 p->fstype = f;
b08d03ff 1455
9fff8a1f
LP
1456 p->passno = passno;
1457
c1e1601e
LP
1458 unit_add_to_dbus_queue(u);
1459
b08d03ff
LP
1460 return 0;
1461
1462fail:
e537352b
LP
1463 free(w);
1464 free(o);
1465 free(f);
1466
b08d03ff
LP
1467 if (delete && u)
1468 unit_free(u);
1469
4e85aff4 1470 return r;
b08d03ff
LP
1471}
1472
07b0b134
ML
1473static int mount_find_pri(char *options) {
1474 char *end, *pri;
1475 unsigned long r;
1476
3a34ae3a 1477 if (!(pri = mount_test_option(options, "pri")))
07b0b134
ML
1478 return 0;
1479
1480 pri += 4;
1481
1482 errno = 0;
1483 r = strtoul(pri, &end, 10);
1484
1485 if (errno != 0)
1486 return -errno;
1487
1488 if (end == pri || (*end != ',' && *end != 0))
1489 return -EINVAL;
1490
1491 return (int) r;
1492}
1493
e537352b 1494static int mount_load_etc_fstab(Manager *m) {
b08d03ff 1495 FILE *f;
60b912f6 1496 int r = 0;
b08d03ff
LP
1497 struct mntent* me;
1498
1499 assert(m);
1500
1501 errno = 0;
1502 if (!(f = setmntent("/etc/fstab", "r")))
1503 return -errno;
1504
1505 while ((me = getmntent(f))) {
1506 char *where, *what;
60b912f6 1507 int k;
b08d03ff
LP
1508
1509 if (!(what = fstab_node_to_udev_node(me->mnt_fsname))) {
1510 r = -ENOMEM;
1511 goto finish;
1512 }
1513
1514 if (!(where = strdup(me->mnt_dir))) {
1515 free(what);
1516 r = -ENOMEM;
1517 goto finish;
1518 }
1519
1520 if (what[0] == '/')
1521 path_kill_slashes(what);
1522
1523 if (where[0] == '/')
1524 path_kill_slashes(where);
1525
07b0b134
ML
1526 if (streq(me->mnt_type, "swap")) {
1527 int pri;
1528
1529 if ((pri = mount_find_pri(me->mnt_opts)) < 0)
60b912f6 1530 k = pri;
07b0b134 1531 else
60b912f6 1532 k = swap_add_one(m,
07b0b134 1533 what,
60b912f6 1534 NULL,
07b0b134 1535 pri,
155da457 1536 !!mount_test_option(me->mnt_opts, "noauto"),
173a8d04 1537 !!mount_test_option(me->mnt_opts, "nofail"),
4e85aff4 1538 !!mount_test_option(me->mnt_opts, "comment=systemd.swapon"),
07b0b134
ML
1539 false);
1540 } else
9fff8a1f 1541 k = mount_add_one(m, what, where, me->mnt_opts, me->mnt_type, me->mnt_passno, false, false);
07b0b134 1542
b08d03ff
LP
1543 free(what);
1544 free(where);
1545
1546 if (r < 0)
60b912f6 1547 r = k;
b08d03ff
LP
1548 }
1549
b08d03ff
LP
1550finish:
1551
1552 endmntent(f);
1553 return r;
1554}
1555
ef734fd6 1556static int mount_load_proc_self_mountinfo(Manager *m, bool set_flags) {
60b912f6 1557 int r = 0;
1ddff895 1558 unsigned i;
a2e0f3d3 1559 char *device, *path, *options, *options2, *fstype, *d, *p, *o;
b08d03ff
LP
1560
1561 assert(m);
1562
ef734fd6 1563 rewind(m->proc_self_mountinfo);
b08d03ff 1564
1ddff895 1565 for (i = 1;; i++) {
b08d03ff 1566 int k;
e537352b 1567
a2e0f3d3 1568 device = path = options = options2 = fstype = d = p = o = NULL;
b08d03ff 1569
ef734fd6 1570 if ((k = fscanf(m->proc_self_mountinfo,
b08d03ff
LP
1571 "%*s " /* (1) mount id */
1572 "%*s " /* (2) parent id */
1573 "%*s " /* (3) major:minor */
1574 "%*s " /* (4) root */
1575 "%ms " /* (5) mount point */
e537352b 1576 "%ms" /* (6) mount options */
b08d03ff 1577 "%*[^-]" /* (7) optional fields */
c899f8c6 1578 "- " /* (8) separator */
e537352b 1579 "%ms " /* (9) file system type */
ef734fd6 1580 "%ms" /* (10) mount source */
a2e0f3d3 1581 "%ms" /* (11) mount options 2 */
ef734fd6 1582 "%*[^\n]", /* some rubbish at the end */
b08d03ff 1583 &path,
e537352b
LP
1584 &options,
1585 &fstype,
a2e0f3d3
LP
1586 &device,
1587 &options2)) != 5) {
b08d03ff 1588
ef734fd6
LP
1589 if (k == EOF)
1590 break;
b08d03ff 1591
1ddff895
FF
1592 log_warning("Failed to parse /proc/self/mountinfo:%u.", i);
1593 goto clean_up;
b08d03ff
LP
1594 }
1595
a2e0f3d3
LP
1596 if (asprintf(&o, "%s,%s", options, options2) < 0) {
1597 r = -ENOMEM;
1598 goto finish;
1599 }
1600
e537352b
LP
1601 if (!(d = cunescape(device)) ||
1602 !(p = cunescape(path))) {
1603 r = -ENOMEM;
1604 goto finish;
b08d03ff 1605 }
b08d03ff 1606
9fff8a1f 1607 if ((k = mount_add_one(m, d, p, o, fstype, 0, true, set_flags)) < 0)
60b912f6 1608 r = k;
b08d03ff 1609
1ddff895 1610clean_up:
e537352b
LP
1611 free(device);
1612 free(path);
1613 free(options);
a2e0f3d3 1614 free(options2);
e537352b 1615 free(fstype);
b08d03ff
LP
1616 free(d);
1617 free(p);
a2e0f3d3 1618 free(o);
b08d03ff
LP
1619 }
1620
e537352b
LP
1621finish:
1622 free(device);
1623 free(path);
1624 free(options);
a2e0f3d3 1625 free(options2);
e537352b
LP
1626 free(fstype);
1627 free(d);
1628 free(p);
a2e0f3d3 1629 free(o);
e537352b
LP
1630
1631 return r;
1632}
1633
1634static void mount_shutdown(Manager *m) {
1635 assert(m);
1636
a16e1123 1637 if (m->proc_self_mountinfo) {
e537352b 1638 fclose(m->proc_self_mountinfo);
a16e1123
LP
1639 m->proc_self_mountinfo = NULL;
1640 }
b08d03ff
LP
1641}
1642
1643static int mount_enumerate(Manager *m) {
1644 int r;
ef734fd6 1645 struct epoll_event ev;
b08d03ff
LP
1646 assert(m);
1647
a16e1123
LP
1648 if (!m->proc_self_mountinfo) {
1649 if (!(m->proc_self_mountinfo = fopen("/proc/self/mountinfo", "re")))
1650 return -errno;
ef734fd6 1651
a16e1123
LP
1652 m->mount_watch.type = WATCH_MOUNT;
1653 m->mount_watch.fd = fileno(m->proc_self_mountinfo);
ef734fd6 1654
a16e1123 1655 zero(ev);
4e434314 1656 ev.events = EPOLLPRI;
a16e1123 1657 ev.data.ptr = &m->mount_watch;
ef734fd6 1658
a16e1123
LP
1659 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->mount_watch.fd, &ev) < 0)
1660 return -errno;
1661 }
ef734fd6 1662
e537352b 1663 if ((r = mount_load_etc_fstab(m)) < 0)
b08d03ff
LP
1664 goto fail;
1665
ef734fd6 1666 if ((r = mount_load_proc_self_mountinfo(m, false)) < 0)
b08d03ff
LP
1667 goto fail;
1668
1669 return 0;
1670
1671fail:
1672 mount_shutdown(m);
1673 return r;
5cb5a6ff
LP
1674}
1675
ef734fd6
LP
1676void mount_fd_event(Manager *m, int events) {
1677 Meta *meta;
1678 int r;
1679
1680 assert(m);
4e434314 1681 assert(events & EPOLLPRI);
ef734fd6
LP
1682
1683 /* The manager calls this for every fd event happening on the
1684 * /proc/self/mountinfo file, which informs us about mounting
1685 * table changes */
1686
1687 if ((r = mount_load_proc_self_mountinfo(m, true)) < 0) {
e364ad06 1688 log_error("Failed to reread /proc/self/mountinfo: %s", strerror(-r));
e537352b
LP
1689
1690 /* Reset flags, just in case, for later calls */
ab5c3e3f 1691 LIST_FOREACH(units_by_type, meta, m->units_by_type[UNIT_MOUNT]) {
e537352b
LP
1692 Mount *mount = (Mount*) meta;
1693
1694 mount->is_mounted = mount->just_mounted = mount->just_changed = false;
1695 }
1696
ef734fd6
LP
1697 return;
1698 }
1699
1700 manager_dispatch_load_queue(m);
1701
ab5c3e3f 1702 LIST_FOREACH(units_by_type, meta, m->units_by_type[UNIT_MOUNT]) {
ef734fd6
LP
1703 Mount *mount = (Mount*) meta;
1704
e537352b
LP
1705 if (!mount->is_mounted) {
1706 /* This has just been unmounted. */
1707
ef734fd6 1708 mount->from_proc_self_mountinfo = false;
e537352b
LP
1709
1710 switch (mount->state) {
1711
1712 case MOUNT_MOUNTED:
1713 mount_enter_dead(mount, true);
1714 break;
1715
1716 default:
1717 mount_set_state(mount, mount->state);
1718 break;
1719
1720 }
1721
1722 } else if (mount->just_mounted || mount->just_changed) {
1723
60b912f6 1724 /* New or changed mount entry */
e537352b
LP
1725
1726 switch (mount->state) {
1727
1728 case MOUNT_DEAD:
fdf20a31 1729 case MOUNT_FAILED:
e537352b
LP
1730 mount_enter_mounted(mount, true);
1731 break;
1732
1733 case MOUNT_MOUNTING:
8d567588 1734 mount_enter_mounting_done(mount);
e537352b
LP
1735 break;
1736
1737 default:
1738 /* Nothing really changed, but let's
1739 * issue an notification call
1740 * nonetheless, in case somebody is
1741 * waiting for this. (e.g. file system
1742 * ro/rw remounts.) */
1743 mount_set_state(mount, mount->state);
1744 break;
1745 }
1746 }
1747
1748 /* Reset the flags for later calls */
1749 mount->is_mounted = mount->just_mounted = mount->just_changed = false;
1750 }
1751}
1752
fdf20a31 1753static void mount_reset_failed(Unit *u) {
5632e374
LP
1754 Mount *m = MOUNT(u);
1755
1756 assert(m);
1757
fdf20a31 1758 if (m->state == MOUNT_FAILED)
5632e374
LP
1759 mount_set_state(m, MOUNT_DEAD);
1760
1761 m->failure = false;
1762}
1763
8a0867d6
LP
1764static int mount_kill(Unit *u, KillWho who, KillMode mode, int signo, DBusError *error) {
1765 Mount *m = MOUNT(u);
1766 int r = 0;
1767 Set *pid_set = NULL;
1768
1769 assert(m);
1770
1771 if (who == KILL_MAIN) {
1772 dbus_set_error(error, BUS_ERROR_NO_SUCH_PROCESS, "Mount units have no main processes");
a17204af 1773 return -ESRCH;
8a0867d6
LP
1774 }
1775
1776 if (m->control_pid <= 0 && who == KILL_CONTROL) {
1777 dbus_set_error(error, BUS_ERROR_NO_SUCH_PROCESS, "No control process to kill");
a17204af 1778 return -ESRCH;
8a0867d6
LP
1779 }
1780
3611581e
LP
1781 if (who == KILL_CONTROL || who == KILL_ALL)
1782 if (m->control_pid > 0)
1783 if (kill(m->control_pid, signo) < 0)
1784 r = -errno;
8a0867d6 1785
3611581e 1786 if (who == KILL_ALL && mode == KILL_CONTROL_GROUP) {
8a0867d6
LP
1787 int q;
1788
1789 if (!(pid_set = set_new(trivial_hash_func, trivial_compare_func)))
1790 return -ENOMEM;
1791
1792 /* Exclude the control pid from being killed via the cgroup */
1793 if (m->control_pid > 0)
1794 if ((q = set_put(pid_set, LONG_TO_PTR(m->control_pid))) < 0) {
1795 r = q;
1796 goto finish;
1797 }
1798
430c18ed 1799 if ((q = cgroup_bonding_kill_list(m->meta.cgroup_bondings, signo, false, pid_set)) < 0)
3611581e 1800 if (q != -EAGAIN && q != -ESRCH && q != -ENOENT)
8a0867d6
LP
1801 r = q;
1802 }
1803
1804finish:
1805 if (pid_set)
1806 set_free(pid_set);
1807
1808 return r;
1809}
1810
a16e1123
LP
1811static const char* const mount_state_table[_MOUNT_STATE_MAX] = {
1812 [MOUNT_DEAD] = "dead",
1813 [MOUNT_MOUNTING] = "mounting",
1814 [MOUNT_MOUNTING_DONE] = "mounting-done",
1815 [MOUNT_MOUNTED] = "mounted",
1816 [MOUNT_REMOUNTING] = "remounting",
1817 [MOUNT_UNMOUNTING] = "unmounting",
1818 [MOUNT_MOUNTING_SIGTERM] = "mounting-sigterm",
1819 [MOUNT_MOUNTING_SIGKILL] = "mounting-sigkill",
1820 [MOUNT_REMOUNTING_SIGTERM] = "remounting-sigterm",
1821 [MOUNT_REMOUNTING_SIGKILL] = "remounting-sigkill",
1822 [MOUNT_UNMOUNTING_SIGTERM] = "unmounting-sigterm",
1823 [MOUNT_UNMOUNTING_SIGKILL] = "unmounting-sigkill",
fdf20a31 1824 [MOUNT_FAILED] = "failed"
a16e1123
LP
1825};
1826
1827DEFINE_STRING_TABLE_LOOKUP(mount_state, MountState);
1828
1829static const char* const mount_exec_command_table[_MOUNT_EXEC_COMMAND_MAX] = {
1830 [MOUNT_EXEC_MOUNT] = "ExecMount",
1831 [MOUNT_EXEC_UNMOUNT] = "ExecUnmount",
1832 [MOUNT_EXEC_REMOUNT] = "ExecRemount",
1833};
1834
1835DEFINE_STRING_TABLE_LOOKUP(mount_exec_command, MountExecCommand);
1836
87f0e418 1837const UnitVTable mount_vtable = {
5cb5a6ff 1838 .suffix = ".mount",
f975e971
LP
1839 .sections =
1840 "Unit\0"
1841 "Mount\0"
1842 "Install\0",
5cb5a6ff 1843
e537352b 1844 .no_alias = true,
9e2f7c11 1845 .no_instances = true,
9e58ff9c 1846 .show_status = true,
e537352b
LP
1847
1848 .init = mount_init,
1849 .load = mount_load,
034c6ed7 1850 .done = mount_done,
e537352b 1851
f50e0a01
LP
1852 .coldplug = mount_coldplug,
1853
034c6ed7 1854 .dump = mount_dump,
5cb5a6ff 1855
e537352b
LP
1856 .start = mount_start,
1857 .stop = mount_stop,
1858 .reload = mount_reload,
1859
8a0867d6
LP
1860 .kill = mount_kill,
1861
a16e1123
LP
1862 .serialize = mount_serialize,
1863 .deserialize_item = mount_deserialize_item,
1864
f50e0a01 1865 .active_state = mount_active_state,
10a94420 1866 .sub_state_to_string = mount_sub_state_to_string,
b08d03ff 1867
701cc384
LP
1868 .check_gc = mount_check_gc,
1869
e537352b
LP
1870 .sigchld_event = mount_sigchld_event,
1871 .timer_event = mount_timer_event,
1872
fdf20a31 1873 .reset_failed = mount_reset_failed,
5632e374 1874
c4e2ceae 1875 .bus_interface = "org.freedesktop.systemd1.Mount",
4139c1b2 1876 .bus_message_handler = bus_mount_message_handler,
c4e2ceae 1877 .bus_invalidating_properties = bus_mount_invalidating_properties,
4139c1b2 1878
f50e0a01
LP
1879 .enumerate = mount_enumerate,
1880 .shutdown = mount_shutdown
5cb5a6ff 1881};