]>
Commit | Line | Data |
---|---|---|
a9b7b2ad AL |
1 | /* |
2 | * QEMU Random Number Generator Backend | |
3 | * | |
4 | * Copyright IBM, Corp. 2012 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
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 | ||
9c058332 | 13 | #include "qemu/osdep.h" |
dccfcd0e | 14 | #include "sysemu/rng.h" |
da34e65c | 15 | #include "qapi/error.h" |
7b1b5d19 | 16 | #include "qapi/qmp/qerror.h" |
0b8fa32f | 17 | #include "qemu/module.h" |
269e09f3 | 18 | #include "qom/object_interfaces.h" |
a9b7b2ad AL |
19 | |
20 | void rng_backend_request_entropy(RngBackend *s, size_t size, | |
21 | EntropyReceiveFunc *receive_entropy, | |
22 | void *opaque) | |
23 | { | |
24 | RngBackendClass *k = RNG_BACKEND_GET_CLASS(s); | |
60253ed1 | 25 | RngRequest *req; |
a9b7b2ad AL |
26 | |
27 | if (k->request_entropy) { | |
60253ed1 LP |
28 | req = g_malloc(sizeof(*req)); |
29 | ||
30 | req->offset = 0; | |
31 | req->size = size; | |
32 | req->receive_entropy = receive_entropy; | |
33 | req->opaque = opaque; | |
34 | req->data = g_malloc(req->size); | |
35 | ||
36 | k->request_entropy(s, req); | |
37 | ||
443590c2 | 38 | QSIMPLEQ_INSERT_TAIL(&s->requests, req, next); |
a9b7b2ad AL |
39 | } |
40 | } | |
41 | ||
a9b7b2ad AL |
42 | static bool rng_backend_prop_get_opened(Object *obj, Error **errp) |
43 | { | |
44 | RngBackend *s = RNG_BACKEND(obj); | |
45 | ||
46 | return s->opened; | |
47 | } | |
48 | ||
57d3e1b3 | 49 | static void rng_backend_complete(UserCreatable *uc, Error **errp) |
a9b7b2ad | 50 | { |
57d3e1b3 | 51 | object_property_set_bool(OBJECT(uc), true, "opened", errp); |
a9b7b2ad AL |
52 | } |
53 | ||
54 | static void rng_backend_prop_set_opened(Object *obj, bool value, Error **errp) | |
55 | { | |
56 | RngBackend *s = RNG_BACKEND(obj); | |
57 | RngBackendClass *k = RNG_BACKEND_GET_CLASS(s); | |
65cd9064 | 58 | Error *local_err = NULL; |
a9b7b2ad AL |
59 | |
60 | if (value == s->opened) { | |
61 | return; | |
62 | } | |
63 | ||
64 | if (!value && s->opened) { | |
c6bd8c70 | 65 | error_setg(errp, QERR_PERMISSION_DENIED); |
a9b7b2ad AL |
66 | return; |
67 | } | |
68 | ||
69 | if (k->opened) { | |
65cd9064 MA |
70 | k->opened(s, &local_err); |
71 | if (local_err) { | |
72 | error_propagate(errp, local_err); | |
73 | return; | |
74 | } | |
a9b7b2ad AL |
75 | } |
76 | ||
65cd9064 | 77 | s->opened = true; |
a9b7b2ad AL |
78 | } |
79 | ||
9f14b0ad LP |
80 | static void rng_backend_free_request(RngRequest *req) |
81 | { | |
82 | g_free(req->data); | |
83 | g_free(req); | |
84 | } | |
85 | ||
86 | static void rng_backend_free_requests(RngBackend *s) | |
87 | { | |
443590c2 | 88 | RngRequest *req, *next; |
9f14b0ad | 89 | |
443590c2 LP |
90 | QSIMPLEQ_FOREACH_SAFE(req, &s->requests, next, next) { |
91 | rng_backend_free_request(req); | |
9f14b0ad LP |
92 | } |
93 | ||
443590c2 | 94 | QSIMPLEQ_INIT(&s->requests); |
9f14b0ad LP |
95 | } |
96 | ||
97 | void rng_backend_finalize_request(RngBackend *s, RngRequest *req) | |
98 | { | |
443590c2 | 99 | QSIMPLEQ_REMOVE(&s->requests, req, RngRequest, next); |
9f14b0ad LP |
100 | rng_backend_free_request(req); |
101 | } | |
102 | ||
a9b7b2ad AL |
103 | static void rng_backend_init(Object *obj) |
104 | { | |
443590c2 LP |
105 | RngBackend *s = RNG_BACKEND(obj); |
106 | ||
107 | QSIMPLEQ_INIT(&s->requests); | |
108 | ||
a9b7b2ad AL |
109 | object_property_add_bool(obj, "opened", |
110 | rng_backend_prop_get_opened, | |
111 | rng_backend_prop_set_opened, | |
112 | NULL); | |
113 | } | |
114 | ||
9f14b0ad LP |
115 | static void rng_backend_finalize(Object *obj) |
116 | { | |
117 | RngBackend *s = RNG_BACKEND(obj); | |
118 | ||
119 | rng_backend_free_requests(s); | |
120 | } | |
121 | ||
57d3e1b3 IM |
122 | static void rng_backend_class_init(ObjectClass *oc, void *data) |
123 | { | |
124 | UserCreatableClass *ucc = USER_CREATABLE_CLASS(oc); | |
125 | ||
126 | ucc->complete = rng_backend_complete; | |
127 | } | |
128 | ||
8c43a6f0 | 129 | static const TypeInfo rng_backend_info = { |
a9b7b2ad AL |
130 | .name = TYPE_RNG_BACKEND, |
131 | .parent = TYPE_OBJECT, | |
132 | .instance_size = sizeof(RngBackend), | |
133 | .instance_init = rng_backend_init, | |
9f14b0ad | 134 | .instance_finalize = rng_backend_finalize, |
a9b7b2ad | 135 | .class_size = sizeof(RngBackendClass), |
57d3e1b3 | 136 | .class_init = rng_backend_class_init, |
a9b7b2ad | 137 | .abstract = true, |
269e09f3 IM |
138 | .interfaces = (InterfaceInfo[]) { |
139 | { TYPE_USER_CREATABLE }, | |
140 | { } | |
141 | } | |
a9b7b2ad AL |
142 | }; |
143 | ||
144 | static void register_types(void) | |
145 | { | |
146 | type_register_static(&rng_backend_info); | |
147 | } | |
148 | ||
149 | type_init(register_types); |