]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/dbus-mount.c
Merge pull request #2495 from heftig/master
[thirdparty/systemd.git] / src / core / dbus-mount.c
CommitLineData
4139c1b2
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
4139c1b2
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.
4139c1b2 15
5430f7f2 16 You should have received a copy of the GNU Lesser General Public License
4139c1b2
LP
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
07630cea
LP
20#include "bus-util.h"
21#include "dbus-cgroup.h"
4139c1b2 22#include "dbus-execute.h"
4ad49000 23#include "dbus-kill.h"
cf0fbc49 24#include "dbus-mount.h"
07630cea
LP
25#include "mount.h"
26#include "string-util.h"
27#include "unit.h"
718db961
LP
28
29static int property_get_what(
30 sd_bus *bus,
31 const char *path,
32 const char *interface,
33 const char *property,
34 sd_bus_message *reply,
ebcf1f97
LP
35 void *userdata,
36 sd_bus_error *error) {
718db961
LP
37
38 Mount *m = userdata;
4e85aff4
LP
39 const char *d;
40
718db961
LP
41 assert(bus);
42 assert(reply);
4e85aff4
LP
43 assert(m);
44
45 if (m->from_proc_self_mountinfo && m->parameters_proc_self_mountinfo.what)
46 d = m->parameters_proc_self_mountinfo.what;
47 else if (m->from_fragment && m->parameters_fragment.what)
48 d = m->parameters_fragment.what;
4e85aff4
LP
49 else
50 d = "";
51
718db961 52 return sd_bus_message_append(reply, "s", d);
4e85aff4
LP
53}
54
718db961
LP
55static int property_get_options(
56 sd_bus *bus,
57 const char *path,
58 const char *interface,
59 const char *property,
60 sd_bus_message *reply,
ebcf1f97
LP
61 void *userdata,
62 sd_bus_error *error) {
718db961
LP
63
64 Mount *m = userdata;
4e85aff4
LP
65 const char *d;
66
718db961
LP
67 assert(bus);
68 assert(reply);
4e85aff4
LP
69 assert(m);
70
71 if (m->from_proc_self_mountinfo && m->parameters_proc_self_mountinfo.options)
72 d = m->parameters_proc_self_mountinfo.options;
73 else if (m->from_fragment && m->parameters_fragment.options)
74 d = m->parameters_fragment.options;
4e85aff4
LP
75 else
76 d = "";
77
718db961 78 return sd_bus_message_append(reply, "s", d);
4e85aff4
LP
79}
80
718db961
LP
81static int property_get_type(
82 sd_bus *bus,
83 const char *path,
84 const char *interface,
85 const char *property,
86 sd_bus_message *reply,
ebcf1f97
LP
87 void *userdata,
88 sd_bus_error *error) {
718db961
LP
89
90 Mount *m = userdata;
4e85aff4
LP
91 const char *d;
92
718db961
LP
93 assert(bus);
94 assert(reply);
4e85aff4
LP
95 assert(m);
96
97 if (m->from_proc_self_mountinfo && m->parameters_proc_self_mountinfo.fstype)
98 d = m->parameters_proc_self_mountinfo.fstype;
99 else if (m->from_fragment && m->parameters_fragment.fstype)
100 d = m->parameters_fragment.fstype;
4e85aff4
LP
101 else
102 d = "";
103
718db961 104 return sd_bus_message_append(reply, "s", d);
4e85aff4
LP
105}
106
718db961
LP
107static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_result, mount_result, MountResult);
108
109const sd_bus_vtable bus_mount_vtable[] = {
110 SD_BUS_VTABLE_START(0),
556089dc 111 SD_BUS_PROPERTY("Where", "s", NULL, offsetof(Mount, where), SD_BUS_VTABLE_PROPERTY_CONST),
718db961
LP
112 SD_BUS_PROPERTY("What", "s", property_get_what, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
113 SD_BUS_PROPERTY("Options","s", property_get_options, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
114 SD_BUS_PROPERTY("Type", "s", property_get_type, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
556089dc 115 SD_BUS_PROPERTY("TimeoutUSec", "t", bus_property_get_usec, offsetof(Mount, timeout_usec), SD_BUS_VTABLE_PROPERTY_CONST),
718db961 116 SD_BUS_PROPERTY("ControlPID", "u", bus_property_get_pid, offsetof(Mount, control_pid), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
556089dc 117 SD_BUS_PROPERTY("DirectoryMode", "u", bus_property_get_mode, offsetof(Mount, directory_mode), SD_BUS_VTABLE_PROPERTY_CONST),
2dbd4a94 118 SD_BUS_PROPERTY("SloppyOptions", "b", bus_property_get_bool, offsetof(Mount, sloppy_options), SD_BUS_VTABLE_PROPERTY_CONST),
718db961 119 SD_BUS_PROPERTY("Result", "s", property_get_result, offsetof(Mount, result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
556089dc
LP
120 BUS_EXEC_COMMAND_VTABLE("ExecMount", offsetof(Mount, exec_command[MOUNT_EXEC_MOUNT]), SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION),
121 BUS_EXEC_COMMAND_VTABLE("ExecUnmount", offsetof(Mount, exec_command[MOUNT_EXEC_UNMOUNT]), SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION),
122 BUS_EXEC_COMMAND_VTABLE("ExecRemount", offsetof(Mount, exec_command[MOUNT_EXEC_REMOUNT]), SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION),
718db961 123 SD_BUS_VTABLE_END
d200735e
MS
124};
125
0e252f6b
TG
126static int bus_mount_set_transient_property(
127 Mount *m,
128 const char *name,
129 sd_bus_message *message,
130 UnitSetPropertiesMode mode,
131 sd_bus_error *error) {
132
133 const char *new_property;
134 char **property;
135 char *p;
136 int r;
137
138 assert(m);
139 assert(name);
140 assert(message);
141
142 if (streq(name, "What"))
143 property = &m->parameters_fragment.what;
144 else if (streq(name, "Options"))
145 property = &m->parameters_fragment.options;
146 else if (streq(name, "Type"))
147 property = &m->parameters_fragment.fstype;
148 else
149 return 0;
150
151 r = sd_bus_message_read(message, "s", &new_property);
152 if (r < 0)
153 return r;
154
155 if (mode != UNIT_CHECK) {
156 p = strdup(new_property);
157 if (!p)
158 return -ENOMEM;
159
160 free(*property);
161 *property = p;
162 }
163
164 return 1;
165}
166
74c964d3
LP
167int bus_mount_set_property(
168 Unit *u,
169 const char *name,
718db961 170 sd_bus_message *message,
74c964d3 171 UnitSetPropertiesMode mode,
718db961 172 sd_bus_error *error) {
74c964d3
LP
173
174 Mount *m = MOUNT(u);
0e252f6b 175 int r;
74c964d3 176
718db961 177 assert(m);
74c964d3 178 assert(name);
718db961 179 assert(message);
74c964d3 180
0e252f6b
TG
181 r = bus_cgroup_set_property(u, &m->cgroup_context, name, message, mode, error);
182 if (r != 0)
183 return r;
184
185 if (u->transient && u->load_state == UNIT_STUB) {
186 /* This is a transient unit, let's load a little more */
187
188 r = bus_mount_set_transient_property(m, name, message, mode, error);
189 if (r != 0)
190 return r;
191
192 r = bus_exec_context_set_transient_property(u, &m->exec_context, name, message, mode, error);
193 if (r != 0)
194 return r;
195
196 r = bus_kill_context_set_transient_property(u, &m->kill_context, name, message, mode, error);
197 if (r != 0)
198 return r;
199 }
200
201 return 0;
74c964d3
LP
202}
203
204int bus_mount_commit_properties(Unit *u) {
205 assert(u);
206
bc432dc7 207 unit_update_cgroup_members_masks(u);
74c964d3 208 unit_realize_cgroup(u);
bc432dc7 209
74c964d3
LP
210 return 0;
211}