]> git.proxmox.com Git - systemd.git/blame - src/core/automount.h
Imported Upstream version 208
[systemd.git] / src / core / automount.h
CommitLineData
663996b3
MS
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#pragma once
4
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24typedef struct Automount Automount;
25
26#include "unit.h"
27
28typedef enum AutomountState {
29 AUTOMOUNT_DEAD,
30 AUTOMOUNT_WAITING,
31 AUTOMOUNT_RUNNING,
32 AUTOMOUNT_FAILED,
33 _AUTOMOUNT_STATE_MAX,
34 _AUTOMOUNT_STATE_INVALID = -1
35} AutomountState;
36
37typedef enum AutomountResult {
38 AUTOMOUNT_SUCCESS,
39 AUTOMOUNT_FAILURE_RESOURCES,
40 _AUTOMOUNT_RESULT_MAX,
41 _AUTOMOUNT_RESULT_INVALID = -1
42} AutomountResult;
43
44struct Automount {
45 Unit meta;
46
47 AutomountState state, deserialized_state;
48
49 char *where;
50
51 int pipe_fd;
52 mode_t directory_mode;
53 Watch pipe_watch;
54 dev_t dev_id;
55
56 Set *tokens;
57
58 AutomountResult result;
59};
60
61extern const UnitVTable automount_vtable;
62
63int automount_send_ready(Automount *a, int status);
64
663996b3
MS
65const char* automount_state_to_string(AutomountState i) _const_;
66AutomountState automount_state_from_string(const char *s) _pure_;
67
68const char* automount_result_to_string(AutomountResult i) _const_;
69AutomountResult automount_result_from_string(const char *s) _pure_;