]> git.proxmox.com Git - mirror_qemu.git/blame - backends/rng.c
add optional 2nd stage initialization to -object/object-add commands
[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
44void rng_backend_open(RngBackend *s, Error **errp)
45{
46 object_property_set_bool(OBJECT(s), true, "opened", errp);
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
8c43a6f0 80static const TypeInfo rng_backend_info = {
a9b7b2ad
AL
81 .name = TYPE_RNG_BACKEND,
82 .parent = TYPE_OBJECT,
83 .instance_size = sizeof(RngBackend),
84 .instance_init = rng_backend_init,
85 .class_size = sizeof(RngBackendClass),
86 .abstract = true,
269e09f3
IM
87 .interfaces = (InterfaceInfo[]) {
88 { TYPE_USER_CREATABLE },
89 { }
90 }
a9b7b2ad
AL
91};
92
93static void register_types(void)
94{
95 type_register_static(&rng_backend_info);
96}
97
98type_init(register_types);