2 * QEMU Plugin Core Loader Code
4 * This is the code responsible for loading and unloading the plugins.
5 * Aside from the basic housekeeping tasks we also need to ensure any
6 * generated code is flushed when we remove a plugin so we cannot end
7 * up calling and unloaded helper function.
9 * Copyright (C) 2017, Emilio G. Cota <cota@braap.org>
10 * Copyright (C) 2019, Linaro
12 * License: GNU GPL, version 2 or later.
13 * See the COPYING file in the top-level directory.
15 * SPDX-License-Identifier: GPL-2.0-or-later
18 #include "qemu/osdep.h"
19 #include "qemu/error-report.h"
20 #include "qemu/config-file.h"
21 #include "qapi/error.h"
22 #include "qemu/option.h"
23 #include "qemu/rcu_queue.h"
25 #include "qemu/bitmap.h"
26 #include "qemu/xxhash.h"
27 #include "qemu/plugin.h"
28 #include "hw/core/cpu.h"
30 #include "exec/exec-all.h"
31 #ifndef CONFIG_USER_ONLY
32 #include "hw/boards.h"
38 * For convenience we use a bitmap for plugin.mask, but really all we need is a
39 * u32, which is what we store in TranslationBlock.
41 QEMU_BUILD_BUG_ON(QEMU_PLUGIN_EV_MAX
> 32);
43 struct qemu_plugin_desc
{
46 QTAILQ_ENTRY(qemu_plugin_desc
) entry
;
50 struct qemu_plugin_parse_arg
{
52 struct qemu_plugin_desc
*curr
;
55 QemuOptsList qemu_plugin_opts
= {
57 .implied_opt_name
= "file",
58 .head
= QTAILQ_HEAD_INITIALIZER(qemu_plugin_opts
.head
),
60 /* do our own parsing to support multiple plugins */
65 typedef int (*qemu_plugin_install_func_t
)(qemu_plugin_id_t
, const qemu_info_t
*, int, char **);
67 extern struct qemu_plugin_state plugin
;
69 void qemu_plugin_add_dyn_cb_arr(GArray
*arr
)
71 uint32_t hash
= qemu_xxhash2((uint64_t)(uintptr_t)arr
);
74 inserted
= qht_insert(&plugin
.dyn_cb_arr_ht
, arr
, hash
, NULL
);
78 static struct qemu_plugin_desc
*plugin_find_desc(QemuPluginList
*head
,
81 struct qemu_plugin_desc
*desc
;
83 QTAILQ_FOREACH(desc
, head
, entry
) {
84 if (strcmp(desc
->path
, path
) == 0) {
91 static int plugin_add(void *opaque
, const char *name
, const char *value
,
94 struct qemu_plugin_parse_arg
*arg
= opaque
;
95 struct qemu_plugin_desc
*p
;
97 if (strcmp(name
, "file") == 0) {
98 if (strcmp(value
, "") == 0) {
99 error_setg(errp
, "requires a non-empty argument");
102 p
= plugin_find_desc(arg
->head
, value
);
104 p
= g_new0(struct qemu_plugin_desc
, 1);
105 p
->path
= g_strdup(value
);
106 QTAILQ_INSERT_TAIL(arg
->head
, p
, entry
);
109 } else if (strcmp(name
, "arg") == 0) {
110 if (arg
->curr
== NULL
) {
111 error_setg(errp
, "missing earlier '-plugin file=' option");
116 p
->argv
= g_realloc_n(p
->argv
, p
->argc
, sizeof(char *));
117 p
->argv
[p
->argc
- 1] = g_strdup(value
);
119 error_setg(errp
, "-plugin: unexpected parameter '%s'; ignored", name
);
124 void qemu_plugin_opt_parse(const char *optarg
, QemuPluginList
*head
)
126 struct qemu_plugin_parse_arg arg
;
129 opts
= qemu_opts_parse_noisily(qemu_find_opts("plugin"), optarg
, true);
135 qemu_opt_foreach(opts
, plugin_add
, &arg
, &error_fatal
);
140 * From: https://en.wikipedia.org/wiki/Xorshift
141 * This is faster than rand_r(), and gives us a wider range (RAND_MAX is only
142 * guaranteed to be >= INT_MAX).
144 static uint64_t xorshift64star(uint64_t x
)
146 x
^= x
>> 12; /* a */
147 x
^= x
<< 25; /* b */
148 x
^= x
>> 27; /* c */
149 return x
* UINT64_C(2685821657736338717);
152 static int plugin_load(struct qemu_plugin_desc
*desc
, const qemu_info_t
*info
)
154 qemu_plugin_install_func_t install
;
155 struct qemu_plugin_ctx
*ctx
;
159 ctx
= qemu_memalign(qemu_dcache_linesize
, sizeof(*ctx
));
160 memset(ctx
, 0, sizeof(*ctx
));
163 ctx
->handle
= g_module_open(desc
->path
, G_MODULE_BIND_LOCAL
);
164 if (ctx
->handle
== NULL
) {
165 error_report("%s: %s", __func__
, g_module_error());
169 if (!g_module_symbol(ctx
->handle
, "qemu_plugin_install", &sym
)) {
170 error_report("%s: %s", __func__
, g_module_error());
173 install
= (qemu_plugin_install_func_t
) sym
;
174 /* symbol was found; it could be NULL though */
175 if (install
== NULL
) {
176 error_report("%s: %s: qemu_plugin_install is NULL",
177 __func__
, desc
->path
);
181 if (!g_module_symbol(ctx
->handle
, "qemu_plugin_version", &sym
)) {
182 error_report("TCG plugin %s does not declare API version %s",
183 desc
->path
, g_module_error());
186 int version
= *(int *)sym
;
187 if (version
< QEMU_PLUGIN_MIN_VERSION
) {
188 error_report("TCG plugin %s requires API version %d, but "
189 "this QEMU supports only a minimum version of %d",
190 desc
->path
, version
, QEMU_PLUGIN_MIN_VERSION
);
192 } else if (version
> QEMU_PLUGIN_VERSION
) {
193 error_report("TCG plugin %s requires API version %d, but "
194 "this QEMU supports only up to version %d",
195 desc
->path
, version
, QEMU_PLUGIN_VERSION
);
200 qemu_rec_mutex_lock(&plugin
.lock
);
202 /* find an unused random id with &ctx as the seed */
203 ctx
->id
= (uint64_t)(uintptr_t)ctx
;
207 ctx
->id
= xorshift64star(ctx
->id
);
208 existing
= g_hash_table_lookup(plugin
.id_ht
, &ctx
->id
);
209 if (likely(existing
== NULL
)) {
212 success
= g_hash_table_insert(plugin
.id_ht
, &ctx
->id
, &ctx
->id
);
217 QTAILQ_INSERT_TAIL(&plugin
.ctxs
, ctx
, entry
);
218 ctx
->installing
= true;
219 rc
= install(ctx
->id
, info
, desc
->argc
, desc
->argv
);
220 ctx
->installing
= false;
222 error_report("%s: qemu_plugin_install returned error code %d",
225 * we cannot rely on the plugin doing its own cleanup, so
226 * call a full uninstall if the plugin did not yet call it.
228 if (!ctx
->uninstalling
) {
229 plugin_reset_uninstall(ctx
->id
, NULL
, false);
233 qemu_rec_mutex_unlock(&plugin
.lock
);
242 /* call after having removed @desc from the list */
243 static void plugin_desc_free(struct qemu_plugin_desc
*desc
)
247 for (i
= 0; i
< desc
->argc
; i
++) {
248 g_free(desc
->argv
[i
]);
256 * qemu_plugin_load_list - load a list of plugins
257 * @head: head of the list of descriptors of the plugins to be loaded
259 * Returns 0 if all plugins in the list are installed, !0 otherwise.
261 * Note: the descriptor of each successfully installed plugin is removed
262 * from the list given by @head.
264 int qemu_plugin_load_list(QemuPluginList
*head
)
266 struct qemu_plugin_desc
*desc
, *next
;
267 g_autofree qemu_info_t
*info
= g_new0(qemu_info_t
, 1);
269 info
->target_name
= TARGET_NAME
;
270 info
->version
.min
= QEMU_PLUGIN_MIN_VERSION
;
271 info
->version
.cur
= QEMU_PLUGIN_VERSION
;
272 #ifndef CONFIG_USER_ONLY
273 MachineState
*ms
= MACHINE(qdev_get_machine());
274 info
->system_emulation
= true;
275 info
->system
.smp_vcpus
= ms
->smp
.cpus
;
276 info
->system
.max_vcpus
= ms
->smp
.max_cpus
;
278 info
->system_emulation
= false;
281 QTAILQ_FOREACH_SAFE(desc
, head
, entry
, next
) {
284 err
= plugin_load(desc
, info
);
288 QTAILQ_REMOVE(head
, desc
, entry
);
293 struct qemu_plugin_reset_data
{
294 struct qemu_plugin_ctx
*ctx
;
295 qemu_plugin_simple_cb_t cb
;
299 static void plugin_reset_destroy__locked(struct qemu_plugin_reset_data
*data
)
301 struct qemu_plugin_ctx
*ctx
= data
->ctx
;
302 enum qemu_plugin_event ev
;
306 * After updating the subscription lists there is no need to wait for an RCU
307 * grace period to elapse, because right now we either are in a "safe async"
308 * work environment (i.e. all vCPUs are asleep), or no vCPUs have yet been
311 for (ev
= 0; ev
< QEMU_PLUGIN_EV_MAX
; ev
++) {
312 plugin_unregister_cb__locked(ctx
, ev
);
316 g_assert(ctx
->resetting
);
320 ctx
->resetting
= false;
325 g_assert(ctx
->uninstalling
);
326 /* we cannot dlclose if we are going to return to plugin code */
327 if (ctx
->installing
) {
328 error_report("Calling qemu_plugin_uninstall from the install function "
329 "is a bug. Instead, return !0 from the install function.");
333 success
= g_hash_table_remove(plugin
.id_ht
, &ctx
->id
);
335 QTAILQ_REMOVE(&plugin
.ctxs
, ctx
, entry
);
339 if (!g_module_close(ctx
->handle
)) {
340 warn_report("%s: %s", __func__
, g_module_error());
342 plugin_desc_free(ctx
->desc
);
347 static void plugin_reset_destroy(struct qemu_plugin_reset_data
*data
)
349 qemu_rec_mutex_lock(&plugin
.lock
);
350 plugin_reset_destroy__locked(data
);
351 qemu_rec_mutex_lock(&plugin
.lock
);
354 static void plugin_flush_destroy(CPUState
*cpu
, run_on_cpu_data arg
)
356 struct qemu_plugin_reset_data
*data
= arg
.host_ptr
;
358 g_assert(cpu_in_exclusive_context(cpu
));
360 plugin_reset_destroy(data
);
363 void plugin_reset_uninstall(qemu_plugin_id_t id
,
364 qemu_plugin_simple_cb_t cb
,
367 struct qemu_plugin_reset_data
*data
;
368 struct qemu_plugin_ctx
*ctx
;
370 qemu_rec_mutex_lock(&plugin
.lock
);
371 ctx
= plugin_id_to_ctx_locked(id
);
372 if (ctx
->uninstalling
|| (reset
&& ctx
->resetting
)) {
373 qemu_rec_mutex_unlock(&plugin
.lock
);
376 ctx
->resetting
= reset
;
377 ctx
->uninstalling
= !reset
;
378 qemu_rec_mutex_unlock(&plugin
.lock
);
380 data
= g_new(struct qemu_plugin_reset_data
, 1);
385 * Only flush the code cache if the vCPUs have been created. If so,
386 * current_cpu must be non-NULL.
389 async_safe_run_on_cpu(current_cpu
, plugin_flush_destroy
,
390 RUN_ON_CPU_HOST_PTR(data
));
393 * If current_cpu isn't set, then we don't have yet any vCPU threads
394 * and we therefore can remove the callbacks synchronously.
396 plugin_reset_destroy(data
);