1 /*
2 * QEMU Plugin Core code
3 *
4 * This is the core code that deals with injecting instrumentation into the code
5 *
6 * Copyright (C) 2017, Emilio G. Cota <cota@braap.org>
7 * Copyright (C) 2019, Linaro
8 *
9 * License: GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 */
14 #include "qemu/osdep.h"
15 #include "qemu/error-report.h"
16 #include "qemu/config-file.h"
17 #include "qapi/error.h"
18 #include "qemu/lockable.h"
19 #include "qemu/option.h"
20 #include "qemu/plugin.h"
21 #include "qemu/queue.h"
22 #include "qemu/rcu_queue.h"
23 #include "qemu/xxhash.h"
24 #include "qemu/rcu.h"
25 #include "hw/core/cpu.h"
26
27 #include "exec/exec-all.h"
28 #include "exec/tb-flush.h"
29 #include "tcg/tcg.h"
30 #include "tcg/tcg-op.h"
31 #include "plugin.h"
32
33 struct qemu_plugin_cb {
34 struct qemu_plugin_ctx *ctx;
35 union qemu_plugin_cb_sig f;
36 void *udata;
37 QLIST_ENTRY(qemu_plugin_cb) entry;
38 };
39
40 struct qemu_plugin_state plugin;
41
plugin_id_to_ctx_locked(qemu_plugin_id_t id)42 struct qemu_plugin_ctx *plugin_id_to_ctx_locked(qemu_plugin_id_t id)
43 {
44 struct qemu_plugin_ctx *ctx;
45 qemu_plugin_id_t *id_p;
46
47 id_p = g_hash_table_lookup(plugin.id_ht, &id);
48 ctx = container_of(id_p, struct qemu_plugin_ctx, id);
49 if (ctx == NULL) {
50 error_report("plugin: invalid plugin id %" PRIu64, id);
51 abort();
52 }
53 return ctx;
54 }
55
plugin_cpu_update__async(CPUState * cpu,run_on_cpu_data data)56 static void plugin_cpu_update__async(CPUState *cpu, run_on_cpu_data data)
57 {
58 bitmap_copy(cpu->plugin_state->event_mask,
59 &data.host_ulong, QEMU_PLUGIN_EV_MAX);
60 tcg_flush_jmp_cache(cpu);
61 }
62
plugin_cpu_update__locked(gpointer k,gpointer v,gpointer udata)63 static void plugin_cpu_update__locked(gpointer k, gpointer v, gpointer udata)
64 {
65 CPUState *cpu = container_of(k, CPUState, cpu_index);
66 run_on_cpu_data mask = RUN_ON_CPU_HOST_ULONG(*plugin.mask);
67
68 async_run_on_cpu(cpu, plugin_cpu_update__async, mask);
69 }
70
plugin_unregister_cb__locked(struct qemu_plugin_ctx * ctx,enum qemu_plugin_event ev)71 void plugin_unregister_cb__locked(struct qemu_plugin_ctx *ctx,
72 enum qemu_plugin_event ev)
73 {
74 struct qemu_plugin_cb *cb = ctx->callbacks[ev];
75
76 if (cb == NULL) {
77 return;
78 }
79 QLIST_REMOVE_RCU(cb, entry);
80 g_free(cb);
81 ctx->callbacks[ev] = NULL;
82 if (QLIST_EMPTY_RCU(&plugin.cb_lists[ev])) {
83 clear_bit(ev, plugin.mask);
84 g_hash_table_foreach(plugin.cpu_ht, plugin_cpu_update__locked, NULL);
85 }
86 }
87
88 /*
89 * Disable CFI checks.
90 * The callback function has been loaded from an external library so we do not
91 * have type information
92 */
93 QEMU_DISABLE_CFI
plugin_vcpu_cb__simple(CPUState * cpu,enum qemu_plugin_event ev)94 static void plugin_vcpu_cb__simple(CPUState *cpu, enum qemu_plugin_event ev)
95 {
96 struct qemu_plugin_cb *cb, *next;
97
98 switch (ev) {
99 case QEMU_PLUGIN_EV_VCPU_INIT:
100 case QEMU_PLUGIN_EV_VCPU_EXIT:
101 case QEMU_PLUGIN_EV_VCPU_IDLE:
102 case QEMU_PLUGIN_EV_VCPU_RESUME:
103 /* iterate safely; plugins might uninstall themselves at any time */
104 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) {
105 qemu_plugin_vcpu_simple_cb_t func = cb->f.vcpu_simple;
106
107 func(cb->ctx->id, cpu->cpu_index);
108 }
109 break;
110 default:
111 g_assert_not_reached();
112 }
113 }
114
115 /*
116 * Disable CFI checks.
117 * The callback function has been loaded from an external library so we do not
118 * have type information
119 */
120 QEMU_DISABLE_CFI
plugin_cb__simple(enum qemu_plugin_event ev)121 static void plugin_cb__simple(enum qemu_plugin_event ev)
122 {
123 struct qemu_plugin_cb *cb, *next;
124
125 switch (ev) {
126 case QEMU_PLUGIN_EV_FLUSH:
127 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) {
128 qemu_plugin_simple_cb_t func = cb->f.simple;
129
130 func(cb->ctx->id);
131 }
132 break;
133 default:
134 g_assert_not_reached();
135 }
136 }
137
138 /*
139 * Disable CFI checks.
140 * The callback function has been loaded from an external library so we do not
141 * have type information
142 */
143 QEMU_DISABLE_CFI
plugin_cb__udata(enum qemu_plugin_event ev)144 static void plugin_cb__udata(enum qemu_plugin_event ev)
145 {
146 struct qemu_plugin_cb *cb, *next;
147
148 switch (ev) {
149 case QEMU_PLUGIN_EV_ATEXIT:
150 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) {
151 qemu_plugin_udata_cb_t func = cb->f.udata;
152
153 func(cb->ctx->id, cb->udata);
154 }
155 break;
156 default:
157 g_assert_not_reached();
158 }
159 }
160
161 static void
do_plugin_register_cb(qemu_plugin_id_t id,enum qemu_plugin_event ev,void * func,void * udata)162 do_plugin_register_cb(qemu_plugin_id_t id, enum qemu_plugin_event ev,
163 void *func, void *udata)
164 {
165 struct qemu_plugin_ctx *ctx;
166
167 QEMU_LOCK_GUARD(&plugin.lock);
168 ctx = plugin_id_to_ctx_locked(id);
169 /* if the plugin is on its way out, ignore this request */
170 if (unlikely(ctx->uninstalling)) {
171 return;
172 }
173 if (func) {
174 struct qemu_plugin_cb *cb = ctx->callbacks[ev];
175
176 if (cb) {
177 cb->f.generic = func;
178 cb->udata = udata;
179 } else {
180 cb = g_new(struct qemu_plugin_cb, 1);
181 cb->ctx = ctx;
182 cb->f.generic = func;
183 cb->udata = udata;
184 ctx->callbacks[ev] = cb;
185 QLIST_INSERT_HEAD_RCU(&plugin.cb_lists[ev], cb, entry);
186 if (!test_bit(ev, plugin.mask)) {
187 set_bit(ev, plugin.mask);
188 g_hash_table_foreach(plugin.cpu_ht, plugin_cpu_update__locked,
189 NULL);
190 }
191 }
192 } else {
193 plugin_unregister_cb__locked(ctx, ev);
194 }
195 }
196
plugin_register_cb(qemu_plugin_id_t id,enum qemu_plugin_event ev,void * func)197 void plugin_register_cb(qemu_plugin_id_t id, enum qemu_plugin_event ev,
198 void *func)
199 {
200 do_plugin_register_cb(id, ev, func, NULL);
201 }
202
203 void
plugin_register_cb_udata(qemu_plugin_id_t id,enum qemu_plugin_event ev,void * func,void * udata)204 plugin_register_cb_udata(qemu_plugin_id_t id, enum qemu_plugin_event ev,
205 void *func, void *udata)
206 {
207 do_plugin_register_cb(id, ev, func, udata);
208 }
209
qemu_plugin_create_vcpu_state(void)210 CPUPluginState *qemu_plugin_create_vcpu_state(void)
211 {
212 return g_new0(CPUPluginState, 1);
213 }
214
plugin_grow_scoreboards__locked(CPUState * cpu)215 static void plugin_grow_scoreboards__locked(CPUState *cpu)
216 {
217 size_t scoreboard_size = plugin.scoreboard_alloc_size;
218 bool need_realloc = false;
219
220 if (cpu->cpu_index < scoreboard_size) {
221 return;
222 }
223
224 while (cpu->cpu_index >= scoreboard_size) {
225 scoreboard_size *= 2;
226 need_realloc = true;
227 }
228
229 if (!need_realloc) {
230 return;
231 }
232
233 if (QLIST_EMPTY(&plugin.scoreboards)) {
234 /* just update size for future scoreboards */
235 plugin.scoreboard_alloc_size = scoreboard_size;
236 return;
237 }
238
239 /*
240 * A scoreboard creation/deletion might be in progress. If a new vcpu is
241 * initialized at the same time, we are safe, as the new
242 * plugin.scoreboard_alloc_size was not yet written.
243 */
244 qemu_rec_mutex_unlock(&plugin.lock);
245
246 /* cpus must be stopped, as tb might still use an existing scoreboard. */
247 start_exclusive();
248 /* re-acquire lock */
249 qemu_rec_mutex_lock(&plugin.lock);
250 /* in case another vcpu is created between unlock and exclusive section. */
251 if (scoreboard_size > plugin.scoreboard_alloc_size) {
252 struct qemu_plugin_scoreboard *score;
253 QLIST_FOREACH(score, &plugin.scoreboards, entry) {
254 g_array_set_size(score->data, scoreboard_size);
255 }
256 plugin.scoreboard_alloc_size = scoreboard_size;
257 /* force all tb to be flushed, as scoreboard pointers were changed. */
258 tb_flush(cpu);
259 }
260 end_exclusive();
261 }
262
qemu_plugin_vcpu_init__async(CPUState * cpu,run_on_cpu_data unused)263 static void qemu_plugin_vcpu_init__async(CPUState *cpu, run_on_cpu_data unused)
264 {
265 bool success;
266
267 assert(cpu->cpu_index != UNASSIGNED_CPU_INDEX);
268 qemu_rec_mutex_lock(&plugin.lock);
269 plugin.num_vcpus = MAX(plugin.num_vcpus, cpu->cpu_index + 1);
270 plugin_cpu_update__locked(&cpu->cpu_index, NULL, NULL);
271 success = g_hash_table_insert(plugin.cpu_ht, &cpu->cpu_index,
272 &cpu->cpu_index);
273 g_assert(success);
274 plugin_grow_scoreboards__locked(cpu);
275 qemu_rec_mutex_unlock(&plugin.lock);
276
277 plugin_vcpu_cb__simple(cpu, QEMU_PLUGIN_EV_VCPU_INIT);
278 }
279
qemu_plugin_vcpu_init_hook(CPUState * cpu)280 void qemu_plugin_vcpu_init_hook(CPUState *cpu)
281 {
282 /* Plugin initialization must wait until the cpu start executing code */
283 async_run_on_cpu(cpu, qemu_plugin_vcpu_init__async, RUN_ON_CPU_NULL);
284 }
285
qemu_plugin_vcpu_exit_hook(CPUState * cpu)286 void qemu_plugin_vcpu_exit_hook(CPUState *cpu)
287 {
288 bool success;
289
290 plugin_vcpu_cb__simple(cpu, QEMU_PLUGIN_EV_VCPU_EXIT);
291
292 assert(cpu->cpu_index != UNASSIGNED_CPU_INDEX);
293 qemu_rec_mutex_lock(&plugin.lock);
294 success = g_hash_table_remove(plugin.cpu_ht, &cpu->cpu_index);
295 g_assert(success);
296 qemu_rec_mutex_unlock(&plugin.lock);
297 }
298
299 struct plugin_for_each_args {
300 struct qemu_plugin_ctx *ctx;
301 qemu_plugin_vcpu_simple_cb_t cb;
302 };
303
plugin_vcpu_for_each(gpointer k,gpointer v,gpointer udata)304 static void plugin_vcpu_for_each(gpointer k, gpointer v, gpointer udata)
305 {
306 struct plugin_for_each_args *args = udata;
307 int cpu_index = *(int *)k;
308
309 args->cb(args->ctx->id, cpu_index);
310 }
311
qemu_plugin_vcpu_for_each(qemu_plugin_id_t id,qemu_plugin_vcpu_simple_cb_t cb)312 void qemu_plugin_vcpu_for_each(qemu_plugin_id_t id,
313 qemu_plugin_vcpu_simple_cb_t cb)
314 {
315 struct plugin_for_each_args args;
316
317 if (cb == NULL) {
318 return;
319 }
320 qemu_rec_mutex_lock(&plugin.lock);
321 args.ctx = plugin_id_to_ctx_locked(id);
322 args.cb = cb;
323 g_hash_table_foreach(plugin.cpu_ht, plugin_vcpu_for_each, &args);
324 qemu_rec_mutex_unlock(&plugin.lock);
325 }
326
327 /* Allocate and return a callback record */
plugin_get_dyn_cb(GArray ** arr)328 static struct qemu_plugin_dyn_cb *plugin_get_dyn_cb(GArray **arr)
329 {
330 GArray *cbs = *arr;
331
332 if (!cbs) {
333 cbs = g_array_sized_new(false, true,
334 sizeof(struct qemu_plugin_dyn_cb), 1);
335 *arr = cbs;
336 }
337
338 g_array_set_size(cbs, cbs->len + 1);
339 return &g_array_index(cbs, struct qemu_plugin_dyn_cb, cbs->len - 1);
340 }
341
op_to_cb_type(enum qemu_plugin_op op)342 static enum plugin_dyn_cb_type op_to_cb_type(enum qemu_plugin_op op)
343 {
344 switch (op) {
345 case QEMU_PLUGIN_INLINE_ADD_U64:
346 return PLUGIN_CB_INLINE_ADD_U64;
347 case QEMU_PLUGIN_INLINE_STORE_U64:
348 return PLUGIN_CB_INLINE_STORE_U64;
349 default:
350 g_assert_not_reached();
351 }
352 }
353
plugin_register_inline_op_on_entry(GArray ** arr,enum qemu_plugin_mem_rw rw,enum qemu_plugin_op op,qemu_plugin_u64 entry,uint64_t imm)354 void plugin_register_inline_op_on_entry(GArray **arr,
355 enum qemu_plugin_mem_rw rw,
356 enum qemu_plugin_op op,
357 qemu_plugin_u64 entry,
358 uint64_t imm)
359 {
360 struct qemu_plugin_dyn_cb *dyn_cb;
361
362 struct qemu_plugin_inline_cb inline_cb = { .rw = rw,
363 .entry = entry,
364 .imm = imm };
365 dyn_cb = plugin_get_dyn_cb(arr);
366 dyn_cb->type = op_to_cb_type(op);
367 dyn_cb->inline_insn = inline_cb;
368 }
369
plugin_register_dyn_cb__udata(GArray ** arr,qemu_plugin_vcpu_udata_cb_t cb,enum qemu_plugin_cb_flags flags,void * udata)370 void plugin_register_dyn_cb__udata(GArray **arr,
371 qemu_plugin_vcpu_udata_cb_t cb,
372 enum qemu_plugin_cb_flags flags,
373 void *udata)
374 {
375 static TCGHelperInfo info[3] = {
376 [QEMU_PLUGIN_CB_NO_REGS].flags = TCG_CALL_NO_RWG,
377 [QEMU_PLUGIN_CB_R_REGS].flags = TCG_CALL_NO_WG,
378 /*
379 * Match qemu_plugin_vcpu_udata_cb_t:
380 * void (*)(uint32_t, void *)
381 */
382 [0 ... 2].typemask = (dh_typemask(void, 0) |
383 dh_typemask(i32, 1) |
384 dh_typemask(ptr, 2))
385 };
386 assert((unsigned)flags < ARRAY_SIZE(info));
387
388 struct qemu_plugin_dyn_cb *dyn_cb = plugin_get_dyn_cb(arr);
389 struct qemu_plugin_regular_cb regular_cb = { .f.vcpu_udata = cb,
390 .userp = udata,
391 .info = &info[flags] };
392 dyn_cb->type = PLUGIN_CB_REGULAR;
393 dyn_cb->regular = regular_cb;
394 }
395
plugin_register_dyn_cond_cb__udata(GArray ** arr,qemu_plugin_vcpu_udata_cb_t cb,enum qemu_plugin_cb_flags flags,enum qemu_plugin_cond cond,qemu_plugin_u64 entry,uint64_t imm,void * udata)396 void plugin_register_dyn_cond_cb__udata(GArray **arr,
397 qemu_plugin_vcpu_udata_cb_t cb,
398 enum qemu_plugin_cb_flags flags,
399 enum qemu_plugin_cond cond,
400 qemu_plugin_u64 entry,
401 uint64_t imm,
402 void *udata)
403 {
404 static TCGHelperInfo info[3] = {
405 [QEMU_PLUGIN_CB_NO_REGS].flags = TCG_CALL_NO_RWG,
406 [QEMU_PLUGIN_CB_R_REGS].flags = TCG_CALL_NO_WG,
407 /*
408 * Match qemu_plugin_vcpu_udata_cb_t:
409 * void (*)(uint32_t, void *)
410 */
411 [0 ... 2].typemask = (dh_typemask(void, 0) |
412 dh_typemask(i32, 1) |
413 dh_typemask(ptr, 2))
414 };
415 assert((unsigned)flags < ARRAY_SIZE(info));
416
417 struct qemu_plugin_dyn_cb *dyn_cb = plugin_get_dyn_cb(arr);
418 struct qemu_plugin_conditional_cb cond_cb = { .userp = udata,
419 .f.vcpu_udata = cb,
420 .cond = cond,
421 .entry = entry,
422 .imm = imm,
423 .info = &info[flags] };
424 dyn_cb->type = PLUGIN_CB_COND;
425 dyn_cb->cond = cond_cb;
426 }
427
plugin_register_vcpu_mem_cb(GArray ** arr,void * cb,enum qemu_plugin_cb_flags flags,enum qemu_plugin_mem_rw rw,void * udata)428 void plugin_register_vcpu_mem_cb(GArray **arr,
429 void *cb,
430 enum qemu_plugin_cb_flags flags,
431 enum qemu_plugin_mem_rw rw,
432 void *udata)
433 {
434 /*
435 * Expect that the underlying type for enum qemu_plugin_meminfo_t
436 * is either int32_t or uint32_t, aka int or unsigned int.
437 */
438 QEMU_BUILD_BUG_ON(
439 !__builtin_types_compatible_p(qemu_plugin_meminfo_t, uint32_t) &&
440 !__builtin_types_compatible_p(qemu_plugin_meminfo_t, int32_t));
441
442 static TCGHelperInfo info[3] = {
443 [QEMU_PLUGIN_CB_NO_REGS].flags = TCG_CALL_NO_RWG,
444 [QEMU_PLUGIN_CB_R_REGS].flags = TCG_CALL_NO_WG,
445 /*
446 * Match qemu_plugin_vcpu_mem_cb_t:
447 * void (*)(uint32_t, qemu_plugin_meminfo_t, uint64_t, void *)
448 */
449 [0 ... 2].typemask =
450 (dh_typemask(void, 0) |
451 dh_typemask(i32, 1) |
452 (__builtin_types_compatible_p(qemu_plugin_meminfo_t, uint32_t)
453 ? dh_typemask(i32, 2) : dh_typemask(s32, 2)) |
454 dh_typemask(i64, 3) |
455 dh_typemask(ptr, 4))
456 };
457 assert((unsigned)flags < ARRAY_SIZE(info));
458
459 struct qemu_plugin_dyn_cb *dyn_cb = plugin_get_dyn_cb(arr);
460 struct qemu_plugin_regular_cb regular_cb = { .userp = udata,
461 .rw = rw,
462 .f.vcpu_mem = cb,
463 .info = &info[flags] };
464 dyn_cb->type = PLUGIN_CB_MEM_REGULAR;
465 dyn_cb->regular = regular_cb;
466 }
467
468 /*
469 * Disable CFI checks.
470 * The callback function has been loaded from an external library so we do not
471 * have type information
472 */
473 QEMU_DISABLE_CFI
qemu_plugin_tb_trans_cb(CPUState * cpu,struct qemu_plugin_tb * tb)474 void qemu_plugin_tb_trans_cb(CPUState *cpu, struct qemu_plugin_tb *tb)
475 {
476 struct qemu_plugin_cb *cb, *next;
477 enum qemu_plugin_event ev = QEMU_PLUGIN_EV_VCPU_TB_TRANS;
478
479 /* no plugin_state->event_mask check here; caller should have checked */
480
481 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) {
482 qemu_plugin_vcpu_tb_trans_cb_t func = cb->f.vcpu_tb_trans;
483
484 func(cb->ctx->id, tb);
485 }
486 }
487
488 /*
489 * Disable CFI checks.
490 * The callback function has been loaded from an external library so we do not
491 * have type information
492 */
493 QEMU_DISABLE_CFI
494 void
qemu_plugin_vcpu_syscall(CPUState * cpu,int64_t num,uint64_t a1,uint64_t a2,uint64_t a3,uint64_t a4,uint64_t a5,uint64_t a6,uint64_t a7,uint64_t a8)495 qemu_plugin_vcpu_syscall(CPUState *cpu, int64_t num, uint64_t a1, uint64_t a2,
496 uint64_t a3, uint64_t a4, uint64_t a5,
497 uint64_t a6, uint64_t a7, uint64_t a8)
498 {
499 struct qemu_plugin_cb *cb, *next;
500 enum qemu_plugin_event ev = QEMU_PLUGIN_EV_VCPU_SYSCALL;
501
502 if (!test_bit(ev, cpu->plugin_state->event_mask)) {
503 return;
504 }
505
506 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) {
507 qemu_plugin_vcpu_syscall_cb_t func = cb->f.vcpu_syscall;
508
509 func(cb->ctx->id, cpu->cpu_index, num, a1, a2, a3, a4, a5, a6, a7, a8);
510 }
511 }
512
513 /*
514 * Disable CFI checks.
515 * The callback function has been loaded from an external library so we do not
516 * have type information
517 */
518 QEMU_DISABLE_CFI
qemu_plugin_vcpu_syscall_ret(CPUState * cpu,int64_t num,int64_t ret)519 void qemu_plugin_vcpu_syscall_ret(CPUState *cpu, int64_t num, int64_t ret)
520 {
521 struct qemu_plugin_cb *cb, *next;
522 enum qemu_plugin_event ev = QEMU_PLUGIN_EV_VCPU_SYSCALL_RET;
523
524 if (!test_bit(ev, cpu->plugin_state->event_mask)) {
525 return;
526 }
527
528 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) {
529 qemu_plugin_vcpu_syscall_ret_cb_t func = cb->f.vcpu_syscall_ret;
530
531 func(cb->ctx->id, cpu->cpu_index, num, ret);
532 }
533 }
534
qemu_plugin_vcpu_idle_cb(CPUState * cpu)535 void qemu_plugin_vcpu_idle_cb(CPUState *cpu)
536 {
537 /* idle and resume cb may be called before init, ignore in this case */
538 if (cpu->cpu_index < plugin.num_vcpus) {
539 plugin_vcpu_cb__simple(cpu, QEMU_PLUGIN_EV_VCPU_IDLE);
540 }
541 }
542
qemu_plugin_vcpu_resume_cb(CPUState * cpu)543 void qemu_plugin_vcpu_resume_cb(CPUState *cpu)
544 {
545 if (cpu->cpu_index < plugin.num_vcpus) {
546 plugin_vcpu_cb__simple(cpu, QEMU_PLUGIN_EV_VCPU_RESUME);
547 }
548 }
549
qemu_plugin_register_vcpu_idle_cb(qemu_plugin_id_t id,qemu_plugin_vcpu_simple_cb_t cb)550 void qemu_plugin_register_vcpu_idle_cb(qemu_plugin_id_t id,
551 qemu_plugin_vcpu_simple_cb_t cb)
552 {
553 plugin_register_cb(id, QEMU_PLUGIN_EV_VCPU_IDLE, cb);
554 }
555
qemu_plugin_register_vcpu_resume_cb(qemu_plugin_id_t id,qemu_plugin_vcpu_simple_cb_t cb)556 void qemu_plugin_register_vcpu_resume_cb(qemu_plugin_id_t id,
557 qemu_plugin_vcpu_simple_cb_t cb)
558 {
559 plugin_register_cb(id, QEMU_PLUGIN_EV_VCPU_RESUME, cb);
560 }
561
qemu_plugin_register_flush_cb(qemu_plugin_id_t id,qemu_plugin_simple_cb_t cb)562 void qemu_plugin_register_flush_cb(qemu_plugin_id_t id,
563 qemu_plugin_simple_cb_t cb)
564 {
565 plugin_register_cb(id, QEMU_PLUGIN_EV_FLUSH, cb);
566 }
567
free_dyn_cb_arr(void * p,uint32_t h,void * userp)568 static bool free_dyn_cb_arr(void *p, uint32_t h, void *userp)
569 {
570 g_array_free((GArray *) p, true);
571 return true;
572 }
573
qemu_plugin_flush_cb(void)574 void qemu_plugin_flush_cb(void)
575 {
576 qht_iter_remove(&plugin.dyn_cb_arr_ht, free_dyn_cb_arr, NULL);
577 qht_reset(&plugin.dyn_cb_arr_ht);
578
579 plugin_cb__simple(QEMU_PLUGIN_EV_FLUSH);
580 }
581
exec_inline_op(enum plugin_dyn_cb_type type,struct qemu_plugin_inline_cb * cb,int cpu_index)582 void exec_inline_op(enum plugin_dyn_cb_type type,
583 struct qemu_plugin_inline_cb *cb,
584 int cpu_index)
585 {
586 char *ptr = cb->entry.score->data->data;
587 size_t elem_size = g_array_get_element_size(
588 cb->entry.score->data);
589 size_t offset = cb->entry.offset;
590 uint64_t *val = (uint64_t *)(ptr + offset + cpu_index * elem_size);
591
592 switch (type) {
593 case PLUGIN_CB_INLINE_ADD_U64:
594 *val += cb->imm;
595 break;
596 case PLUGIN_CB_INLINE_STORE_U64:
597 *val = cb->imm;
598 break;
599 default:
600 g_assert_not_reached();
601 }
602 }
603
qemu_plugin_vcpu_mem_cb(CPUState * cpu,uint64_t vaddr,MemOpIdx oi,enum qemu_plugin_mem_rw rw)604 void qemu_plugin_vcpu_mem_cb(CPUState *cpu, uint64_t vaddr,
605 MemOpIdx oi, enum qemu_plugin_mem_rw rw)
606 {
607 GArray *arr = cpu->neg.plugin_mem_cbs;
608 size_t i;
609
610 if (arr == NULL) {
611 return;
612 }
613 for (i = 0; i < arr->len; i++) {
614 struct qemu_plugin_dyn_cb *cb =
615 &g_array_index(arr, struct qemu_plugin_dyn_cb, i);
616
617 switch (cb->type) {
618 case PLUGIN_CB_MEM_REGULAR:
619 if (rw & cb->regular.rw) {
620 cb->regular.f.vcpu_mem(cpu->cpu_index,
621 make_plugin_meminfo(oi, rw),
622 vaddr, cb->regular.userp);
623 }
624 break;
625 case PLUGIN_CB_INLINE_ADD_U64:
626 case PLUGIN_CB_INLINE_STORE_U64:
627 if (rw & cb->inline_insn.rw) {
628 exec_inline_op(cb->type, &cb->inline_insn, cpu->cpu_index);
629 }
630 break;
631 default:
632 g_assert_not_reached();
633 }
634 }
635 }
636
qemu_plugin_atexit_cb(void)637 void qemu_plugin_atexit_cb(void)
638 {
639 plugin_cb__udata(QEMU_PLUGIN_EV_ATEXIT);
640 }
641
qemu_plugin_register_atexit_cb(qemu_plugin_id_t id,qemu_plugin_udata_cb_t cb,void * udata)642 void qemu_plugin_register_atexit_cb(qemu_plugin_id_t id,
643 qemu_plugin_udata_cb_t cb,
644 void *udata)
645 {
646 plugin_register_cb_udata(id, QEMU_PLUGIN_EV_ATEXIT, cb, udata);
647 }
648
649 /*
650 * Handle exit from linux-user. Unlike the normal atexit() mechanism
651 * we need to handle the clean-up manually as it's possible threads
652 * are still running. We need to remove all callbacks from code
653 * generation, flush the current translations and then we can safely
654 * trigger the exit callbacks.
655 */
656
qemu_plugin_user_exit(void)657 void qemu_plugin_user_exit(void)
658 {
659 enum qemu_plugin_event ev;
660 CPUState *cpu;
661
662 /*
663 * Locking order: we must acquire locks in an order that is consistent
664 * with the one in fork_start(). That is:
665 * - start_exclusive(), which acquires qemu_cpu_list_lock,
666 * must be called before acquiring plugin.lock.
667 * - tb_flush(), which acquires mmap_lock(), must be called
668 * while plugin.lock is not held.
669 */
670 start_exclusive();
671
672 qemu_rec_mutex_lock(&plugin.lock);
673 /* un-register all callbacks except the final AT_EXIT one */
674 for (ev = 0; ev < QEMU_PLUGIN_EV_MAX; ev++) {
675 if (ev != QEMU_PLUGIN_EV_ATEXIT) {
676 struct qemu_plugin_cb *cb, *next;
677
678 QLIST_FOREACH_SAFE_RCU(cb, &plugin.cb_lists[ev], entry, next) {
679 plugin_unregister_cb__locked(cb->ctx, ev);
680 }
681 }
682 }
683 CPU_FOREACH(cpu) {
684 qemu_plugin_disable_mem_helpers(cpu);
685 }
686 qemu_rec_mutex_unlock(&plugin.lock);
687
688 tb_flush(current_cpu);
689 end_exclusive();
690
691 /* now it's safe to handle the exit case */
692 qemu_plugin_atexit_cb();
693 }
694
695 /*
696 * Helpers for *-user to ensure locks are sane across fork() events.
697 */
698
qemu_plugin_user_prefork_lock(void)699 void qemu_plugin_user_prefork_lock(void)
700 {
701 qemu_rec_mutex_lock(&plugin.lock);
702 }
703
qemu_plugin_user_postfork(bool is_child)704 void qemu_plugin_user_postfork(bool is_child)
705 {
706 if (is_child) {
707 /* should we just reset via plugin_init? */
708 qemu_rec_mutex_init(&plugin.lock);
709 } else {
710 qemu_rec_mutex_unlock(&plugin.lock);
711 }
712 }
713
plugin_dyn_cb_arr_cmp(const void * ap,const void * bp)714 static bool plugin_dyn_cb_arr_cmp(const void *ap, const void *bp)
715 {
716 return ap == bp;
717 }
718
plugin_init(void)719 static void __attribute__((__constructor__)) plugin_init(void)
720 {
721 int i;
722
723 for (i = 0; i < QEMU_PLUGIN_EV_MAX; i++) {
724 QLIST_INIT(&plugin.cb_lists[i]);
725 }
726 qemu_rec_mutex_init(&plugin.lock);
727 plugin.id_ht = g_hash_table_new(g_int64_hash, g_int64_equal);
728 plugin.cpu_ht = g_hash_table_new(g_int_hash, g_int_equal);
729 QLIST_INIT(&plugin.scoreboards);
730 plugin.scoreboard_alloc_size = 16; /* avoid frequent reallocation */
731 QTAILQ_INIT(&plugin.ctxs);
732 qht_init(&plugin.dyn_cb_arr_ht, plugin_dyn_cb_arr_cmp, 16,
733 QHT_MODE_AUTO_RESIZE);
734 atexit(qemu_plugin_atexit_cb);
735 }
736
plugin_num_vcpus(void)737 int plugin_num_vcpus(void)
738 {
739 return plugin.num_vcpus;
740 }
741
plugin_scoreboard_new(size_t element_size)742 struct qemu_plugin_scoreboard *plugin_scoreboard_new(size_t element_size)
743 {
744 struct qemu_plugin_scoreboard *score =
745 g_malloc0(sizeof(struct qemu_plugin_scoreboard));
746 score->data = g_array_new(FALSE, TRUE, element_size);
747 g_array_set_size(score->data, plugin.scoreboard_alloc_size);
748
749 qemu_rec_mutex_lock(&plugin.lock);
750 QLIST_INSERT_HEAD(&plugin.scoreboards, score, entry);
751 qemu_rec_mutex_unlock(&plugin.lock);
752
753 return score;
754 }
755
plugin_scoreboard_free(struct qemu_plugin_scoreboard * score)756 void plugin_scoreboard_free(struct qemu_plugin_scoreboard *score)
757 {
758 qemu_rec_mutex_lock(&plugin.lock);
759 QLIST_REMOVE(score, entry);
760 qemu_rec_mutex_unlock(&plugin.lock);
761
762 g_array_free(score->data, TRUE);
763 g_free(score);
764 }
765