control.h 6.1 KB
Newer Older
1 2 3
/*
 * Interface for configuring and controlling the state of tracing events.
 *
4
 * Copyright (C) 2011-2016 Lluís Vilanova <vilanova@ac.upc.edu>
5
 *
6 7
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
8 9
 */

10 11
#ifndef TRACE__CONTROL_H
#define TRACE__CONTROL_H
12

13
#include "qemu-common.h"
14
#include "event-internal.h"
15

16 17
typedef struct TraceEventIter {
    size_t event;
18
    size_t group;
19 20
    const char *pattern;
} TraceEventIter;
21

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

/**
 * 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);

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

/**
 * 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.
 */
69
static uint32_t trace_event_get_id(TraceEvent *ev);
70

71 72 73 74 75
/**
 * trace_event_get_vcpu_id:
 *
 * Get the per-vCPU identifier of an event.
 *
76
 * Special value #TRACE_VCPU_EVENT_NONE means the event is not vCPU-specific
77 78
 * (does not have the "vcpu" property).
 */
79
static uint32_t trace_event_get_vcpu_id(TraceEvent *ev);
80 81 82 83 84 85 86 87

/**
 * trace_event_is_vcpu:
 *
 * Whether this is a per-vCPU event.
 */
static bool trace_event_is_vcpu(TraceEvent *ev);

88 89
/**
 * trace_event_get_name:
90
 *
91
 * Get the name of an event.
92
 */
93
static const char * trace_event_get_name(TraceEvent *ev);
94

95 96
/**
 * trace_event_get_state:
97
 * @id: Event identifier name.
98 99 100 101 102 103 104
 *
 * 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)                       \
105
    ((id ##_ENABLED) && trace_event_get_state_dynamic_by_id(id))
106

107 108 109
/**
 * trace_event_get_vcpu_state:
 * @vcpu: Target vCPU.
110
 * @id: Event identifier name.
111 112 113 114 115 116 117
 *
 * 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.
 */
118 119 120 121
#define trace_event_get_vcpu_state(vcpu, id)                            \
    ((id ##_ENABLED) &&                                                 \
     trace_event_get_vcpu_state_dynamic_by_vcpu_id(                     \
         vcpu, _ ## id ## _EVENT.vcpu_id))
122

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
/**
 * 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.
138 139
 *
 * If the event has the 'vcpu' property, gets the OR'ed state of all vCPUs.
140 141 142
 */
static bool trace_event_get_state_dynamic(TraceEvent *ev);

143 144 145 146 147 148 149 150
/**
 * 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);


151 152 153 154 155
/**
 * trace_event_set_state_dynamic:
 *
 * Set the dynamic tracing state of an event.
 *
156 157
 * If the event has the 'vcpu' property, sets the state on all vCPUs.
 *
158 159
 * Pre-condition: trace_event_get_state_static(ev) == true
 */
160 161 162 163 164 165 166 167 168 169 170
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);
171 172 173 174



/**
L
Lluís Vilanova 已提交
175
 * trace_init_backends:
176 177
 * @file:   Name of trace output file; may be NULL.
 *          Corresponds to commandline option "-trace file=...".
178
 *
179 180
 * Initialize the tracing backend.
 *
L
Lluís Vilanova 已提交
181
 * Returns: Whether the backends could be successfully initialized.
182
 */
183
bool trace_init_backends(void);
184

185 186 187 188 189 190 191 192 193 194 195
/**
 * 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);

196 197 198 199 200 201 202 203
/**
 * trace_init_vcpu:
 * @vcpu: Added vCPU.
 *
 * Set initial dynamic event state for a hot-plugged vCPU.
 */
void trace_init_vcpu(CPUState *vcpu);

204 205 206 207 208 209 210 211
/**
 * trace_fini_vcpu:
 * @vcpu: Removed vCPU.
 *
 * Disable dynamic event state for a hot-unplugged vCPU.
 */
void trace_fini_vcpu(CPUState *vcpu);

P
Paolo Bonzini 已提交
212 213 214 215 216 217 218
/**
 * trace_list_events:
 *
 * List all available events.
 */
void trace_list_events(void);

P
Paolo Bonzini 已提交
219 220 221 222 223 224 225 226 227
/**
 * 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);

228 229 230 231 232 233 234 235 236 237 238 239 240 241
/**
 * 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);
242

243 244 245 246 247 248 249
/**
 * trace_get_vcpu_event_count:
 *
 * Return the number of known vcpu-specific events
 */
uint32_t trace_get_vcpu_event_count(void);

250

251 252
#include "trace/control-internal.h"

253
#endif /* TRACE__CONTROL_H */