blob: 24feac35abe86fea2d016a412a1eddf9cc24a12d [file] [log] [blame]
Daniel P. Berrangé55d86982018-05-11 12:19:59 +01001/*
2 * QEMU access control list file authorization driver
3 *
4 * Copyright (c) 2018 Red Hat, Inc.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
Chetan Pant036a80c2020-10-14 13:49:02 +00009 * version 2.1 of the License, or (at your option) any later version.
Daniel P. Berrangé55d86982018-05-11 12:19:59 +010010 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#include "qemu/osdep.h"
22#include "authz/listfile.h"
Markus Armbruster45b1f682019-03-15 15:51:17 +010023#include "trace.h"
Daniel P. Berrangé55d86982018-05-11 12:19:59 +010024#include "qemu/error-report.h"
25#include "qemu/main-loop.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020026#include "qemu/module.h"
Daniel P. Berrangé55d86982018-05-11 12:19:59 +010027#include "qemu/sockets.h"
28#include "qemu/filemonitor.h"
29#include "qom/object_interfaces.h"
30#include "qapi/qapi-visit-authz.h"
31#include "qapi/qmp/qjson.h"
32#include "qapi/qmp/qobject.h"
33#include "qapi/qmp/qerror.h"
34#include "qapi/qobject-input-visitor.h"
35
36
37static bool
38qauthz_list_file_is_allowed(QAuthZ *authz,
39 const char *identity,
40 Error **errp)
41{
42 QAuthZListFile *fauthz = QAUTHZ_LIST_FILE(authz);
43 if (fauthz->list) {
44 return qauthz_is_allowed(fauthz->list, identity, errp);
45 }
46
47 return false;
48}
49
50
51static QAuthZ *
52qauthz_list_file_load(QAuthZListFile *fauthz, Error **errp)
53{
54 GError *err = NULL;
55 gchar *content = NULL;
56 gsize len;
57 QObject *obj = NULL;
58 QDict *pdict;
59 Visitor *v = NULL;
60 QAuthZ *ret = NULL;
61
62 trace_qauthz_list_file_load(fauthz, fauthz->filename);
63 if (!g_file_get_contents(fauthz->filename, &content, &len, &err)) {
64 error_setg(errp, "Unable to read '%s': %s",
65 fauthz->filename, err->message);
66 goto cleanup;
67 }
68
69 obj = qobject_from_json(content, errp);
70 if (!obj) {
71 goto cleanup;
72 }
73
74 pdict = qobject_to(QDict, obj);
75 if (!pdict) {
76 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, "obj", "dict");
77 goto cleanup;
78 }
79
80 v = qobject_input_visitor_new(obj);
81
82 ret = (QAuthZ *)user_creatable_add_type(TYPE_QAUTHZ_LIST,
83 NULL, pdict, v, errp);
84
85 cleanup:
86 visit_free(v);
87 qobject_unref(obj);
88 if (err) {
89 g_error_free(err);
90 }
91 g_free(content);
92 return ret;
93}
94
95
96static void
Daniel P. Berrangéb4682a62019-03-19 15:47:47 +000097qauthz_list_file_event(int64_t wd G_GNUC_UNUSED,
Daniel P. Berrangé55d86982018-05-11 12:19:59 +010098 QFileMonitorEvent ev G_GNUC_UNUSED,
99 const char *name G_GNUC_UNUSED,
100 void *opaque)
101{
102 QAuthZListFile *fauthz = opaque;
103 Error *err = NULL;
104
105 if (ev != QFILE_MONITOR_EVENT_MODIFIED &&
106 ev != QFILE_MONITOR_EVENT_CREATED) {
107 return;
108 }
109
110 object_unref(OBJECT(fauthz->list));
111 fauthz->list = qauthz_list_file_load(fauthz, &err);
112 trace_qauthz_list_file_refresh(fauthz,
113 fauthz->filename, fauthz->list ? 1 : 0);
114 if (!fauthz->list) {
115 error_report_err(err);
116 }
117}
118
119static void
120qauthz_list_file_complete(UserCreatable *uc, Error **errp)
121{
122 QAuthZListFile *fauthz = QAUTHZ_LIST_FILE(uc);
123 gchar *dir = NULL, *file = NULL;
124
Eduardo Habkost14b39482020-10-08 16:27:11 -0400125 if (!fauthz->filename) {
126 error_setg(errp, "filename not provided");
127 return;
128 }
129
Daniel P. Berrangé55d86982018-05-11 12:19:59 +0100130 fauthz->list = qauthz_list_file_load(fauthz, errp);
131
132 if (!fauthz->refresh) {
133 return;
134 }
135
136 fauthz->file_monitor = qemu_file_monitor_new(errp);
137 if (!fauthz->file_monitor) {
138 return;
139 }
140
141 dir = g_path_get_dirname(fauthz->filename);
142 if (g_str_equal(dir, ".")) {
143 error_setg(errp, "Filename must be an absolute path");
144 goto cleanup;
145 }
146 file = g_path_get_basename(fauthz->filename);
147 if (g_str_equal(file, ".")) {
148 error_setg(errp, "Path has no trailing filename component");
149 goto cleanup;
150 }
151
152 fauthz->file_watch = qemu_file_monitor_add_watch(
153 fauthz->file_monitor, dir, file,
154 qauthz_list_file_event, fauthz, errp);
155 if (fauthz->file_watch < 0) {
156 goto cleanup;
157 }
158
159 cleanup:
160 g_free(file);
161 g_free(dir);
162}
163
164
165static void
166qauthz_list_file_prop_set_filename(Object *obj,
167 const char *value,
168 Error **errp G_GNUC_UNUSED)
169{
170 QAuthZListFile *fauthz = QAUTHZ_LIST_FILE(obj);
171
172 g_free(fauthz->filename);
173 fauthz->filename = g_strdup(value);
174}
175
176
177static char *
178qauthz_list_file_prop_get_filename(Object *obj,
179 Error **errp G_GNUC_UNUSED)
180{
181 QAuthZListFile *fauthz = QAUTHZ_LIST_FILE(obj);
182
183 return g_strdup(fauthz->filename);
184}
185
186
187static void
188qauthz_list_file_prop_set_refresh(Object *obj,
189 bool value,
190 Error **errp G_GNUC_UNUSED)
191{
192 QAuthZListFile *fauthz = QAUTHZ_LIST_FILE(obj);
193
194 fauthz->refresh = value;
195}
196
197
198static bool
199qauthz_list_file_prop_get_refresh(Object *obj,
200 Error **errp G_GNUC_UNUSED)
201{
202 QAuthZListFile *fauthz = QAUTHZ_LIST_FILE(obj);
203
204 return fauthz->refresh;
205}
206
207
208static void
209qauthz_list_file_finalize(Object *obj)
210{
211 QAuthZListFile *fauthz = QAUTHZ_LIST_FILE(obj);
212
213 object_unref(OBJECT(fauthz->list));
214 g_free(fauthz->filename);
215 qemu_file_monitor_free(fauthz->file_monitor);
216}
217
218
219static void
220qauthz_list_file_class_init(ObjectClass *oc, void *data)
221{
222 UserCreatableClass *ucc = USER_CREATABLE_CLASS(oc);
223 QAuthZClass *authz = QAUTHZ_CLASS(oc);
224
225 ucc->complete = qauthz_list_file_complete;
226
227 object_class_property_add_str(oc, "filename",
228 qauthz_list_file_prop_get_filename,
Markus Armbrusterd2623122020-05-05 17:29:22 +0200229 qauthz_list_file_prop_set_filename);
Daniel P. Berrangé55d86982018-05-11 12:19:59 +0100230 object_class_property_add_bool(oc, "refresh",
231 qauthz_list_file_prop_get_refresh,
Markus Armbrusterd2623122020-05-05 17:29:22 +0200232 qauthz_list_file_prop_set_refresh);
Daniel P. Berrangé55d86982018-05-11 12:19:59 +0100233
234 authz->is_allowed = qauthz_list_file_is_allowed;
235}
236
237
238static void
239qauthz_list_file_init(Object *obj)
240{
241 QAuthZListFile *authz = QAUTHZ_LIST_FILE(obj);
242
243 authz->file_watch = -1;
244#ifdef CONFIG_INOTIFY1
Jafar Abdi834e8bf2019-03-23 17:26:34 +0300245 authz->refresh = true;
Daniel P. Berrangé55d86982018-05-11 12:19:59 +0100246#endif
247}
248
249
250QAuthZListFile *qauthz_list_file_new(const char *id,
251 const char *filename,
252 bool refresh,
253 Error **errp)
254{
255 return QAUTHZ_LIST_FILE(
256 object_new_with_props(TYPE_QAUTHZ_LIST_FILE,
257 object_get_objects_root(),
258 id, errp,
259 "filename", filename,
260 "refresh", refresh ? "yes" : "no",
261 NULL));
262}
263
264
265static const TypeInfo qauthz_list_file_info = {
266 .parent = TYPE_QAUTHZ,
267 .name = TYPE_QAUTHZ_LIST_FILE,
268 .instance_init = qauthz_list_file_init,
269 .instance_size = sizeof(QAuthZListFile),
270 .instance_finalize = qauthz_list_file_finalize,
Daniel P. Berrangé55d86982018-05-11 12:19:59 +0100271 .class_init = qauthz_list_file_class_init,
272 .interfaces = (InterfaceInfo[]) {
273 { TYPE_USER_CREATABLE },
274 { }
275 }
276};
277
278
279static void
280qauthz_list_file_register_types(void)
281{
282 type_register_static(&qauthz_list_file_info);
283}
284
285
286type_init(qauthz_list_file_register_types);