2018-10-21 02:05:49 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017, Emilio G. Cota <cota@braap.org>
|
|
|
|
* Copyright (C) 2019, Linaro
|
|
|
|
*
|
|
|
|
* License: GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2022-05-06 15:49:08 +02:00
|
|
|
|
|
|
|
#ifndef QEMU_QEMU_PLUGIN_H
|
|
|
|
#define QEMU_QEMU_PLUGIN_H
|
2018-10-21 02:05:49 +02:00
|
|
|
|
2024-02-27 15:43:29 +01:00
|
|
|
#include <glib.h>
|
2018-10-21 02:05:49 +02:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdbool.h>
|
2020-06-05 17:49:16 +02:00
|
|
|
#include <stddef.h>
|
2018-10-21 02:05:49 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For best performance, build the plugin with -fvisibility=hidden so that
|
|
|
|
* QEMU_PLUGIN_LOCAL is implicit. Then, just mark qemu_plugin_install with
|
|
|
|
* QEMU_PLUGIN_EXPORT. For more info, see
|
|
|
|
* https://gcc.gnu.org/wiki/Visibility
|
|
|
|
*/
|
|
|
|
#if defined _WIN32 || defined __CYGWIN__
|
2023-11-06 19:51:03 +01:00
|
|
|
#ifdef CONFIG_PLUGIN
|
2018-10-21 02:05:49 +02:00
|
|
|
#define QEMU_PLUGIN_EXPORT __declspec(dllimport)
|
2023-11-06 19:51:03 +01:00
|
|
|
#define QEMU_PLUGIN_API __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define QEMU_PLUGIN_EXPORT __declspec(dllexport)
|
|
|
|
#define QEMU_PLUGIN_API __declspec(dllimport)
|
2018-10-21 02:05:49 +02:00
|
|
|
#endif
|
|
|
|
#define QEMU_PLUGIN_LOCAL
|
|
|
|
#else
|
2020-12-10 14:47:43 +01:00
|
|
|
#define QEMU_PLUGIN_EXPORT __attribute__((visibility("default")))
|
|
|
|
#define QEMU_PLUGIN_LOCAL __attribute__((visibility("hidden")))
|
2023-11-06 19:51:03 +01:00
|
|
|
#define QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
#endif
|
|
|
|
|
2021-03-12 18:28:16 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_id_t - Unique plugin ID
|
|
|
|
*/
|
2018-10-21 02:05:49 +02:00
|
|
|
typedef uint64_t qemu_plugin_id_t;
|
|
|
|
|
2019-11-04 14:18:36 +01:00
|
|
|
/*
|
|
|
|
* Versioning plugins:
|
|
|
|
*
|
|
|
|
* The plugin API will pass a minimum and current API version that
|
|
|
|
* QEMU currently supports. The minimum API will be incremented if an
|
|
|
|
* API needs to be deprecated.
|
|
|
|
*
|
|
|
|
* The plugins export the API they were built against by exposing the
|
|
|
|
* symbol qemu_plugin_version which can be checked.
|
2024-02-27 15:43:21 +01:00
|
|
|
*
|
2024-03-05 13:10:00 +01:00
|
|
|
* version 2:
|
|
|
|
* - removed qemu_plugin_n_vcpus and qemu_plugin_n_max_vcpus
|
|
|
|
* - Remove qemu_plugin_register_vcpu_{tb, insn, mem}_exec_inline.
|
|
|
|
* Those functions are replaced by *_per_vcpu variants, which guarantee
|
|
|
|
* thread-safety for operations.
|
2019-11-04 14:18:36 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
extern QEMU_PLUGIN_EXPORT int qemu_plugin_version;
|
|
|
|
|
2024-02-27 15:43:21 +01:00
|
|
|
#define QEMU_PLUGIN_VERSION 2
|
2019-11-04 14:18:36 +01:00
|
|
|
|
2021-03-12 18:28:11 +01:00
|
|
|
/**
|
|
|
|
* struct qemu_info_t - system information for plugins
|
|
|
|
*
|
|
|
|
* This structure provides for some limited information about the
|
|
|
|
* system to allow the plugin to make decisions on how to proceed. For
|
|
|
|
* example it might only be suitable for running on some guest
|
|
|
|
* architectures or when under full system emulation.
|
|
|
|
*/
|
|
|
|
typedef struct qemu_info_t {
|
|
|
|
/** @target_name: string describing architecture */
|
2019-09-12 18:24:27 +02:00
|
|
|
const char *target_name;
|
2021-03-12 18:28:11 +01:00
|
|
|
/** @version: minimum and current plugin API level */
|
2019-11-04 14:18:36 +01:00
|
|
|
struct {
|
|
|
|
int min;
|
|
|
|
int cur;
|
|
|
|
} version;
|
2021-03-12 18:28:11 +01:00
|
|
|
/** @system_emulation: is this a full system emulation? */
|
2019-09-12 18:24:27 +02:00
|
|
|
bool system_emulation;
|
|
|
|
union {
|
2021-03-12 18:28:11 +01:00
|
|
|
/** @system: information relevant to system emulation */
|
2019-09-12 18:24:27 +02:00
|
|
|
struct {
|
2021-03-12 18:28:11 +01:00
|
|
|
/** @system.smp_vcpus: initial number of vCPUs */
|
2019-09-12 18:24:27 +02:00
|
|
|
int smp_vcpus;
|
2021-03-12 18:28:11 +01:00
|
|
|
/** @system.max_vcpus: maximum possible number of vCPUs */
|
2019-09-12 18:24:27 +02:00
|
|
|
int max_vcpus;
|
|
|
|
} system;
|
|
|
|
};
|
|
|
|
} qemu_info_t;
|
|
|
|
|
2018-10-21 02:05:49 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_install() - Install a plugin
|
|
|
|
* @id: this plugin's opaque ID
|
2019-09-12 18:24:27 +02:00
|
|
|
* @info: a block describing some details about the guest
|
2018-10-21 02:05:49 +02:00
|
|
|
* @argc: number of arguments
|
|
|
|
* @argv: array of arguments (@argc elements)
|
|
|
|
*
|
2021-03-12 18:28:12 +01:00
|
|
|
* All plugins must export this symbol which is called when the plugin
|
|
|
|
* is first loaded. Calling qemu_plugin_uninstall() from this function
|
|
|
|
* is a bug.
|
2018-10-21 02:05:49 +02:00
|
|
|
*
|
2019-09-12 18:24:27 +02:00
|
|
|
* Note: @info is only live during the call. Copy any information we
|
2021-03-12 18:28:12 +01:00
|
|
|
* want to keep. @argv remains valid throughout the lifetime of the
|
|
|
|
* loaded plugin.
|
2019-09-12 18:24:27 +02:00
|
|
|
*
|
2021-03-12 18:28:12 +01:00
|
|
|
* Return: 0 on successful loading, !0 for an error.
|
2018-10-21 02:05:49 +02:00
|
|
|
*/
|
2019-09-12 18:24:27 +02:00
|
|
|
QEMU_PLUGIN_EXPORT int qemu_plugin_install(qemu_plugin_id_t id,
|
|
|
|
const qemu_info_t *info,
|
|
|
|
int argc, char **argv);
|
2018-10-21 02:05:49 +02:00
|
|
|
|
2021-03-12 18:28:13 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_simple_cb_t - simple callback
|
|
|
|
* @id: the unique qemu_plugin_id_t
|
|
|
|
*
|
2021-03-12 18:28:14 +01:00
|
|
|
* This callback passes no information aside from the unique @id.
|
2018-10-21 02:05:49 +02:00
|
|
|
*/
|
|
|
|
typedef void (*qemu_plugin_simple_cb_t)(qemu_plugin_id_t id);
|
|
|
|
|
2021-03-12 18:28:13 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_udata_cb_t - callback with user data
|
|
|
|
* @id: the unique qemu_plugin_id_t
|
2021-03-12 18:28:14 +01:00
|
|
|
* @userdata: a pointer to some user data supplied when the callback
|
2021-03-12 18:28:13 +01:00
|
|
|
* was registered.
|
|
|
|
*/
|
2018-10-21 02:05:49 +02:00
|
|
|
typedef void (*qemu_plugin_udata_cb_t)(qemu_plugin_id_t id, void *userdata);
|
|
|
|
|
2021-03-12 18:28:13 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_vcpu_simple_cb_t - vcpu callback
|
|
|
|
* @id: the unique qemu_plugin_id_t
|
|
|
|
* @vcpu_index: the current vcpu context
|
|
|
|
*/
|
2018-10-21 02:05:49 +02:00
|
|
|
typedef void (*qemu_plugin_vcpu_simple_cb_t)(qemu_plugin_id_t id,
|
|
|
|
unsigned int vcpu_index);
|
|
|
|
|
2021-03-12 18:28:13 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_vcpu_udata_cb_t - vcpu callback
|
|
|
|
* @vcpu_index: the current vcpu context
|
2021-03-12 18:28:14 +01:00
|
|
|
* @userdata: a pointer to some user data supplied when the callback
|
2021-03-12 18:28:13 +01:00
|
|
|
* was registered.
|
|
|
|
*/
|
2018-10-21 02:05:49 +02:00
|
|
|
typedef void (*qemu_plugin_vcpu_udata_cb_t)(unsigned int vcpu_index,
|
|
|
|
void *userdata);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_uninstall() - Uninstall a plugin
|
|
|
|
* @id: this plugin's opaque ID
|
|
|
|
* @cb: callback to be called once the plugin has been removed
|
|
|
|
*
|
|
|
|
* Do NOT assume that the plugin has been uninstalled once this function
|
|
|
|
* returns. Plugins are uninstalled asynchronously, and therefore the given
|
|
|
|
* plugin receives callbacks until @cb is called.
|
|
|
|
*
|
|
|
|
* Note: Calling this function from qemu_plugin_install() is a bug.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_uninstall(qemu_plugin_id_t id, qemu_plugin_simple_cb_t cb);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_reset() - Reset a plugin
|
|
|
|
* @id: this plugin's opaque ID
|
|
|
|
* @cb: callback to be called once the plugin has been reset
|
|
|
|
*
|
|
|
|
* Unregisters all callbacks for the plugin given by @id.
|
|
|
|
*
|
|
|
|
* Do NOT assume that the plugin has been reset once this function returns.
|
|
|
|
* Plugins are reset asynchronously, and therefore the given plugin receives
|
|
|
|
* callbacks until @cb is called.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_reset(qemu_plugin_id_t id, qemu_plugin_simple_cb_t cb);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_init_cb() - register a vCPU initialization callback
|
|
|
|
* @id: plugin ID
|
|
|
|
* @cb: callback function
|
|
|
|
*
|
|
|
|
* The @cb function is called every time a vCPU is initialized.
|
|
|
|
*
|
|
|
|
* See also: qemu_plugin_register_vcpu_exit_cb()
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_init_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_vcpu_simple_cb_t cb);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_exit_cb() - register a vCPU exit callback
|
|
|
|
* @id: plugin ID
|
|
|
|
* @cb: callback function
|
|
|
|
*
|
|
|
|
* The @cb function is called every time a vCPU exits.
|
|
|
|
*
|
|
|
|
* See also: qemu_plugin_register_vcpu_init_cb()
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_exit_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_vcpu_simple_cb_t cb);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_idle_cb() - register a vCPU idle callback
|
|
|
|
* @id: plugin ID
|
|
|
|
* @cb: callback function
|
|
|
|
*
|
|
|
|
* The @cb function is called every time a vCPU idles.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_idle_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_vcpu_simple_cb_t cb);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_resume_cb() - register a vCPU resume callback
|
|
|
|
* @id: plugin ID
|
|
|
|
* @cb: callback function
|
|
|
|
*
|
|
|
|
* The @cb function is called every time a vCPU resumes execution.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_resume_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_vcpu_simple_cb_t cb);
|
|
|
|
|
2021-03-12 18:28:14 +01:00
|
|
|
/** struct qemu_plugin_tb - Opaque handle for a translation block */
|
2018-10-21 02:05:49 +02:00
|
|
|
struct qemu_plugin_tb;
|
2021-03-12 18:28:14 +01:00
|
|
|
/** struct qemu_plugin_insn - Opaque handle for a translated instruction */
|
2018-10-21 02:05:49 +02:00
|
|
|
struct qemu_plugin_insn;
|
2024-03-05 13:09:50 +01:00
|
|
|
/** struct qemu_plugin_scoreboard - Opaque handle for a scoreboard */
|
|
|
|
struct qemu_plugin_scoreboard;
|
2018-10-21 02:05:49 +02:00
|
|
|
|
2024-03-05 13:09:51 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_u64 - uint64_t member of an entry in a scoreboard
|
|
|
|
*
|
|
|
|
* This field allows to access a specific uint64_t member in one given entry,
|
|
|
|
* located at a specified offset. Inline operations expect this as entry.
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
struct qemu_plugin_scoreboard *score;
|
|
|
|
size_t offset;
|
|
|
|
} qemu_plugin_u64;
|
|
|
|
|
2021-03-12 18:28:15 +01:00
|
|
|
/**
|
|
|
|
* enum qemu_plugin_cb_flags - type of callback
|
|
|
|
*
|
|
|
|
* @QEMU_PLUGIN_CB_NO_REGS: callback does not access the CPU's regs
|
|
|
|
* @QEMU_PLUGIN_CB_R_REGS: callback reads the CPU's regs
|
|
|
|
* @QEMU_PLUGIN_CB_RW_REGS: callback reads and writes the CPU's regs
|
|
|
|
*
|
2024-02-27 15:43:29 +01:00
|
|
|
* Note: currently QEMU_PLUGIN_CB_RW_REGS is unused, plugins cannot change
|
|
|
|
* system register state.
|
2021-03-12 18:28:15 +01:00
|
|
|
*/
|
2018-10-21 02:05:49 +02:00
|
|
|
enum qemu_plugin_cb_flags {
|
2021-03-12 18:28:15 +01:00
|
|
|
QEMU_PLUGIN_CB_NO_REGS,
|
|
|
|
QEMU_PLUGIN_CB_R_REGS,
|
|
|
|
QEMU_PLUGIN_CB_RW_REGS,
|
2018-10-21 02:05:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum qemu_plugin_mem_rw {
|
|
|
|
QEMU_PLUGIN_MEM_R = 1,
|
|
|
|
QEMU_PLUGIN_MEM_W,
|
|
|
|
QEMU_PLUGIN_MEM_RW,
|
|
|
|
};
|
|
|
|
|
2021-03-12 18:28:14 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_vcpu_tb_trans_cb_t - translation callback
|
|
|
|
* @id: unique plugin id
|
|
|
|
* @tb: opaque handle used for querying and instrumenting a block.
|
|
|
|
*/
|
|
|
|
typedef void (*qemu_plugin_vcpu_tb_trans_cb_t)(qemu_plugin_id_t id,
|
|
|
|
struct qemu_plugin_tb *tb);
|
|
|
|
|
2018-10-21 02:05:49 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_tb_trans_cb() - register a translate cb
|
|
|
|
* @id: plugin ID
|
|
|
|
* @cb: callback function
|
|
|
|
*
|
|
|
|
* The @cb function is called every time a translation occurs. The @cb
|
|
|
|
* function is passed an opaque qemu_plugin_type which it can query
|
|
|
|
* for additional information including the list of translated
|
|
|
|
* instructions. At this point the plugin can register further
|
|
|
|
* callbacks to be triggered when the block or individual instruction
|
|
|
|
* executes.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_tb_trans_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_vcpu_tb_trans_cb_t cb);
|
|
|
|
|
|
|
|
/**
|
2021-03-12 18:28:21 +01:00
|
|
|
* qemu_plugin_register_vcpu_tb_exec_cb() - register execution callback
|
2018-10-21 02:05:49 +02:00
|
|
|
* @tb: the opaque qemu_plugin_tb handle for the translation
|
|
|
|
* @cb: callback function
|
|
|
|
* @flags: does the plugin read or write the CPU's registers?
|
|
|
|
* @userdata: any plugin data to pass to the @cb?
|
|
|
|
*
|
|
|
|
* The @cb function is called every time a translated unit executes.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_tb_exec_cb(struct qemu_plugin_tb *tb,
|
|
|
|
qemu_plugin_vcpu_udata_cb_t cb,
|
|
|
|
enum qemu_plugin_cb_flags flags,
|
|
|
|
void *userdata);
|
|
|
|
|
2021-03-12 18:28:17 +01:00
|
|
|
/**
|
|
|
|
* enum qemu_plugin_op - describes an inline op
|
|
|
|
*
|
|
|
|
* @QEMU_PLUGIN_INLINE_ADD_U64: add an immediate value uint64_t
|
|
|
|
*
|
|
|
|
* Note: currently only a single inline op is supported.
|
|
|
|
*/
|
|
|
|
|
2018-10-21 02:05:49 +02:00
|
|
|
enum qemu_plugin_op {
|
|
|
|
QEMU_PLUGIN_INLINE_ADD_U64,
|
|
|
|
};
|
|
|
|
|
2024-03-05 13:09:53 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_tb_exec_inline_per_vcpu() - execution inline op
|
|
|
|
* @tb: the opaque qemu_plugin_tb handle for the translation
|
|
|
|
* @op: the type of qemu_plugin_op (e.g. ADD_U64)
|
|
|
|
* @entry: entry to run op
|
|
|
|
* @imm: the op data (e.g. 1)
|
|
|
|
*
|
|
|
|
* Insert an inline op on a given scoreboard entry.
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
void qemu_plugin_register_vcpu_tb_exec_inline_per_vcpu(
|
|
|
|
struct qemu_plugin_tb *tb,
|
|
|
|
enum qemu_plugin_op op,
|
|
|
|
qemu_plugin_u64 entry,
|
|
|
|
uint64_t imm);
|
|
|
|
|
2018-10-21 02:05:49 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_insn_exec_cb() - register insn execution cb
|
|
|
|
* @insn: the opaque qemu_plugin_insn handle for an instruction
|
|
|
|
* @cb: callback function
|
|
|
|
* @flags: does the plugin read or write the CPU's registers?
|
|
|
|
* @userdata: any plugin data to pass to the @cb?
|
|
|
|
*
|
|
|
|
* The @cb function is called every time an instruction is executed
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_insn_exec_cb(struct qemu_plugin_insn *insn,
|
|
|
|
qemu_plugin_vcpu_udata_cb_t cb,
|
|
|
|
enum qemu_plugin_cb_flags flags,
|
|
|
|
void *userdata);
|
|
|
|
|
2024-03-05 13:09:53 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_insn_exec_inline_per_vcpu() - insn exec inline op
|
|
|
|
* @insn: the opaque qemu_plugin_insn handle for an instruction
|
|
|
|
* @op: the type of qemu_plugin_op (e.g. ADD_U64)
|
|
|
|
* @entry: entry to run op
|
|
|
|
* @imm: the op data (e.g. 1)
|
|
|
|
*
|
|
|
|
* Insert an inline op to every time an instruction executes.
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
void qemu_plugin_register_vcpu_insn_exec_inline_per_vcpu(
|
|
|
|
struct qemu_plugin_insn *insn,
|
|
|
|
enum qemu_plugin_op op,
|
|
|
|
qemu_plugin_u64 entry,
|
|
|
|
uint64_t imm);
|
|
|
|
|
2021-03-12 18:28:18 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_tb_n_insns() - query helper for number of insns in TB
|
|
|
|
* @tb: opaque handle to TB passed to callback
|
|
|
|
*
|
|
|
|
* Returns: number of instructions in this block
|
2018-10-21 02:05:49 +02:00
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
size_t qemu_plugin_tb_n_insns(const struct qemu_plugin_tb *tb);
|
|
|
|
|
2021-03-12 18:28:18 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_tb_vaddr() - query helper for vaddr of TB start
|
|
|
|
* @tb: opaque handle to TB passed to callback
|
|
|
|
*
|
|
|
|
* Returns: virtual address of block start
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
uint64_t qemu_plugin_tb_vaddr(const struct qemu_plugin_tb *tb);
|
|
|
|
|
2021-03-12 18:28:18 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_tb_get_insn() - retrieve handle for instruction
|
|
|
|
* @tb: opaque handle to TB passed to callback
|
|
|
|
* @idx: instruction number, 0 indexed
|
|
|
|
*
|
|
|
|
* The returned handle can be used in follow up helper queries as well
|
|
|
|
* as when instrumenting an instruction. It is only valid for the
|
|
|
|
* lifetime of the callback.
|
|
|
|
*
|
|
|
|
* Returns: opaque handle to instruction
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
struct qemu_plugin_insn *
|
|
|
|
qemu_plugin_tb_get_insn(const struct qemu_plugin_tb *tb, size_t idx);
|
|
|
|
|
2021-03-12 18:28:18 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_insn_data() - return ptr to instruction data
|
|
|
|
* @insn: opaque instruction handle from qemu_plugin_tb_get_insn()
|
|
|
|
*
|
|
|
|
* Note: data is only valid for duration of callback. See
|
|
|
|
* qemu_plugin_insn_size() to calculate size of stream.
|
|
|
|
*
|
|
|
|
* Returns: pointer to a stream of bytes containing the value of this
|
|
|
|
* instructions opcode.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
const void *qemu_plugin_insn_data(const struct qemu_plugin_insn *insn);
|
|
|
|
|
2021-03-12 18:28:18 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_insn_size() - return size of instruction
|
|
|
|
* @insn: opaque instruction handle from qemu_plugin_tb_get_insn()
|
|
|
|
*
|
|
|
|
* Returns: size of instruction in bytes
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
size_t qemu_plugin_insn_size(const struct qemu_plugin_insn *insn);
|
|
|
|
|
2021-03-12 18:28:18 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_insn_vaddr() - return vaddr of instruction
|
|
|
|
* @insn: opaque instruction handle from qemu_plugin_tb_get_insn()
|
|
|
|
*
|
|
|
|
* Returns: virtual address of instruction
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
uint64_t qemu_plugin_insn_vaddr(const struct qemu_plugin_insn *insn);
|
2021-03-12 18:28:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_insn_haddr() - return hardware addr of instruction
|
|
|
|
* @insn: opaque instruction handle from qemu_plugin_tb_get_insn()
|
|
|
|
*
|
|
|
|
* Returns: hardware (physical) target address of instruction
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void *qemu_plugin_insn_haddr(const struct qemu_plugin_insn *insn);
|
|
|
|
|
2021-03-12 18:28:19 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_meminfo_t - opaque memory transaction handle
|
2018-10-21 02:05:49 +02:00
|
|
|
*
|
2021-03-12 18:28:19 +01:00
|
|
|
* This can be further queried using the qemu_plugin_mem_* query
|
|
|
|
* functions.
|
2018-10-21 02:05:49 +02:00
|
|
|
*/
|
|
|
|
typedef uint32_t qemu_plugin_meminfo_t;
|
2021-03-12 18:28:19 +01:00
|
|
|
/** struct qemu_plugin_hwaddr - opaque hw address handle */
|
2018-10-21 02:05:49 +02:00
|
|
|
struct qemu_plugin_hwaddr;
|
|
|
|
|
2021-03-12 18:28:19 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_mem_size_shift() - get size of access
|
|
|
|
* @info: opaque memory transaction handle
|
|
|
|
*
|
|
|
|
* Returns: size of access in ^2 (0=byte, 1=16bit, 2=32bit etc...)
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
unsigned int qemu_plugin_mem_size_shift(qemu_plugin_meminfo_t info);
|
2021-03-12 18:28:19 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_mem_is_sign_extended() - was the access sign extended
|
|
|
|
* @info: opaque memory transaction handle
|
|
|
|
*
|
|
|
|
* Returns: true if it was, otherwise false
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
bool qemu_plugin_mem_is_sign_extended(qemu_plugin_meminfo_t info);
|
2021-03-12 18:28:19 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_mem_is_big_endian() - was the access big endian
|
|
|
|
* @info: opaque memory transaction handle
|
|
|
|
*
|
|
|
|
* Returns: true if it was, otherwise false
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
bool qemu_plugin_mem_is_big_endian(qemu_plugin_meminfo_t info);
|
2021-03-12 18:28:19 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_mem_is_store() - was the access a store
|
|
|
|
* @info: opaque memory transaction handle
|
|
|
|
*
|
|
|
|
* Returns: true if it was, otherwise false
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
bool qemu_plugin_mem_is_store(qemu_plugin_meminfo_t info);
|
|
|
|
|
2021-03-12 18:28:09 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_get_hwaddr() - return handle for memory operation
|
2021-03-12 18:28:19 +01:00
|
|
|
* @info: opaque memory info structure
|
2018-10-21 02:05:49 +02:00
|
|
|
* @vaddr: the virtual address of the memory operation
|
|
|
|
*
|
|
|
|
* For system emulation returns a qemu_plugin_hwaddr handle to query
|
|
|
|
* details about the actual physical address backing the virtual
|
|
|
|
* address. For linux-user guests it just returns NULL.
|
|
|
|
*
|
|
|
|
* This handle is *only* valid for the duration of the callback. Any
|
|
|
|
* information about the handle should be recovered before the
|
|
|
|
* callback returns.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
struct qemu_plugin_hwaddr *qemu_plugin_get_hwaddr(qemu_plugin_meminfo_t info,
|
|
|
|
uint64_t vaddr);
|
|
|
|
|
2019-06-19 21:20:08 +02:00
|
|
|
/*
|
2021-03-12 18:28:09 +01:00
|
|
|
* The following additional queries can be run on the hwaddr structure to
|
|
|
|
* return information about it - namely whether it is for an IO access and the
|
|
|
|
* physical address associated with the access.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_hwaddr_is_io() - query whether memory operation is IO
|
|
|
|
* @haddr: address handle from qemu_plugin_get_hwaddr()
|
|
|
|
*
|
|
|
|
* Returns true if the handle's memory operation is to memory-mapped IO, or
|
|
|
|
* false if it is to RAM
|
2019-06-19 21:20:08 +02:00
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2020-05-13 19:31:55 +02:00
|
|
|
bool qemu_plugin_hwaddr_is_io(const struct qemu_plugin_hwaddr *haddr);
|
2021-03-12 18:28:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_hwaddr_phys_addr() - query physical address for memory operation
|
|
|
|
* @haddr: address handle from qemu_plugin_get_hwaddr()
|
|
|
|
*
|
|
|
|
* Returns the physical address associated with the memory operation
|
|
|
|
*
|
|
|
|
* Note that the returned physical address may not be unique if you are dealing
|
|
|
|
* with multiple address spaces.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2021-03-12 18:28:09 +01:00
|
|
|
uint64_t qemu_plugin_hwaddr_phys_addr(const struct qemu_plugin_hwaddr *haddr);
|
2019-06-19 21:20:08 +02:00
|
|
|
|
2021-02-13 14:03:04 +01:00
|
|
|
/*
|
|
|
|
* Returns a string representing the device. The string is valid for
|
|
|
|
* the lifetime of the plugin.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2021-02-13 14:03:04 +01:00
|
|
|
const char *qemu_plugin_hwaddr_device_name(const struct qemu_plugin_hwaddr *h);
|
|
|
|
|
2023-03-15 18:43:05 +01:00
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_vcpu_mem_cb_t - memory callback function type
|
|
|
|
* @vcpu_index: the executing vCPU
|
|
|
|
* @info: an opaque handle for further queries about the memory
|
|
|
|
* @vaddr: the virtual address of the transaction
|
|
|
|
* @userdata: any user data attached to the callback
|
|
|
|
*/
|
|
|
|
typedef void (*qemu_plugin_vcpu_mem_cb_t) (unsigned int vcpu_index,
|
|
|
|
qemu_plugin_meminfo_t info,
|
|
|
|
uint64_t vaddr,
|
|
|
|
void *userdata);
|
2018-10-21 02:05:49 +02:00
|
|
|
|
2023-03-15 18:43:05 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_mem_cb() - register memory access callback
|
|
|
|
* @insn: handle for instruction to instrument
|
|
|
|
* @cb: callback of type qemu_plugin_vcpu_mem_cb_t
|
|
|
|
* @flags: (currently unused) callback flags
|
|
|
|
* @rw: monitor reads, writes or both
|
|
|
|
* @userdata: opaque pointer for userdata
|
|
|
|
*
|
|
|
|
* This registers a full callback for every memory access generated by
|
|
|
|
* an instruction. If the instruction doesn't access memory no
|
|
|
|
* callback will be made.
|
|
|
|
*
|
|
|
|
* The callback reports the vCPU the access took place on, the virtual
|
|
|
|
* address of the access and a handle for further queries. The user
|
|
|
|
* can attach some userdata to the callback for additional purposes.
|
|
|
|
*
|
|
|
|
* Other execution threads will continue to execute during the
|
|
|
|
* callback so the plugin is responsible for ensuring it doesn't get
|
|
|
|
* confused by making appropriate use of locking if required.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_mem_cb(struct qemu_plugin_insn *insn,
|
|
|
|
qemu_plugin_vcpu_mem_cb_t cb,
|
|
|
|
enum qemu_plugin_cb_flags flags,
|
|
|
|
enum qemu_plugin_mem_rw rw,
|
|
|
|
void *userdata);
|
|
|
|
|
2024-03-05 13:09:53 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_register_vcpu_mem_inline_per_vcpu() - inline op for mem access
|
|
|
|
* @insn: handle for instruction to instrument
|
|
|
|
* @rw: apply to reads, writes or both
|
|
|
|
* @op: the op, of type qemu_plugin_op
|
|
|
|
* @entry: entry to run op
|
|
|
|
* @imm: immediate data for @op
|
|
|
|
*
|
|
|
|
* This registers a inline op every memory access generated by the
|
|
|
|
* instruction.
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
void qemu_plugin_register_vcpu_mem_inline_per_vcpu(
|
|
|
|
struct qemu_plugin_insn *insn,
|
|
|
|
enum qemu_plugin_mem_rw rw,
|
|
|
|
enum qemu_plugin_op op,
|
|
|
|
qemu_plugin_u64 entry,
|
|
|
|
uint64_t imm);
|
2018-10-21 02:05:49 +02:00
|
|
|
|
|
|
|
typedef void
|
|
|
|
(*qemu_plugin_vcpu_syscall_cb_t)(qemu_plugin_id_t id, unsigned int vcpu_index,
|
|
|
|
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);
|
|
|
|
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_vcpu_syscall_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_vcpu_syscall_cb_t cb);
|
|
|
|
|
|
|
|
typedef void
|
|
|
|
(*qemu_plugin_vcpu_syscall_ret_cb_t)(qemu_plugin_id_t id, unsigned int vcpu_idx,
|
|
|
|
int64_t num, int64_t ret);
|
|
|
|
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void
|
|
|
|
qemu_plugin_register_vcpu_syscall_ret_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_vcpu_syscall_ret_cb_t cb);
|
|
|
|
|
|
|
|
|
2019-05-22 11:27:14 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_insn_disas() - return disassembly string for instruction
|
|
|
|
* @insn: instruction reference
|
|
|
|
*
|
|
|
|
* Returns an allocated string containing the disassembly
|
|
|
|
*/
|
|
|
|
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2019-05-22 11:27:14 +02:00
|
|
|
char *qemu_plugin_insn_disas(const struct qemu_plugin_insn *insn);
|
|
|
|
|
2021-06-23 12:27:48 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_insn_symbol() - best effort symbol lookup
|
|
|
|
* @insn: instruction reference
|
|
|
|
*
|
|
|
|
* Return a static string referring to the symbol. This is dependent
|
|
|
|
* on the binary QEMU is running having provided a symbol table.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2021-06-23 12:27:48 +02:00
|
|
|
const char *qemu_plugin_insn_symbol(const struct qemu_plugin_insn *insn);
|
|
|
|
|
2018-10-21 02:05:49 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_vcpu_for_each() - iterate over the existing vCPU
|
|
|
|
* @id: plugin ID
|
|
|
|
* @cb: callback function
|
|
|
|
*
|
|
|
|
* The @cb function is called once for each existing vCPU.
|
|
|
|
*
|
|
|
|
* See also: qemu_plugin_register_vcpu_init_cb()
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_vcpu_for_each(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_vcpu_simple_cb_t cb);
|
|
|
|
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_flush_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_simple_cb_t cb);
|
|
|
|
|
2021-07-21 01:26:54 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_register_atexit_cb() - register exit callback
|
|
|
|
* @id: plugin ID
|
|
|
|
* @cb: callback
|
|
|
|
* @userdata: user data for callback
|
|
|
|
*
|
|
|
|
* The @cb function is called once execution has finished. Plugins
|
|
|
|
* should be able to free all their resources at this point much like
|
|
|
|
* after a reset/uninstall callback is called.
|
|
|
|
*
|
|
|
|
* In user-mode it is possible a few un-instrumented instructions from
|
|
|
|
* child threads may run before the host kernel reaps the threads.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2018-10-21 02:05:49 +02:00
|
|
|
void qemu_plugin_register_atexit_cb(qemu_plugin_id_t id,
|
|
|
|
qemu_plugin_udata_cb_t cb, void *userdata);
|
|
|
|
|
2024-02-27 15:43:22 +01:00
|
|
|
/* returns how many vcpus were started at this point */
|
|
|
|
int qemu_plugin_num_vcpus(void);
|
|
|
|
|
2019-10-11 17:34:05 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_outs() - output string via QEMU's logging system
|
|
|
|
* @string: a string
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2019-10-11 17:34:05 +02:00
|
|
|
void qemu_plugin_outs(const char *string);
|
|
|
|
|
2021-07-30 15:58:06 +02:00
|
|
|
/**
|
|
|
|
* qemu_plugin_bool_parse() - parses a boolean argument in the form of
|
|
|
|
* "<argname>=[on|yes|true|off|no|false]"
|
|
|
|
*
|
|
|
|
* @name: argument name, the part before the equals sign
|
|
|
|
* @val: argument value, what's after the equals sign
|
|
|
|
* @ret: output return value
|
|
|
|
*
|
|
|
|
* returns true if the combination @name=@val parses correctly to a boolean
|
|
|
|
* argument, and false otherwise
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2021-07-30 15:58:06 +02:00
|
|
|
bool qemu_plugin_bool_parse(const char *name, const char *val, bool *ret);
|
|
|
|
|
2022-02-04 21:43:30 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_path_to_binary() - path to binary file being executed
|
|
|
|
*
|
|
|
|
* Return a string representing the path to the binary. For user-mode
|
|
|
|
* this is the main executable. For system emulation we currently
|
|
|
|
* return NULL. The user should g_free() the string once no longer
|
|
|
|
* needed.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2022-02-04 21:43:30 +01:00
|
|
|
const char *qemu_plugin_path_to_binary(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_start_code() - returns start of text segment
|
|
|
|
*
|
|
|
|
* Returns the nominal start address of the main text segment in
|
|
|
|
* user-mode. Currently returns 0 for system emulation.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2022-02-04 21:43:30 +01:00
|
|
|
uint64_t qemu_plugin_start_code(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_end_code() - returns end of text segment
|
|
|
|
*
|
|
|
|
* Returns the nominal end address of the main text segment in
|
|
|
|
* user-mode. Currently returns 0 for system emulation.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2022-02-04 21:43:30 +01:00
|
|
|
uint64_t qemu_plugin_end_code(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_entry_code() - returns start address for module
|
|
|
|
*
|
|
|
|
* Returns the nominal entry address of the main text segment in
|
|
|
|
* user-mode. Currently returns 0 for system emulation.
|
|
|
|
*/
|
2023-11-06 19:51:03 +01:00
|
|
|
QEMU_PLUGIN_API
|
2022-02-04 21:43:30 +01:00
|
|
|
uint64_t qemu_plugin_entry_code(void);
|
|
|
|
|
2024-02-27 15:43:29 +01:00
|
|
|
/** struct qemu_plugin_register - Opaque handle for register access */
|
|
|
|
struct qemu_plugin_register;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* typedef qemu_plugin_reg_descriptor - register descriptions
|
|
|
|
*
|
|
|
|
* @handle: opaque handle for retrieving value with qemu_plugin_read_register
|
|
|
|
* @name: register name
|
|
|
|
* @feature: optional feature descriptor, can be NULL
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
struct qemu_plugin_register *handle;
|
|
|
|
const char *name;
|
|
|
|
const char *feature;
|
|
|
|
} qemu_plugin_reg_descriptor;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_get_registers() - return register list for current vCPU
|
|
|
|
*
|
|
|
|
* Returns a potentially empty GArray of qemu_plugin_reg_descriptor.
|
|
|
|
* Caller frees the array (but not the const strings).
|
|
|
|
*
|
|
|
|
* Should be used from a qemu_plugin_register_vcpu_init_cb() callback
|
|
|
|
* after the vCPU is initialised, i.e. in the vCPU context.
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
GArray *qemu_plugin_get_registers(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_read_register() - read register for current vCPU
|
|
|
|
*
|
|
|
|
* @handle: a @qemu_plugin_reg_handle handle
|
|
|
|
* @buf: A GByteArray for the data owned by the plugin
|
|
|
|
*
|
|
|
|
* This function is only available in a context that register read access is
|
|
|
|
* explicitly requested via the QEMU_PLUGIN_CB_R_REGS flag.
|
|
|
|
*
|
|
|
|
* Returns the size of the read register. The content of @buf is in target byte
|
|
|
|
* order. On failure returns -1.
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
int qemu_plugin_read_register(struct qemu_plugin_register *handle,
|
|
|
|
GByteArray *buf);
|
|
|
|
|
2024-03-05 13:09:50 +01:00
|
|
|
/**
|
|
|
|
* qemu_plugin_scoreboard_new() - alloc a new scoreboard
|
|
|
|
*
|
|
|
|
* @element_size: size (in bytes) for one entry
|
|
|
|
*
|
|
|
|
* Returns a pointer to a new scoreboard. It must be freed using
|
|
|
|
* qemu_plugin_scoreboard_free.
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
struct qemu_plugin_scoreboard *qemu_plugin_scoreboard_new(size_t element_size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_scoreboard_free() - free a scoreboard
|
|
|
|
* @score: scoreboard to free
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
void qemu_plugin_scoreboard_free(struct qemu_plugin_scoreboard *score);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_scoreboard_find() - get pointer to an entry of a scoreboard
|
|
|
|
* @score: scoreboard to query
|
|
|
|
* @vcpu_index: entry index
|
|
|
|
*
|
|
|
|
* Returns address of entry of a scoreboard matching a given vcpu_index. This
|
|
|
|
* address can be modified later if scoreboard is resized.
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
void *qemu_plugin_scoreboard_find(struct qemu_plugin_scoreboard *score,
|
|
|
|
unsigned int vcpu_index);
|
2024-02-27 15:43:29 +01:00
|
|
|
|
2024-03-05 13:09:51 +01:00
|
|
|
/* Macros to define a qemu_plugin_u64 */
|
|
|
|
#define qemu_plugin_scoreboard_u64(score) \
|
|
|
|
(qemu_plugin_u64) {score, 0}
|
|
|
|
#define qemu_plugin_scoreboard_u64_in_struct(score, type, member) \
|
|
|
|
(qemu_plugin_u64) {score, offsetof(type, member)}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_u64_add() - add a value to a qemu_plugin_u64 for a given vcpu
|
|
|
|
* @entry: entry to query
|
|
|
|
* @vcpu_index: entry index
|
|
|
|
* @added: value to add
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
void qemu_plugin_u64_add(qemu_plugin_u64 entry, unsigned int vcpu_index,
|
|
|
|
uint64_t added);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_u64_get() - get value of a qemu_plugin_u64 for a given vcpu
|
|
|
|
* @entry: entry to query
|
|
|
|
* @vcpu_index: entry index
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
uint64_t qemu_plugin_u64_get(qemu_plugin_u64 entry, unsigned int vcpu_index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_u64_set() - set value of a qemu_plugin_u64 for a given vcpu
|
|
|
|
* @entry: entry to query
|
|
|
|
* @vcpu_index: entry index
|
|
|
|
* @val: new value
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
void qemu_plugin_u64_set(qemu_plugin_u64 entry, unsigned int vcpu_index,
|
|
|
|
uint64_t val);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qemu_plugin_u64_sum() - return sum of all vcpu entries in a scoreboard
|
|
|
|
* @entry: entry to sum
|
|
|
|
*/
|
|
|
|
QEMU_PLUGIN_API
|
|
|
|
uint64_t qemu_plugin_u64_sum(qemu_plugin_u64 entry);
|
|
|
|
|
2022-05-06 15:49:08 +02:00
|
|
|
#endif /* QEMU_QEMU_PLUGIN_H */
|