]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/automount.h
clang: fix numerous little issues found with clang-analyzer
[thirdparty/systemd.git] / src / automount.h
CommitLineData
5cb5a6ff
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef fooautomounthfoo
4#define fooautomounthfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
5cb5a6ff
LP
25typedef struct Automount Automount;
26
87f0e418 27#include "unit.h"
5cb5a6ff
LP
28
29typedef enum AutomountState {
30 AUTOMOUNT_DEAD,
5cb5a6ff
LP
31 AUTOMOUNT_WAITING,
32 AUTOMOUNT_RUNNING,
18c78fb1 33 AUTOMOUNT_MAINTENANCE,
e537352b
LP
34 _AUTOMOUNT_STATE_MAX,
35 _AUTOMOUNT_STATE_INVALID = -1
5cb5a6ff
LP
36} AutomountState;
37
5cb5a6ff
LP
38struct Automount {
39 Meta meta;
40
a16e1123 41 AutomountState state, deserialized_state;
5cb5a6ff 42
8d567588
LP
43 char *where;
44
5cb5a6ff 45 Mount *mount;
8d567588
LP
46
47 int pipe_fd;
48 Watch pipe_watch;
49 dev_t dev_id;
50
1cf18f27
LP
51 mode_t directory_mode;
52
8d567588
LP
53 Set *tokens;
54
55 bool failure:1;
5cb5a6ff
LP
56};
57
87f0e418 58extern const UnitVTable automount_vtable;
5cb5a6ff 59
8d567588
LP
60int automount_send_ready(Automount *a, int status);
61
6e2ef85b
LP
62int automount_add_one_mount_link(Automount *a, Mount *m);
63
a16e1123
LP
64const char* automount_state_to_string(AutomountState i);
65AutomountState automount_state_from_string(const char *s);
66
5cb5a6ff 67#endif