mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
Remove the notion of there being a single global array of trace events, by introducing a method for registering groups of events. The module_call_init() needs to be invoked at the start of any program that wants to make use of the trace support. Currently this covers system emulators qemu-nbd, qemu-img and qemu-io. [Squashed the following fix from Daniel P. Berrange <berrange@redhat.com>: linux-user/bsd-user: initialize trace events subsystem The bsd-user/linux-user programs make use of the CPU emulation code and this now requires that the trace events subsystem is enabled, otherwise it'll crash trying to allocate an empty trace events bitmap for the CPU object. --Stefan] Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Lluís Vilanova <vilanova@ac.upc.edu> Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Message-id: 1475588159-30598-14-git-send-email-berrange@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
238 lines
5.8 KiB
C
238 lines
5.8 KiB
C
/*
|
|
* Interface for configuring and controlling the state of tracing events.
|
|
*
|
|
* Copyright (C) 2011-2016 Lluís Vilanova <vilanova@ac.upc.edu>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef TRACE__CONTROL_H
|
|
#define TRACE__CONTROL_H
|
|
|
|
#include "qemu-common.h"
|
|
#include "trace/generated-events.h"
|
|
|
|
typedef struct TraceEventIter {
|
|
size_t event;
|
|
size_t group;
|
|
const char *pattern;
|
|
} TraceEventIter;
|
|
|
|
|
|
/**
|
|
* trace_event_iter_init:
|
|
* @iter: the event iterator struct
|
|
* @pattern: optional pattern to filter events on name
|
|
*
|
|
* Initialize the event iterator struct @iter,
|
|
* optionally using @pattern to filter out events
|
|
* with non-matching names.
|
|
*/
|
|
void trace_event_iter_init(TraceEventIter *iter, const char *pattern);
|
|
|
|
/**
|
|
* trace_event_iter_next:
|
|
* @iter: the event iterator struct
|
|
*
|
|
* Get the next event, if any. When this returns NULL,
|
|
* the iterator should no longer be used.
|
|
*
|
|
* Returns: the next event, or NULL if no more events exist
|
|
*/
|
|
TraceEvent *trace_event_iter_next(TraceEventIter *iter);
|
|
|
|
|
|
/**
|
|
* trace_event_name:
|
|
* @id: Event name.
|
|
*
|
|
* Search an event by its name.
|
|
*
|
|
* Returns: pointer to #TraceEvent or NULL if not found.
|
|
*/
|
|
TraceEvent *trace_event_name(const char *name);
|
|
|
|
/**
|
|
* trace_event_is_pattern:
|
|
*
|
|
* Whether the given string is an event name pattern.
|
|
*/
|
|
static bool trace_event_is_pattern(const char *str);
|
|
|
|
|
|
/**
|
|
* trace_event_get_id:
|
|
*
|
|
* Get the identifier of an event.
|
|
*/
|
|
static uint32_t trace_event_get_id(TraceEvent *ev);
|
|
|
|
/**
|
|
* trace_event_get_vcpu_id:
|
|
*
|
|
* Get the per-vCPU identifier of an event.
|
|
*
|
|
* Special value #TRACE_VCPU_EVENT_NONE means the event is not vCPU-specific
|
|
* (does not have the "vcpu" property).
|
|
*/
|
|
static uint32_t trace_event_get_vcpu_id(TraceEvent *ev);
|
|
|
|
/**
|
|
* trace_event_is_vcpu:
|
|
*
|
|
* Whether this is a per-vCPU event.
|
|
*/
|
|
static bool trace_event_is_vcpu(TraceEvent *ev);
|
|
|
|
/**
|
|
* trace_event_get_name:
|
|
*
|
|
* Get the name of an event.
|
|
*/
|
|
static const char * trace_event_get_name(TraceEvent *ev);
|
|
|
|
/**
|
|
* trace_event_get_state:
|
|
* @id: Event identifier name.
|
|
*
|
|
* Get the tracing state of an event (both static and dynamic).
|
|
*
|
|
* If the event has the disabled property, the check will have no performance
|
|
* impact.
|
|
*/
|
|
#define trace_event_get_state(id) \
|
|
((id ##_ENABLED) && trace_event_get_state_dynamic_by_id(id))
|
|
|
|
/**
|
|
* trace_event_get_vcpu_state:
|
|
* @vcpu: Target vCPU.
|
|
* @id: Event identifier name.
|
|
*
|
|
* Get the tracing state of an event (both static and dynamic) for the given
|
|
* vCPU.
|
|
*
|
|
* If the event has the disabled property, the check will have no performance
|
|
* impact.
|
|
*/
|
|
#define trace_event_get_vcpu_state(vcpu, id) \
|
|
((id ##_ENABLED) && \
|
|
trace_event_get_vcpu_state_dynamic_by_vcpu_id( \
|
|
vcpu, _ ## id ## _EVENT.vcpu_id))
|
|
|
|
/**
|
|
* trace_event_get_state_static:
|
|
* @id: Event identifier.
|
|
*
|
|
* Get the static tracing state of an event.
|
|
*
|
|
* Use the define 'TRACE_${EVENT_NAME}_ENABLED' for compile-time checks (it will
|
|
* be set to 1 or 0 according to the presence of the disabled property).
|
|
*/
|
|
static bool trace_event_get_state_static(TraceEvent *ev);
|
|
|
|
/**
|
|
* trace_event_get_state_dynamic:
|
|
*
|
|
* Get the dynamic tracing state of an event.
|
|
*
|
|
* If the event has the 'vcpu' property, gets the OR'ed state of all vCPUs.
|
|
*/
|
|
static bool trace_event_get_state_dynamic(TraceEvent *ev);
|
|
|
|
/**
|
|
* trace_event_get_vcpu_state_dynamic:
|
|
*
|
|
* Get the dynamic tracing state of an event for the given vCPU.
|
|
*/
|
|
static bool trace_event_get_vcpu_state_dynamic(CPUState *vcpu, TraceEvent *ev);
|
|
|
|
|
|
/**
|
|
* trace_event_set_state_dynamic:
|
|
*
|
|
* Set the dynamic tracing state of an event.
|
|
*
|
|
* If the event has the 'vcpu' property, sets the state on all vCPUs.
|
|
*
|
|
* Pre-condition: trace_event_get_state_static(ev) == true
|
|
*/
|
|
void trace_event_set_state_dynamic(TraceEvent *ev, bool state);
|
|
|
|
/**
|
|
* trace_event_set_vcpu_state_dynamic:
|
|
*
|
|
* Set the dynamic tracing state of an event for the given vCPU.
|
|
*
|
|
* Pre-condition: trace_event_get_vcpu_state_static(ev) == true
|
|
*/
|
|
void trace_event_set_vcpu_state_dynamic(CPUState *vcpu,
|
|
TraceEvent *ev, bool state);
|
|
|
|
|
|
|
|
/**
|
|
* trace_init_backends:
|
|
* @file: Name of trace output file; may be NULL.
|
|
* Corresponds to commandline option "-trace file=...".
|
|
*
|
|
* Initialize the tracing backend.
|
|
*
|
|
* Returns: Whether the backends could be successfully initialized.
|
|
*/
|
|
bool trace_init_backends(void);
|
|
|
|
/**
|
|
* trace_init_file:
|
|
* @file: Name of trace output file; may be NULL.
|
|
* Corresponds to commandline option "-trace file=...".
|
|
*
|
|
* Record the name of the output file for the tracing backend.
|
|
* Exits if no selected backend does not support specifying the
|
|
* output file, and a non-NULL file was passed.
|
|
*/
|
|
void trace_init_file(const char *file);
|
|
|
|
/**
|
|
* trace_init_vcpu:
|
|
* @vcpu: Added vCPU.
|
|
*
|
|
* Set initial dynamic event state for a hot-plugged vCPU.
|
|
*/
|
|
void trace_init_vcpu(CPUState *vcpu);
|
|
|
|
/**
|
|
* trace_list_events:
|
|
*
|
|
* List all available events.
|
|
*/
|
|
void trace_list_events(void);
|
|
|
|
/**
|
|
* trace_enable_events:
|
|
* @line_buf: A string with a glob pattern of events to be enabled or,
|
|
* if the string starts with '-', disabled.
|
|
*
|
|
* Enable or disable matching events.
|
|
*/
|
|
void trace_enable_events(const char *line_buf);
|
|
|
|
/**
|
|
* Definition of QEMU options describing trace subsystem configuration
|
|
*/
|
|
extern QemuOptsList qemu_trace_opts;
|
|
|
|
/**
|
|
* trace_opt_parse:
|
|
* @optarg: A string argument of --trace command line argument
|
|
*
|
|
* Initialize tracing subsystem.
|
|
*
|
|
* Returns the filename to save trace to. It must be freed with g_free().
|
|
*/
|
|
char *trace_opt_parse(const char *optarg);
|
|
|
|
|
|
#include "trace/control-internal.h"
|
|
|
|
#endif /* TRACE__CONTROL_H */
|