]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/automount.c
systemctl: port systemctl over to the new LookupPaths configuration directory fields
[thirdparty/systemd.git] / src / core / automount.c
CommitLineData
a7334b09
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 14 Lesser General Public License for more details.
a7334b09 15
5430f7f2 16 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
5cb5a6ff 20#include <errno.h>
8d567588 21#include <fcntl.h>
07630cea
LP
22#include <limits.h>
23#include <linux/auto_dev-ioctl.h>
24#include <linux/auto_fs4.h>
8d567588 25#include <sys/epoll.h>
07630cea 26#include <sys/mount.h>
8d567588 27#include <sys/stat.h>
07630cea 28#include <unistd.h>
5cb5a6ff 29
b5efdb8a 30#include "alloc-util.h"
07630cea 31#include "async.h"
3ffd4af2 32#include "automount.h"
07630cea
LP
33#include "bus-error.h"
34#include "bus-util.h"
35#include "dbus-automount.h"
3ffd4af2 36#include "fd-util.h"
07630cea 37#include "formats-util.h"
c004493c 38#include "io-util.h"
e51bc1a2 39#include "label.h"
49e942b2 40#include "mkdir.h"
4349cd7c 41#include "mount-util.h"
07630cea 42#include "mount.h"
6bedfcbb 43#include "parse-util.h"
9eb977db 44#include "path-util.h"
0b452006 45#include "process-util.h"
07630cea 46#include "special.h"
15a5e950 47#include "stdio-util.h"
8b43440b 48#include "string-table.h"
07630cea
LP
49#include "string-util.h"
50#include "unit-name.h"
51#include "unit.h"
5cb5a6ff 52
e537352b
LP
53static const UnitActiveState state_translation_table[_AUTOMOUNT_STATE_MAX] = {
54 [AUTOMOUNT_DEAD] = UNIT_INACTIVE,
55 [AUTOMOUNT_WAITING] = UNIT_ACTIVE,
56 [AUTOMOUNT_RUNNING] = UNIT_ACTIVE,
74ac3cbd 57 [AUTOMOUNT_FAILED] = UNIT_FAILED
e537352b 58};
5cb5a6ff 59
deb0a77c
MO
60struct expire_data {
61 int dev_autofs_fd;
62 int ioctl_fd;
63};
64
65static inline void expire_data_free(struct expire_data *data) {
66 if (!data)
67 return;
68
69 safe_close(data->dev_autofs_fd);
70 safe_close(data->ioctl_fd);
71 free(data);
72}
73
74DEFINE_TRIVIAL_CLEANUP_FUNC(struct expire_data*, expire_data_free);
75
a16e1123 76static int open_dev_autofs(Manager *m);
718db961 77static int automount_dispatch_io(sd_event_source *s, int fd, uint32_t events, void *userdata);
8d567588 78
e537352b
LP
79static void automount_init(Unit *u) {
80 Automount *a = AUTOMOUNT(u);
5cb5a6ff 81
8d567588 82 assert(u);
ac155bb8 83 assert(u->load_state == UNIT_STUB);
8d567588 84
718db961 85 a->pipe_fd = -1;
1cf18f27 86 a->directory_mode = 0755;
1124fe6f 87 UNIT(a)->ignore_on_isolate = true;
8d567588
LP
88}
89
deb0a77c
MO
90static int automount_send_ready(Automount *a, Set *tokens, int status);
91
8d567588 92static void unmount_autofs(Automount *a) {
3f2c0bec
LP
93 int r;
94
8d567588
LP
95 assert(a);
96
97 if (a->pipe_fd < 0)
98 return;
99
deb0a77c
MO
100 automount_send_ready(a, a->tokens, -EHOSTDOWN);
101 automount_send_ready(a, a->expire_tokens, -EHOSTDOWN);
8d567588 102
718db961 103 a->pipe_event_source = sd_event_source_unref(a->pipe_event_source);
03e334a1 104 a->pipe_fd = safe_close(a->pipe_fd);
8d567588 105
a16e1123
LP
106 /* If we reload/reexecute things we keep the mount point
107 * around */
108 if (a->where &&
1124fe6f 109 (UNIT(a)->manager->exit_code != MANAGER_RELOAD &&
3f2c0bec
LP
110 UNIT(a)->manager->exit_code != MANAGER_REEXECUTE)) {
111 r = repeat_unmount(a->where, MNT_DETACH);
112 if (r < 0)
113 log_error_errno(r, "Failed to unmount: %m");
114 }
8d567588
LP
115}
116
117static void automount_done(Unit *u) {
118 Automount *a = AUTOMOUNT(u);
119
120 assert(a);
121
122 unmount_autofs(a);
8d567588 123
a1e58e8e 124 a->where = mfree(a->where);
a16e1123 125
525d3cc7
LP
126 a->tokens = set_free(a->tokens);
127 a->expire_tokens = set_free(a->expire_tokens);
deb0a77c
MO
128
129 a->expire_event_source = sd_event_source_unref(a->expire_event_source);
8d567588
LP
130}
131
a57f7e2c
LP
132static int automount_add_mount_links(Automount *a) {
133 _cleanup_free_ char *parent = NULL;
6e2ef85b
LP
134
135 assert(a);
1b560190 136
5f311f8c
LP
137 parent = dirname_malloc(a->where);
138 if (!parent)
139 return -ENOMEM;
6e2ef85b 140
a57f7e2c 141 return unit_require_mounts_for(UNIT(a), parent);
6e2ef85b
LP
142}
143
2edd4434
LP
144static int automount_add_default_dependencies(Automount *a) {
145 int r;
146
147 assert(a);
148
4c9ea260
LP
149 if (!UNIT(a)->default_dependencies)
150 return 0;
151
b2c23da8 152 if (UNIT(a)->manager->running_as != MANAGER_SYSTEM)
6b1dc2bd 153 return 0;
2a77d31d 154
6b1dc2bd
LP
155 r = unit_add_two_dependencies_by_name(UNIT(a), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true);
156 if (r < 0)
157 return r;
2edd4434
LP
158
159 return 0;
160}
161
8d567588 162static int automount_verify(Automount *a) {
e1d75803 163 _cleanup_free_ char *e = NULL;
7410616c
LP
164 int r;
165
8d567588
LP
166 assert(a);
167
1124fe6f 168 if (UNIT(a)->load_state != UNIT_LOADED)
8d567588
LP
169 return 0;
170
41e45059 171 if (path_equal(a->where, "/")) {
f2341e0a 172 log_unit_error(UNIT(a), "Cannot have an automount unit for the root directory. Refusing.");
41e45059
LP
173 return -EINVAL;
174 }
175
7410616c
LP
176 r = unit_name_from_path(a->where, ".automount", &e);
177 if (r < 0)
f2341e0a 178 return log_unit_error(UNIT(a), "Failed to generate unit name from path: %m");
8d567588 179
7410616c 180 if (!unit_has_name(UNIT(a), e)) {
f2341e0a 181 log_unit_error(UNIT(a), "Where= setting doesn't match unit name. Refusing.");
8d567588
LP
182 return -EINVAL;
183 }
184
185 return 0;
e537352b 186}
5cb5a6ff 187
e537352b 188static int automount_load(Unit *u) {
e537352b 189 Automount *a = AUTOMOUNT(u);
3ecaa09b 190 int r;
23a177ef 191
e537352b 192 assert(u);
ac155bb8 193 assert(u->load_state == UNIT_STUB);
5cb5a6ff 194
e537352b 195 /* Load a .automount file */
0b2665c3
LP
196 r = unit_load_fragment_and_dropin_optional(u);
197 if (r < 0)
e537352b 198 return r;
23a177ef 199
ac155bb8 200 if (u->load_state == UNIT_LOADED) {
57020a3a 201 Unit *x;
23a177ef 202
0b2665c3 203 if (!a->where) {
7410616c
LP
204 r = unit_name_to_path(u->id, &a->where);
205 if (r < 0)
206 return r;
0b2665c3 207 }
a16e1123
LP
208
209 path_kill_slashes(a->where);
210
3ecaa09b 211 r = unit_load_related_unit(u, ".mount", &x);
0b2665c3 212 if (r < 0)
6e2ef85b
LP
213 return r;
214
3ecaa09b 215 r = unit_add_two_dependencies(u, UNIT_BEFORE, UNIT_TRIGGERS, x, true);
57020a3a 216 if (r < 0)
23a177ef
LP
217 return r;
218
3ecaa09b 219 r = automount_add_mount_links(a);
57020a3a 220 if (r < 0)
23a177ef 221 return r;
4e67ddd6 222
4c9ea260
LP
223 r = automount_add_default_dependencies(a);
224 if (r < 0)
225 return r;
23a177ef
LP
226 }
227
8d567588 228 return automount_verify(a);
5cb5a6ff
LP
229}
230
8d567588
LP
231static void automount_set_state(Automount *a, AutomountState state) {
232 AutomountState old_state;
e537352b 233 assert(a);
034c6ed7 234
8d567588
LP
235 old_state = a->state;
236 a->state = state;
237
238 if (state != AUTOMOUNT_WAITING &&
239 state != AUTOMOUNT_RUNNING)
240 unmount_autofs(a);
241
242 if (state != old_state)
f2341e0a 243 log_unit_debug(UNIT(a), "Changed %s -> %s", automount_state_to_string(old_state), automount_state_to_string(state));
8d567588 244
e2f3b44c 245 unit_notify(UNIT(a), state_translation_table[old_state], state_translation_table[state], true);
034c6ed7
LP
246}
247
be847e82 248static int automount_coldplug(Unit *u) {
a16e1123
LP
249 Automount *a = AUTOMOUNT(u);
250 int r;
251
252 assert(a);
253 assert(a->state == AUTOMOUNT_DEAD);
254
255 if (a->deserialized_state != a->state) {
256
0b2665c3
LP
257 r = open_dev_autofs(u->manager);
258 if (r < 0)
a16e1123
LP
259 return r;
260
261 if (a->deserialized_state == AUTOMOUNT_WAITING ||
262 a->deserialized_state == AUTOMOUNT_RUNNING) {
a16e1123
LP
263 assert(a->pipe_fd >= 0);
264
151b9b96 265 r = sd_event_add_io(u->manager->event, &a->pipe_event_source, a->pipe_fd, EPOLLIN, automount_dispatch_io, u);
0b2665c3 266 if (r < 0)
a16e1123 267 return r;
7dfbe2e3
TG
268
269 (void) sd_event_source_set_description(a->pipe_event_source, "automount-io");
a16e1123
LP
270 }
271
272 automount_set_state(a, a->deserialized_state);
273 }
274
275 return 0;
276}
277
87f0e418 278static void automount_dump(Unit *u, FILE *f, const char *prefix) {
deb0a77c 279 char time_string[FORMAT_TIMESPAN_MAX];
a16e1123 280 Automount *a = AUTOMOUNT(u);
5cb5a6ff 281
a16e1123 282 assert(a);
5cb5a6ff
LP
283
284 fprintf(f,
a16e1123 285 "%sAutomount State: %s\n"
81a5c6d0 286 "%sResult: %s\n"
1cf18f27 287 "%sWhere: %s\n"
deb0a77c
MO
288 "%sDirectoryMode: %04o\n"
289 "%sTimeoutIdleUSec: %s\n",
a16e1123 290 prefix, automount_state_to_string(a->state),
81a5c6d0 291 prefix, automount_result_to_string(a->result),
1cf18f27 292 prefix, a->where,
deb0a77c
MO
293 prefix, a->directory_mode,
294 prefix, format_timespan(time_string, FORMAT_TIMESPAN_MAX, a->timeout_idle_usec, USEC_PER_SEC));
5cb5a6ff
LP
295}
296
81a5c6d0 297static void automount_enter_dead(Automount *a, AutomountResult f) {
8d567588
LP
298 assert(a);
299
81a5c6d0
LP
300 if (f != AUTOMOUNT_SUCCESS)
301 a->result = f;
8d567588 302
81a5c6d0 303 automount_set_state(a, a->result != AUTOMOUNT_SUCCESS ? AUTOMOUNT_FAILED : AUTOMOUNT_DEAD);
8d567588
LP
304}
305
306static int open_dev_autofs(Manager *m) {
307 struct autofs_dev_ioctl param;
308
309 assert(m);
310
311 if (m->dev_autofs_fd >= 0)
312 return m->dev_autofs_fd;
313
c9bc0764 314 label_fix("/dev/autofs", false, false);
56cf987f 315
0b2665c3 316 m->dev_autofs_fd = open("/dev/autofs", O_CLOEXEC|O_RDONLY);
4a62c710
MS
317 if (m->dev_autofs_fd < 0)
318 return log_error_errno(errno, "Failed to open /dev/autofs: %m");
8d567588
LP
319
320 init_autofs_dev_ioctl(&param);
321 if (ioctl(m->dev_autofs_fd, AUTOFS_DEV_IOCTL_VERSION, &param) < 0) {
03e334a1 322 m->dev_autofs_fd = safe_close(m->dev_autofs_fd);
8d567588
LP
323 return -errno;
324 }
325
326 log_debug("Autofs kernel version %i.%i", param.ver_major, param.ver_minor);
327
328 return m->dev_autofs_fd;
329}
330
331static int open_ioctl_fd(int dev_autofs_fd, const char *where, dev_t devid) {
332 struct autofs_dev_ioctl *param;
333 size_t l;
8d567588
LP
334
335 assert(dev_autofs_fd >= 0);
336 assert(where);
337
338 l = sizeof(struct autofs_dev_ioctl) + strlen(where) + 1;
0b2665c3 339 param = alloca(l);
8d567588
LP
340
341 init_autofs_dev_ioctl(param);
342 param->size = l;
343 param->ioctlfd = -1;
344 param->openmount.devid = devid;
345 strcpy(param->path, where);
346
0b2665c3
LP
347 if (ioctl(dev_autofs_fd, AUTOFS_DEV_IOCTL_OPENMOUNT, param) < 0)
348 return -errno;
8d567588 349
0b2665c3
LP
350 if (param->ioctlfd < 0)
351 return -EIO;
8d567588 352
f34beace 353 (void) fd_cloexec(param->ioctlfd, true);
0b2665c3 354 return param->ioctlfd;
8d567588
LP
355}
356
357static int autofs_protocol(int dev_autofs_fd, int ioctl_fd) {
358 uint32_t major, minor;
359 struct autofs_dev_ioctl param;
360
361 assert(dev_autofs_fd >= 0);
362 assert(ioctl_fd >= 0);
363
364 init_autofs_dev_ioctl(&param);
365 param.ioctlfd = ioctl_fd;
366
367 if (ioctl(dev_autofs_fd, AUTOFS_DEV_IOCTL_PROTOVER, &param) < 0)
368 return -errno;
369
370 major = param.protover.version;
371
372 init_autofs_dev_ioctl(&param);
373 param.ioctlfd = ioctl_fd;
374
375 if (ioctl(dev_autofs_fd, AUTOFS_DEV_IOCTL_PROTOSUBVER, &param) < 0)
376 return -errno;
377
378 minor = param.protosubver.sub_version;
379
380 log_debug("Autofs protocol version %i.%i", major, minor);
381 return 0;
382}
383
deb0a77c 384static int autofs_set_timeout(int dev_autofs_fd, int ioctl_fd, usec_t usec) {
8d567588
LP
385 struct autofs_dev_ioctl param;
386
387 assert(dev_autofs_fd >= 0);
388 assert(ioctl_fd >= 0);
389
390 init_autofs_dev_ioctl(&param);
391 param.ioctlfd = ioctl_fd;
deb0a77c
MO
392
393 /* Convert to seconds, rounding up. */
394 param.timeout.timeout = (usec + USEC_PER_SEC - 1) / USEC_PER_SEC;
8d567588
LP
395
396 if (ioctl(dev_autofs_fd, AUTOFS_DEV_IOCTL_TIMEOUT, &param) < 0)
397 return -errno;
398
399 return 0;
400}
401
402static int autofs_send_ready(int dev_autofs_fd, int ioctl_fd, uint32_t token, int status) {
403 struct autofs_dev_ioctl param;
404
405 assert(dev_autofs_fd >= 0);
406 assert(ioctl_fd >= 0);
407
408 init_autofs_dev_ioctl(&param);
409 param.ioctlfd = ioctl_fd;
410
411 if (status) {
412 param.fail.token = token;
413 param.fail.status = status;
414 } else
415 param.ready.token = token;
416
417 if (ioctl(dev_autofs_fd, status ? AUTOFS_DEV_IOCTL_FAIL : AUTOFS_DEV_IOCTL_READY, &param) < 0)
418 return -errno;
419
420 return 0;
421}
422
deb0a77c 423static int automount_send_ready(Automount *a, Set *tokens, int status) {
03e334a1 424 _cleanup_close_ int ioctl_fd = -1;
8d567588 425 unsigned token;
03e334a1 426 int r;
8d567588
LP
427
428 assert(a);
429 assert(status <= 0);
430
deb0a77c 431 if (set_isempty(tokens))
8d567588
LP
432 return 0;
433
0b2665c3 434 ioctl_fd = open_ioctl_fd(UNIT(a)->manager->dev_autofs_fd, a->where, a->dev_id);
03e334a1
LP
435 if (ioctl_fd < 0)
436 return ioctl_fd;
8d567588
LP
437
438 if (status)
f2341e0a 439 log_unit_debug_errno(UNIT(a), status, "Sending failure: %m");
8d567588 440 else
f2341e0a 441 log_unit_debug(UNIT(a), "Sending success.");
8d567588 442
e364ad06
LP
443 r = 0;
444
8d567588 445 /* Autofs thankfully does not hand out 0 as a token */
deb0a77c 446 while ((token = PTR_TO_UINT(set_steal_first(tokens)))) {
8d567588
LP
447 int k;
448
449 /* Autofs fun fact II:
450 *
451 * if you pass a positive status code here, the kernel will
452 * freeze! Yay! */
453
0b2665c3
LP
454 k = autofs_send_ready(UNIT(a)->manager->dev_autofs_fd,
455 ioctl_fd,
456 token,
457 status);
458 if (k < 0)
8d567588
LP
459 r = k;
460 }
461
8d567588
LP
462 return r;
463}
464
3dbadf9e
MO
465static int automount_start_expire(Automount *a);
466
deb0a77c 467int automount_update_mount(Automount *a, MountState old_state, MountState state) {
3dbadf9e
MO
468 int r;
469
deb0a77c
MO
470 assert(a);
471
472 switch (state) {
473 case MOUNT_MOUNTED:
474 case MOUNT_REMOUNTING:
475 automount_send_ready(a, a->tokens, 0);
3dbadf9e
MO
476 r = automount_start_expire(a);
477 if (r < 0)
478 log_unit_warning_errno(UNIT(a), r, "Failed to start expiration timer, ignoring: %m");
deb0a77c
MO
479 break;
480 case MOUNT_DEAD:
481 case MOUNT_UNMOUNTING:
482 case MOUNT_MOUNTING_SIGTERM:
483 case MOUNT_MOUNTING_SIGKILL:
484 case MOUNT_REMOUNTING_SIGTERM:
485 case MOUNT_REMOUNTING_SIGKILL:
486 case MOUNT_UNMOUNTING_SIGTERM:
487 case MOUNT_UNMOUNTING_SIGKILL:
488 case MOUNT_FAILED:
489 if (old_state != state)
490 automount_send_ready(a, a->tokens, -ENODEV);
3dbadf9e 491 (void) sd_event_source_set_enabled(a->expire_event_source, SD_EVENT_OFF);
deb0a77c
MO
492 break;
493 default:
494 break;
495 }
496
497 switch (state) {
498 case MOUNT_DEAD:
499 automount_send_ready(a, a->expire_tokens, 0);
500 break;
501 case MOUNT_MOUNTING:
502 case MOUNT_MOUNTING_DONE:
503 case MOUNT_MOUNTING_SIGTERM:
504 case MOUNT_MOUNTING_SIGKILL:
505 case MOUNT_REMOUNTING_SIGTERM:
506 case MOUNT_REMOUNTING_SIGKILL:
507 case MOUNT_UNMOUNTING_SIGTERM:
508 case MOUNT_UNMOUNTING_SIGKILL:
509 case MOUNT_FAILED:
510 if (old_state != state)
511 automount_send_ready(a, a->expire_tokens, -ENODEV);
512 break;
513 default:
514 break;
515 }
516
517 return 0;
518}
519
8d567588 520static void automount_enter_waiting(Automount *a) {
03e334a1 521 _cleanup_close_ int ioctl_fd = -1;
8d567588 522 int p[2] = { -1, -1 };
5ffa8c81
ZJS
523 char name[sizeof("systemd-")-1 + DECIMAL_STR_MAX(pid_t) + 1];
524 char options[sizeof("fd=,pgrp=,minproto=5,maxproto=5,direct")-1
525 + DECIMAL_STR_MAX(int) + DECIMAL_STR_MAX(gid_t) + 1];
8d567588 526 bool mounted = false;
03e334a1 527 int r, dev_autofs_fd;
8d567588
LP
528 struct stat st;
529
530 assert(a);
531 assert(a->pipe_fd < 0);
532 assert(a->where);
533
f2341e0a
LP
534 set_clear(a->tokens);
535
536 r = unit_fail_if_symlink(UNIT(a), a->where);
537 if (r < 0)
538 goto fail;
539
540 (void) mkdir_p_label(a->where, 0555);
541
542 unit_warn_if_dir_nonempty(UNIT(a), a->where);
8d567588 543
0b2665c3
LP
544 dev_autofs_fd = open_dev_autofs(UNIT(a)->manager);
545 if (dev_autofs_fd < 0) {
8d567588
LP
546 r = dev_autofs_fd;
547 goto fail;
548 }
549
a16e1123 550 if (pipe2(p, O_NONBLOCK|O_CLOEXEC) < 0) {
8d567588
LP
551 r = -errno;
552 goto fail;
553 }
554
5ffa8c81
ZJS
555 xsprintf(options, "fd=%i,pgrp="PID_FMT",minproto=5,maxproto=5,direct", p[1], getpgrp());
556 xsprintf(name, "systemd-"PID_FMT, getpid());
8d567588
LP
557 if (mount(name, a->where, "autofs", 0, options) < 0) {
558 r = -errno;
559 goto fail;
560 }
561
562 mounted = true;
563
03e334a1 564 p[1] = safe_close(p[1]);
8d567588
LP
565
566 if (stat(a->where, &st) < 0) {
567 r = -errno;
568 goto fail;
569 }
570
0b2665c3
LP
571 ioctl_fd = open_ioctl_fd(dev_autofs_fd, a->where, st.st_dev);
572 if (ioctl_fd < 0) {
8d567588
LP
573 r = ioctl_fd;
574 goto fail;
575 }
576
0b2665c3
LP
577 r = autofs_protocol(dev_autofs_fd, ioctl_fd);
578 if (r < 0)
8d567588
LP
579 goto fail;
580
deb0a77c 581 r = autofs_set_timeout(dev_autofs_fd, ioctl_fd, a->timeout_idle_usec);
0b2665c3 582 if (r < 0)
8d567588
LP
583 goto fail;
584
585 /* Autofs fun fact:
586 *
587 * Unless we close the ioctl fd here, for some weird reason
588 * the direct mount will not receive events from the
589 * kernel. */
590
151b9b96 591 r = sd_event_add_io(UNIT(a)->manager->event, &a->pipe_event_source, p[0], EPOLLIN, automount_dispatch_io, a);
0b2665c3 592 if (r < 0)
8d567588
LP
593 goto fail;
594
7dfbe2e3
TG
595 (void) sd_event_source_set_description(a->pipe_event_source, "automount-io");
596
8d567588
LP
597 a->pipe_fd = p[0];
598 a->dev_id = st.st_dev;
599
600 automount_set_state(a, AUTOMOUNT_WAITING);
601
602 return;
603
604fail:
3f2c0bec
LP
605 log_unit_error_errno(UNIT(a), r, "Failed to initialize automounter: %m");
606
3d94f76c 607 safe_close_pair(p);
8d567588 608
3f2c0bec
LP
609 if (mounted) {
610 r = repeat_unmount(a->where, MNT_DETACH);
611 if (r < 0)
612 log_error_errno(r, "Failed to unmount, ignoring: %m");
613 }
8d567588 614
81a5c6d0 615 automount_enter_dead(a, AUTOMOUNT_FAILURE_RESOURCES);
8d567588
LP
616}
617
deb0a77c
MO
618static void *expire_thread(void *p) {
619 struct autofs_dev_ioctl param;
620 _cleanup_(expire_data_freep) struct expire_data *data = (struct expire_data*)p;
621 int r;
622
623 assert(data->dev_autofs_fd >= 0);
624 assert(data->ioctl_fd >= 0);
625
626 init_autofs_dev_ioctl(&param);
627 param.ioctlfd = data->ioctl_fd;
628
629 do {
630 r = ioctl(data->dev_autofs_fd, AUTOFS_DEV_IOCTL_EXPIRE, &param);
631 } while (r >= 0);
632
633 if (errno != EAGAIN)
634 log_warning_errno(errno, "Failed to expire automount, ignoring: %m");
635
636 return NULL;
637}
638
deb0a77c
MO
639static int automount_dispatch_expire(sd_event_source *source, usec_t usec, void *userdata) {
640 Automount *a = AUTOMOUNT(userdata);
641 _cleanup_(expire_data_freep) struct expire_data *data = NULL;
642 int r;
643
644 assert(a);
645 assert(source == a->expire_event_source);
646
647 data = new0(struct expire_data, 1);
648 if (!data)
649 return log_oom();
650
651 data->ioctl_fd = -1;
652
653 data->dev_autofs_fd = fcntl(UNIT(a)->manager->dev_autofs_fd, F_DUPFD_CLOEXEC, 3);
654 if (data->dev_autofs_fd < 0)
f2341e0a 655 return log_unit_error_errno(UNIT(a), errno, "Failed to duplicate autofs fd: %m");
deb0a77c
MO
656
657 data->ioctl_fd = open_ioctl_fd(UNIT(a)->manager->dev_autofs_fd, a->where, a->dev_id);
658 if (data->ioctl_fd < 0)
f2341e0a 659 return log_unit_error_errno(UNIT(a), data->ioctl_fd, "Couldn't open autofs ioctl fd: %m");
deb0a77c
MO
660
661 r = asynchronous_job(expire_thread, data);
662 if (r < 0)
f2341e0a 663 return log_unit_error_errno(UNIT(a), r, "Failed to start expire job: %m");
deb0a77c
MO
664
665 data = NULL;
666
667 return automount_start_expire(a);
668}
669
670static int automount_start_expire(Automount *a) {
671 int r;
672 usec_t timeout;
673
674 assert(a);
675
93a3b53b
DM
676 if (a->timeout_idle_usec == 0)
677 return 0;
678
dbf5cc47 679 timeout = now(CLOCK_MONOTONIC) + MAX(a->timeout_idle_usec/3, USEC_PER_SEC);
deb0a77c
MO
680
681 if (a->expire_event_source) {
682 r = sd_event_source_set_time(a->expire_event_source, timeout);
683 if (r < 0)
684 return r;
685
686 return sd_event_source_set_enabled(a->expire_event_source, SD_EVENT_ONESHOT);
687 }
688
7dfbe2e3 689 r = sd_event_add_time(
deb0a77c
MO
690 UNIT(a)->manager->event,
691 &a->expire_event_source,
692 CLOCK_MONOTONIC, timeout, 0,
693 automount_dispatch_expire, a);
7dfbe2e3
TG
694 if (r < 0)
695 return r;
696
697 (void) sd_event_source_set_description(a->expire_event_source, "automount-expire");
698
699 return 0;
deb0a77c
MO
700}
701
8d567588 702static void automount_enter_runnning(Automount *a) {
4afd3348 703 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
3ecaa09b
LP
704 struct stat st;
705 int r;
8d567588
LP
706
707 assert(a);
8d567588 708
ba3e67a7
LP
709 /* We don't take mount requests anymore if we are supposed to
710 * shut down anyway */
31afa0a4 711 if (unit_stop_pending(UNIT(a))) {
f2341e0a 712 log_unit_debug(UNIT(a), "Suppressing automount request since unit stop is scheduled.");
deb0a77c
MO
713 automount_send_ready(a, a->tokens, -EHOSTDOWN);
714 automount_send_ready(a, a->expire_tokens, -EHOSTDOWN);
ba3e67a7
LP
715 return;
716 }
717
d2e54fae 718 mkdir_p_label(a->where, a->directory_mode);
8d567588 719
1cf18f27
LP
720 /* Before we do anything, let's see if somebody is playing games with us? */
721 if (lstat(a->where, &st) < 0) {
f2341e0a 722 log_unit_warning_errno(UNIT(a), errno, "Failed to stat automount point: %m");
8d567588
LP
723 goto fail;
724 }
725
726 if (!S_ISDIR(st.st_mode) || st.st_dev != a->dev_id)
f2341e0a 727 log_unit_info(UNIT(a), "Automount point already active?");
3ecaa09b 728 else {
e903182e
LP
729 Unit *trigger;
730
731 trigger = UNIT_TRIGGER(UNIT(a));
732 if (!trigger) {
733 log_unit_error(UNIT(a), "Unit to trigger vanished.");
734 goto fail;
735 }
736
737 r = manager_add_job(UNIT(a)->manager, JOB_START, trigger, JOB_REPLACE, &error, NULL);
3ecaa09b 738 if (r < 0) {
f2341e0a 739 log_unit_warning(UNIT(a), "Failed to queue mount startup job: %s", bus_error_message(&error, r));
3ecaa09b
LP
740 goto fail;
741 }
8d567588
LP
742 }
743
744 automount_set_state(a, AUTOMOUNT_RUNNING);
745 return;
746
747fail:
81a5c6d0 748 automount_enter_dead(a, AUTOMOUNT_FAILURE_RESOURCES);
8d567588
LP
749}
750
751static int automount_start(Unit *u) {
752 Automount *a = AUTOMOUNT(u);
e903182e 753 Unit *trigger;
8d567588
LP
754
755 assert(a);
74ac3cbd 756 assert(a->state == AUTOMOUNT_DEAD || a->state == AUTOMOUNT_FAILED);
01f78473 757
e26d6ce5 758 if (path_is_mount_point(a->where, 0) > 0) {
f2341e0a 759 log_unit_error(u, "Path %s is already a mount point, refusing start.", a->where);
8d567588
LP
760 return -EEXIST;
761 }
762
e903182e
LP
763 trigger = UNIT_TRIGGER(u);
764 if (!trigger || trigger->load_state != UNIT_LOADED) {
765 log_unit_error(u, "Refusing to start, unit to trigger not loaded.");
01f78473 766 return -ENOENT;
e903182e 767 }
8d567588 768
81a5c6d0 769 a->result = AUTOMOUNT_SUCCESS;
8d567588 770 automount_enter_waiting(a);
82a2b6bb 771 return 1;
8d567588
LP
772}
773
774static int automount_stop(Unit *u) {
775 Automount *a = AUTOMOUNT(u);
776
777 assert(a);
8d567588
LP
778 assert(a->state == AUTOMOUNT_WAITING || a->state == AUTOMOUNT_RUNNING);
779
81a5c6d0 780 automount_enter_dead(a, AUTOMOUNT_SUCCESS);
82a2b6bb 781 return 1;
8d567588
LP
782}
783
a16e1123
LP
784static int automount_serialize(Unit *u, FILE *f, FDSet *fds) {
785 Automount *a = AUTOMOUNT(u);
a16e1123 786 Iterator i;
a34ceba6
LP
787 void *p;
788 int r;
a16e1123
LP
789
790 assert(a);
791 assert(f);
792 assert(fds);
793
794 unit_serialize_item(u, f, "state", automount_state_to_string(a->state));
81a5c6d0 795 unit_serialize_item(u, f, "result", automount_result_to_string(a->result));
a16e1123
LP
796 unit_serialize_item_format(u, f, "dev-id", "%u", (unsigned) a->dev_id);
797
798 SET_FOREACH(p, a->tokens, i)
799 unit_serialize_item_format(u, f, "token", "%u", PTR_TO_UINT(p));
deb0a77c
MO
800 SET_FOREACH(p, a->expire_tokens, i)
801 unit_serialize_item_format(u, f, "expire-token", "%u", PTR_TO_UINT(p));
a16e1123 802
a34ceba6
LP
803 r = unit_serialize_item_fd(u, f, fds, "pipe-fd", a->pipe_fd);
804 if (r < 0)
805 return r;
a16e1123
LP
806
807 return 0;
808}
809
810static int automount_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
811 Automount *a = AUTOMOUNT(u);
812 int r;
813
814 assert(a);
815 assert(fds);
816
817 if (streq(key, "state")) {
818 AutomountState state;
819
0b2665c3
LP
820 state = automount_state_from_string(value);
821 if (state < 0)
f2341e0a 822 log_unit_debug(u, "Failed to parse state value: %s", value);
a16e1123
LP
823 else
824 a->deserialized_state = state;
81a5c6d0
LP
825 } else if (streq(key, "result")) {
826 AutomountResult f;
827
828 f = automount_result_from_string(value);
829 if (f < 0)
f2341e0a 830 log_unit_debug(u, "Failed to parse result value: %s", value);
81a5c6d0
LP
831 else if (f != AUTOMOUNT_SUCCESS)
832 a->result = f;
a16e1123 833
a16e1123
LP
834 } else if (streq(key, "dev-id")) {
835 unsigned d;
836
837 if (safe_atou(value, &d) < 0)
f2341e0a 838 log_unit_debug(u, "Failed to parse dev-id value: %s", value);
a16e1123
LP
839 else
840 a->dev_id = (unsigned) d;
841 } else if (streq(key, "token")) {
842 unsigned token;
843
844 if (safe_atou(value, &token) < 0)
f2341e0a 845 log_unit_debug(u, "Failed to parse token value: %s", value);
a16e1123 846 else {
f34beace
LP
847 r = set_ensure_allocated(&a->tokens, NULL);
848 if (r < 0) {
849 log_oom();
850 return 0;
851 }
a16e1123 852
0b2665c3
LP
853 r = set_put(a->tokens, UINT_TO_PTR(token));
854 if (r < 0)
f2341e0a 855 log_unit_error_errno(u, r, "Failed to add token to set: %m");
a16e1123 856 }
deb0a77c
MO
857 } else if (streq(key, "expire-token")) {
858 unsigned token;
859
860 if (safe_atou(value, &token) < 0)
f2341e0a 861 log_unit_debug(u, "Failed to parse token value: %s", value);
deb0a77c
MO
862 else {
863 r = set_ensure_allocated(&a->expire_tokens, NULL);
864 if (r < 0) {
865 log_oom();
866 return 0;
867 }
868
869 r = set_put(a->expire_tokens, UINT_TO_PTR(token));
870 if (r < 0)
f2341e0a 871 log_unit_error_errno(u, r, "Failed to add expire token to set: %m");
deb0a77c 872 }
a16e1123
LP
873 } else if (streq(key, "pipe-fd")) {
874 int fd;
875
876 if (safe_atoi(value, &fd) < 0 || fd < 0 || !fdset_contains(fds, fd))
f2341e0a 877 log_unit_debug(u, "Failed to parse pipe-fd value: %s", value);
a16e1123 878 else {
03e334a1 879 safe_close(a->pipe_fd);
a16e1123
LP
880 a->pipe_fd = fdset_remove(fds, fd);
881 }
882 } else
f2341e0a 883 log_unit_debug(u, "Unknown serialization key: %s", key);
a16e1123
LP
884
885 return 0;
886}
887
87f0e418 888static UnitActiveState automount_active_state(Unit *u) {
a16e1123 889 assert(u);
87f0e418 890
e537352b 891 return state_translation_table[AUTOMOUNT(u)->state];
5cb5a6ff
LP
892}
893
10a94420
LP
894static const char *automount_sub_state_to_string(Unit *u) {
895 assert(u);
896
a16e1123 897 return automount_state_to_string(AUTOMOUNT(u)->state);
10a94420
LP
898}
899
701cc384 900static bool automount_check_gc(Unit *u) {
3ecaa09b 901 assert(u);
701cc384 902
3ecaa09b 903 if (!UNIT_TRIGGER(u))
7573916f
LP
904 return false;
905
3ecaa09b 906 return UNIT_VTABLE(UNIT_TRIGGER(u))->check_gc(UNIT_TRIGGER(u));
701cc384
LP
907}
908
718db961 909static int automount_dispatch_io(sd_event_source *s, int fd, uint32_t events, void *userdata) {
4afd3348 910 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
8d567588 911 union autofs_v5_packet_union packet;
718db961 912 Automount *a = AUTOMOUNT(userdata);
5f8ae398 913 struct stat st;
e903182e 914 Unit *trigger;
8d567588
LP
915 int r;
916
8d567588
LP
917 assert(a);
918 assert(fd == a->pipe_fd);
919
920 if (events != EPOLLIN) {
f2341e0a 921 log_unit_error(UNIT(a), "Got invalid poll event %"PRIu32" on pipe (fd=%d)", events, fd);
8d567588
LP
922 goto fail;
923 }
924
a6dcc7e5
ZJS
925 r = loop_read_exact(a->pipe_fd, &packet, sizeof(packet), true);
926 if (r < 0) {
f2341e0a 927 log_unit_error_errno(UNIT(a), r, "Invalid read from pipe: %m");
8d567588
LP
928 goto fail;
929 }
930
931 switch (packet.hdr.type) {
932
933 case autofs_ptype_missing_direct:
941a4041
LP
934
935 if (packet.v5_packet.pid > 0) {
e42e801b 936 _cleanup_free_ char *p = NULL;
941a4041 937
87d2c1ff 938 get_process_comm(packet.v5_packet.pid, &p);
f2341e0a 939 log_unit_info(UNIT(a), "Got automount request for %s, triggered by %"PRIu32" (%s)", a->where, packet.v5_packet.pid, strna(p));
941a4041 940 } else
f2341e0a 941 log_unit_debug(UNIT(a), "Got direct mount request on %s", a->where);
8d567588 942
d5099efc 943 r = set_ensure_allocated(&a->tokens, NULL);
0b2665c3 944 if (r < 0) {
f2341e0a 945 log_unit_error(UNIT(a), "Failed to allocate token set.");
0b2665c3
LP
946 goto fail;
947 }
a16e1123 948
0b2665c3
LP
949 r = set_put(a->tokens, UINT_TO_PTR(packet.v5_packet.wait_queue_token));
950 if (r < 0) {
f2341e0a 951 log_unit_error_errno(UNIT(a), r, "Failed to remember token: %m");
8d567588
LP
952 goto fail;
953 }
954
955 automount_enter_runnning(a);
956 break;
957
deb0a77c 958 case autofs_ptype_expire_direct:
f2341e0a 959 log_unit_debug(UNIT(a), "Got direct umount request on %s", a->where);
deb0a77c
MO
960
961 (void) sd_event_source_set_enabled(a->expire_event_source, SD_EVENT_OFF);
962
963 r = set_ensure_allocated(&a->expire_tokens, NULL);
964 if (r < 0) {
f2341e0a 965 log_unit_error(UNIT(a), "Failed to allocate token set.");
deb0a77c
MO
966 goto fail;
967 }
968
969 r = set_put(a->expire_tokens, UINT_TO_PTR(packet.v5_packet.wait_queue_token));
970 if (r < 0) {
f2341e0a 971 log_unit_error_errno(UNIT(a), r, "Failed to remember token: %m");
deb0a77c
MO
972 goto fail;
973 }
5f8ae398
MO
974
975 /* Before we do anything, let's see if somebody is playing games with us? */
976 if (lstat(a->where, &st) < 0) {
977 log_unit_warning_errno(UNIT(a), errno, "Failed to stat automount point: %m");
978 goto fail;
979 }
980
981 if (!S_ISDIR(st.st_mode) || st.st_dev == a->dev_id) {
982 log_unit_info(UNIT(a), "Automount point already unmounted?");
983 automount_send_ready(a, a->expire_tokens, 0);
984 break;
985 }
986
e903182e
LP
987 trigger = UNIT_TRIGGER(UNIT(a));
988 if (!trigger) {
989 log_unit_error(UNIT(a), "Unit to trigger vanished.");
990 goto fail;
991 }
992
993 r = manager_add_job(UNIT(a)->manager, JOB_STOP, trigger, JOB_REPLACE, &error, NULL);
deb0a77c 994 if (r < 0) {
f2341e0a 995 log_unit_warning(UNIT(a), "Failed to queue umount startup job: %s", bus_error_message(&error, r));
deb0a77c
MO
996 goto fail;
997 }
998 break;
999
8d567588 1000 default:
f2341e0a 1001 log_unit_error(UNIT(a), "Received unknown automount request %i", packet.hdr.type);
8d567588
LP
1002 break;
1003 }
1004
718db961 1005 return 0;
8d567588
LP
1006
1007fail:
81a5c6d0 1008 automount_enter_dead(a, AUTOMOUNT_FAILURE_RESOURCES);
718db961 1009 return 0;
8d567588
LP
1010}
1011
1012static void automount_shutdown(Manager *m) {
1013 assert(m);
1014
03e334a1 1015 m->dev_autofs_fd = safe_close(m->dev_autofs_fd);
8d567588
LP
1016}
1017
74ac3cbd 1018static void automount_reset_failed(Unit *u) {
5632e374
LP
1019 Automount *a = AUTOMOUNT(u);
1020
1021 assert(a);
1022
74ac3cbd 1023 if (a->state == AUTOMOUNT_FAILED)
5632e374
LP
1024 automount_set_state(a, AUTOMOUNT_DEAD);
1025
81a5c6d0 1026 a->result = AUTOMOUNT_SUCCESS;
5632e374
LP
1027}
1028
1c2e9646 1029static bool automount_supported(void) {
0faacd47
LP
1030 static int supported = -1;
1031
0faacd47
LP
1032 if (supported < 0)
1033 supported = access("/dev/autofs", F_OK) >= 0;
1034
1035 return supported;
1036}
1037
81a5c6d0
LP
1038static const char* const automount_result_table[_AUTOMOUNT_RESULT_MAX] = {
1039 [AUTOMOUNT_SUCCESS] = "success",
1040 [AUTOMOUNT_FAILURE_RESOURCES] = "resources"
1041};
1042
1043DEFINE_STRING_TABLE_LOOKUP(automount_result, AutomountResult);
1044
87f0e418 1045const UnitVTable automount_vtable = {
7d17cfbc 1046 .object_size = sizeof(Automount),
718db961 1047
f975e971
LP
1048 .sections =
1049 "Unit\0"
1050 "Automount\0"
1051 "Install\0",
5cb5a6ff 1052
e537352b 1053 .no_alias = true,
8d567588 1054 .no_instances = true,
e537352b 1055
034c6ed7 1056 .init = automount_init,
e537352b 1057 .load = automount_load,
034c6ed7 1058 .done = automount_done,
5cb5a6ff 1059
a16e1123
LP
1060 .coldplug = automount_coldplug,
1061
034c6ed7 1062 .dump = automount_dump,
5cb5a6ff 1063
8d567588
LP
1064 .start = automount_start,
1065 .stop = automount_stop,
1066
a16e1123
LP
1067 .serialize = automount_serialize,
1068 .deserialize_item = automount_deserialize_item,
1069
10a94420 1070 .active_state = automount_active_state,
8d567588
LP
1071 .sub_state_to_string = automount_sub_state_to_string,
1072
701cc384
LP
1073 .check_gc = automount_check_gc,
1074
74ac3cbd 1075 .reset_failed = automount_reset_failed,
5632e374 1076
718db961 1077 .bus_vtable = bus_automount_vtable,
4139c1b2 1078
c6918296 1079 .shutdown = automount_shutdown,
0faacd47 1080 .supported = automount_supported,
c6918296
MS
1081
1082 .status_message_formats = {
1083 .finished_start_job = {
1084 [JOB_DONE] = "Set up automount %s.",
1085 [JOB_FAILED] = "Failed to set up automount %s.",
c6918296
MS
1086 },
1087 .finished_stop_job = {
1088 [JOB_DONE] = "Unset automount %s.",
1089 [JOB_FAILED] = "Failed to unset automount %s.",
1090 },
1091 },
5cb5a6ff 1092};