]> git.proxmox.com Git - mirror_qemu.git/blame - backends/rng.c
hw: Consistently name Error ** objects errp, and not err
[mirror_qemu.git] / backends / rng.c
CommitLineData
a9b7b2ad
AL
1/*
2 * QEMU Random Number Generator Backend
3 *
4 * Copyright IBM, Corp. 2012
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 */
12
dccfcd0e 13#include "sysemu/rng.h"
7b1b5d19 14#include "qapi/qmp/qerror.h"
269e09f3 15#include "qom/object_interfaces.h"
a9b7b2ad
AL
16
17void rng_backend_request_entropy(RngBackend *s, size_t size,
18 EntropyReceiveFunc *receive_entropy,
19 void *opaque)
20{
21 RngBackendClass *k = RNG_BACKEND_GET_CLASS(s);
22
23 if (k->request_entropy) {
24 k->request_entropy(s, size, receive_entropy, opaque);
25 }
26}
27
28void rng_backend_cancel_requests(RngBackend *s)
29{
30 RngBackendClass *k = RNG_BACKEND_GET_CLASS(s);
31
32 if (k->cancel_requests) {
33 k->cancel_requests(s);
34 }
35}
36
37static bool rng_backend_prop_get_opened(Object *obj, Error **errp)
38{
39 RngBackend *s = RNG_BACKEND(obj);
40
41 return s->opened;
42}
43
57d3e1b3 44static void rng_backend_complete(UserCreatable *uc, Error **errp)
a9b7b2ad 45{
57d3e1b3 46 object_property_set_bool(OBJECT(uc), true, "opened", errp);
a9b7b2ad
AL
47}
48
49static void rng_backend_prop_set_opened(Object *obj, bool value, Error **errp)
50{
51 RngBackend *s = RNG_BACKEND(obj);
52 RngBackendClass *k = RNG_BACKEND_GET_CLASS(s);
53
54 if (value == s->opened) {
55 return;
56 }
57
58 if (!value && s->opened) {
59 error_set(errp, QERR_PERMISSION_DENIED);
60 return;
61 }
62
63 if (k->opened) {
64 k->opened(s, errp);
65 }
66
67 if (!error_is_set(errp)) {
68 s->opened = value;
69 }
70}
71
72static void rng_backend_init(Object *obj)
73{
74 object_property_add_bool(obj, "opened",
75 rng_backend_prop_get_opened,
76 rng_backend_prop_set_opened,
77 NULL);
78}
79
57d3e1b3
IM
80static void rng_backend_class_init(ObjectClass *oc, void *data)
81{
82 UserCreatableClass *ucc = USER_CREATABLE_CLASS(oc);
83
84 ucc->complete = rng_backend_complete;
85}
86
8c43a6f0 87static const TypeInfo rng_backend_info = {
a9b7b2ad
AL
88 .name = TYPE_RNG_BACKEND,
89 .parent = TYPE_OBJECT,
90 .instance_size = sizeof(RngBackend),
91 .instance_init = rng_backend_init,
92 .class_size = sizeof(RngBackendClass),
57d3e1b3 93 .class_init = rng_backend_class_init,
a9b7b2ad 94 .abstract = true,
269e09f3
IM
95 .interfaces = (InterfaceInfo[]) {
96 { TYPE_USER_CREATABLE },
97 { }
98 }
a9b7b2ad
AL
99};
100
101static void register_types(void)
102{
103 type_register_static(&rng_backend_info);
104}
105
106type_init(register_types);