2 * QEMU authorization framework base class
4 * Copyright (c) 2018 Red Hat, Inc.
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
9 * version 2 of the License, or (at your option) any later version.
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.
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/>.
21 #include "qemu/osdep.h"
22 #include "authz/base.h"
23 #include "qemu/module.h"
26 bool qauthz_is_allowed(QAuthZ
*authz
,
30 QAuthZClass
*cls
= QAUTHZ_GET_CLASS(authz
);
33 allowed
= cls
->is_allowed(authz
, identity
, errp
);
34 trace_qauthz_is_allowed(authz
, identity
, allowed
);
40 bool qauthz_is_allowed_by_id(const char *authzid
,
48 container
= object_get_objects_root();
49 obj
= object_resolve_path_component(container
,
52 error_setg(errp
, "Cannot find QAuthZ object ID %s",
57 if (!object_dynamic_cast(obj
, TYPE_QAUTHZ
)) {
58 error_setg(errp
, "Object '%s' is not a QAuthZ subclass",
65 return qauthz_is_allowed(authz
, identity
, errp
);
69 static const TypeInfo authz_info
= {
70 .parent
= TYPE_OBJECT
,
72 .instance_size
= sizeof(QAuthZ
),
73 .class_size
= sizeof(QAuthZClass
),
77 static void qauthz_register_types(void)
79 type_register_static(&authz_info
);
82 type_init(qauthz_register_types
)