4 * This provides the API that is available to the plugins to interact
5 * with QEMU. We have to be careful not to expose internal details of
6 * how QEMU works so we abstract out things like translation and
7 * instructions to anonymous data types:
12 * Which can then be passed back into the API to do additional things.
13 * As such all the public functions in here are exported in
16 * The general life-cycle of a plugin is:
18 * - plugin is loaded, public qemu_plugin_install called
19 * - the install func registers callbacks for events
20 * - usually an atexit_cb is registered to dump info at the end
21 * - when a registered event occurs the plugin is called
22 * - some events pass additional info
23 * - during translation the plugin can decide to instrument any
25 * - when QEMU exits all the registered atexit callbacks are called
27 * Copyright (C) 2017, Emilio G. Cota <cota@braap.org>
28 * Copyright (C) 2019, Linaro
30 * License: GNU GPL, version 2 or later.
31 * See the COPYING file in the top-level directory.
33 * SPDX-License-Identifier: GPL-2.0-or-later
37 #include "qemu/osdep.h"
38 #include "qemu/plugin.h"
41 #include "exec/exec-all.h"
42 #include "exec/ram_addr.h"
43 #include "disas/disas.h"
45 #ifndef CONFIG_USER_ONLY
46 #include "qemu/plugin-memory.h"
47 #include "hw/boards.h"
55 /* Uninstall and Reset handlers */
57 void qemu_plugin_uninstall(qemu_plugin_id_t id
, qemu_plugin_simple_cb_t cb
)
59 plugin_reset_uninstall(id
, cb
, false);
62 void qemu_plugin_reset(qemu_plugin_id_t id
, qemu_plugin_simple_cb_t cb
)
64 plugin_reset_uninstall(id
, cb
, true);
68 * Plugin Register Functions
70 * This allows the plugin to register callbacks for various events
71 * during the translation.
74 void qemu_plugin_register_vcpu_init_cb(qemu_plugin_id_t id
,
75 qemu_plugin_vcpu_simple_cb_t cb
)
77 plugin_register_cb(id
, QEMU_PLUGIN_EV_VCPU_INIT
, cb
);
80 void qemu_plugin_register_vcpu_exit_cb(qemu_plugin_id_t id
,
81 qemu_plugin_vcpu_simple_cb_t cb
)
83 plugin_register_cb(id
, QEMU_PLUGIN_EV_VCPU_EXIT
, cb
);
86 void qemu_plugin_register_vcpu_tb_exec_cb(struct qemu_plugin_tb
*tb
,
87 qemu_plugin_vcpu_udata_cb_t cb
,
88 enum qemu_plugin_cb_flags flags
,
92 plugin_register_dyn_cb__udata(&tb
->cbs
[PLUGIN_CB_REGULAR
],
97 void qemu_plugin_register_vcpu_tb_exec_inline(struct qemu_plugin_tb
*tb
,
98 enum qemu_plugin_op op
,
99 void *ptr
, uint64_t imm
)
102 plugin_register_inline_op(&tb
->cbs
[PLUGIN_CB_INLINE
], 0, op
, ptr
, imm
);
106 void qemu_plugin_register_vcpu_insn_exec_cb(struct qemu_plugin_insn
*insn
,
107 qemu_plugin_vcpu_udata_cb_t cb
,
108 enum qemu_plugin_cb_flags flags
,
111 if (!insn
->mem_only
) {
112 plugin_register_dyn_cb__udata(&insn
->cbs
[PLUGIN_CB_INSN
][PLUGIN_CB_REGULAR
],
117 void qemu_plugin_register_vcpu_insn_exec_inline(struct qemu_plugin_insn
*insn
,
118 enum qemu_plugin_op op
,
119 void *ptr
, uint64_t imm
)
121 if (!insn
->mem_only
) {
122 plugin_register_inline_op(&insn
->cbs
[PLUGIN_CB_INSN
][PLUGIN_CB_INLINE
],
129 * We always plant memory instrumentation because they don't finalise until
130 * after the operation has complete.
132 void qemu_plugin_register_vcpu_mem_cb(struct qemu_plugin_insn
*insn
,
133 qemu_plugin_vcpu_mem_cb_t cb
,
134 enum qemu_plugin_cb_flags flags
,
135 enum qemu_plugin_mem_rw rw
,
138 plugin_register_vcpu_mem_cb(&insn
->cbs
[PLUGIN_CB_MEM
][PLUGIN_CB_REGULAR
],
139 cb
, flags
, rw
, udata
);
142 void qemu_plugin_register_vcpu_mem_inline(struct qemu_plugin_insn
*insn
,
143 enum qemu_plugin_mem_rw rw
,
144 enum qemu_plugin_op op
, void *ptr
,
147 plugin_register_inline_op(&insn
->cbs
[PLUGIN_CB_MEM
][PLUGIN_CB_INLINE
],
151 void qemu_plugin_register_vcpu_tb_trans_cb(qemu_plugin_id_t id
,
152 qemu_plugin_vcpu_tb_trans_cb_t cb
)
154 plugin_register_cb(id
, QEMU_PLUGIN_EV_VCPU_TB_TRANS
, cb
);
157 void qemu_plugin_register_vcpu_syscall_cb(qemu_plugin_id_t id
,
158 qemu_plugin_vcpu_syscall_cb_t cb
)
160 plugin_register_cb(id
, QEMU_PLUGIN_EV_VCPU_SYSCALL
, cb
);
164 qemu_plugin_register_vcpu_syscall_ret_cb(qemu_plugin_id_t id
,
165 qemu_plugin_vcpu_syscall_ret_cb_t cb
)
167 plugin_register_cb(id
, QEMU_PLUGIN_EV_VCPU_SYSCALL_RET
, cb
);
173 * These are queries that the plugin can make to gauge information
174 * from our opaque data types. We do not want to leak internal details
175 * here just information useful to the plugin.
179 * Translation block information:
181 * A plugin can query the virtual address of the start of the block
182 * and the number of instructions in it. It can also get access to
183 * each translated instruction.
186 size_t qemu_plugin_tb_n_insns(const struct qemu_plugin_tb
*tb
)
191 uint64_t qemu_plugin_tb_vaddr(const struct qemu_plugin_tb
*tb
)
196 struct qemu_plugin_insn
*
197 qemu_plugin_tb_get_insn(const struct qemu_plugin_tb
*tb
, size_t idx
)
199 struct qemu_plugin_insn
*insn
;
200 if (unlikely(idx
>= tb
->n
)) {
203 insn
= g_ptr_array_index(tb
->insns
, idx
);
204 insn
->mem_only
= tb
->mem_only
;
209 * Instruction information
211 * These queries allow the plugin to retrieve information about each
212 * instruction being translated.
215 const void *qemu_plugin_insn_data(const struct qemu_plugin_insn
*insn
)
217 return insn
->data
->data
;
220 size_t qemu_plugin_insn_size(const struct qemu_plugin_insn
*insn
)
222 return insn
->data
->len
;
225 uint64_t qemu_plugin_insn_vaddr(const struct qemu_plugin_insn
*insn
)
230 void *qemu_plugin_insn_haddr(const struct qemu_plugin_insn
*insn
)
235 char *qemu_plugin_insn_disas(const struct qemu_plugin_insn
*insn
)
237 CPUState
*cpu
= current_cpu
;
238 return plugin_disas(cpu
, insn
->vaddr
, insn
->data
->len
);
241 const char *qemu_plugin_insn_symbol(const struct qemu_plugin_insn
*insn
)
243 const char *sym
= lookup_symbol(insn
->vaddr
);
244 return sym
[0] != 0 ? sym
: NULL
;
248 * The memory queries allow the plugin to query information about a
252 unsigned qemu_plugin_mem_size_shift(qemu_plugin_meminfo_t info
)
254 MemOp op
= get_memop(info
);
258 bool qemu_plugin_mem_is_sign_extended(qemu_plugin_meminfo_t info
)
260 MemOp op
= get_memop(info
);
264 bool qemu_plugin_mem_is_big_endian(qemu_plugin_meminfo_t info
)
266 MemOp op
= get_memop(info
);
267 return (op
& MO_BSWAP
) == MO_BE
;
270 bool qemu_plugin_mem_is_store(qemu_plugin_meminfo_t info
)
272 return get_plugin_meminfo_rw(info
) & QEMU_PLUGIN_MEM_W
;
276 * Virtual Memory queries
279 #ifdef CONFIG_SOFTMMU
280 static __thread
struct qemu_plugin_hwaddr hwaddr_info
;
283 struct qemu_plugin_hwaddr
*qemu_plugin_get_hwaddr(qemu_plugin_meminfo_t info
,
286 #ifdef CONFIG_SOFTMMU
287 CPUState
*cpu
= current_cpu
;
288 unsigned int mmu_idx
= get_mmuidx(info
);
289 enum qemu_plugin_mem_rw rw
= get_plugin_meminfo_rw(info
);
290 hwaddr_info
.is_store
= (rw
& QEMU_PLUGIN_MEM_W
) != 0;
292 if (!tlb_plugin_lookup(cpu
, vaddr
, mmu_idx
,
293 hwaddr_info
.is_store
, &hwaddr_info
)) {
294 error_report("invalid use of qemu_plugin_get_hwaddr");
304 bool qemu_plugin_hwaddr_is_io(const struct qemu_plugin_hwaddr
*haddr
)
306 #ifdef CONFIG_SOFTMMU
313 uint64_t qemu_plugin_hwaddr_phys_addr(const struct qemu_plugin_hwaddr
*haddr
)
315 #ifdef CONFIG_SOFTMMU
320 void *hostaddr
= haddr
->v
.ram
.hostaddr
;
322 block
= qemu_ram_block_from_host(hostaddr
, false, &offset
);
324 error_report("Bad host ram pointer %p", haddr
->v
.ram
.hostaddr
);
328 return block
->offset
+ offset
+ block
->mr
->addr
;
330 MemoryRegionSection
*mrs
= haddr
->v
.io
.section
;
331 return mrs
->offset_within_address_space
+ haddr
->v
.io
.offset
;
338 const char *qemu_plugin_hwaddr_device_name(const struct qemu_plugin_hwaddr
*h
)
340 #ifdef CONFIG_SOFTMMU
342 MemoryRegionSection
*mrs
= h
->v
.io
.section
;
343 if (!mrs
->mr
->name
) {
344 unsigned long maddr
= 0xffffffff & (uintptr_t) mrs
->mr
;
345 g_autofree
char *temp
= g_strdup_printf("anon%08lx", maddr
);
346 return g_intern_string(temp
);
348 return g_intern_string(mrs
->mr
->name
);
351 return g_intern_static_string("RAM");
354 return g_intern_static_string("Invalid");
359 * Queries to the number and potential maximum number of vCPUs there
360 * will be. This helps the plugin dimension per-vcpu arrays.
363 #ifndef CONFIG_USER_ONLY
364 static MachineState
* get_ms(void)
366 return MACHINE(qdev_get_machine());
370 int qemu_plugin_n_vcpus(void)
372 #ifdef CONFIG_USER_ONLY
375 return get_ms()->smp
.cpus
;
379 int qemu_plugin_n_max_vcpus(void)
381 #ifdef CONFIG_USER_ONLY
384 return get_ms()->smp
.max_cpus
;
391 void qemu_plugin_outs(const char *string
)
393 qemu_log_mask(CPU_LOG_PLUGIN
, "%s", string
);
396 bool qemu_plugin_bool_parse(const char *name
, const char *value
, bool *ret
)
398 return name
&& value
&& qapi_bool_parse(name
, value
, ret
, NULL
);
402 * Binary path, start and end locations
404 const char *qemu_plugin_path_to_binary(void)
407 #ifdef CONFIG_USER_ONLY
408 TaskState
*ts
= (TaskState
*) current_cpu
->opaque
;
409 path
= g_strdup(ts
->bprm
->filename
);
414 uint64_t qemu_plugin_start_code(void)
417 #ifdef CONFIG_USER_ONLY
418 TaskState
*ts
= (TaskState
*) current_cpu
->opaque
;
419 start
= ts
->info
->start_code
;
424 uint64_t qemu_plugin_end_code(void)
427 #ifdef CONFIG_USER_ONLY
428 TaskState
*ts
= (TaskState
*) current_cpu
->opaque
;
429 end
= ts
->info
->end_code
;
434 uint64_t qemu_plugin_entry_code(void)
437 #ifdef CONFIG_USER_ONLY
438 TaskState
*ts
= (TaskState
*) current_cpu
->opaque
;
439 entry
= ts
->info
->entry
;