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