blob: 0716f90f4513bd52bf142882babce0bb87904175 [file] [log] [blame]
Lluíse4858972011-08-31 20:31:03 +02001/*
2 * Interface for configuring and controlling the state of tracing events.
3 *
Lluís Vilanova3d211d92016-02-25 17:43:38 +01004 * Copyright (C) 2011-2016 Lluís Vilanova <vilanova@ac.upc.edu>
Lluíse4858972011-08-31 20:31:03 +02005 *
Lluís Vilanovab1bae812013-03-05 14:47:38 +01006 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
Lluíse4858972011-08-31 20:31:03 +02008 */
9
Lluís Vilanovab1bae812013-03-05 14:47:38 +010010#ifndef TRACE__CONTROL_H
11#define TRACE__CONTROL_H
Lluíse4858972011-08-31 20:31:03 +020012
Lluísfc764102011-08-31 20:31:18 +020013#include "qemu-common.h"
Daniel P. Berrange34770182016-10-04 14:35:55 +010014#include "event-internal.h"
Lluísfc764102011-08-31 20:31:18 +020015
Daniel P. Berrange6a1b0f32016-10-04 14:35:42 +010016typedef struct TraceEventIter {
17 size_t event;
Daniel P. Berrangefe4db842016-10-04 14:35:52 +010018 size_t group;
Daniel P. Berrange6a1b0f32016-10-04 14:35:42 +010019 const char *pattern;
20} TraceEventIter;
Lluísfc764102011-08-31 20:31:18 +020021
Daniel P. Berrange6a1b0f32016-10-04 14:35:42 +010022
23/**
24 * trace_event_iter_init:
25 * @iter: the event iterator struct
26 * @pattern: optional pattern to filter events on name
27 *
28 * Initialize the event iterator struct @iter,
29 * optionally using @pattern to filter out events
30 * with non-matching names.
31 */
32void trace_event_iter_init(TraceEventIter *iter, const char *pattern);
33
34/**
35 * trace_event_iter_next:
36 * @iter: the event iterator struct
37 *
38 * Get the next event, if any. When this returns NULL,
39 * the iterator should no longer be used.
40 *
41 * Returns: the next event, or NULL if no more events exist
42 */
43TraceEvent *trace_event_iter_next(TraceEventIter *iter);
44
Lluís Vilanovab1bae812013-03-05 14:47:38 +010045
46/**
47 * trace_event_name:
48 * @id: Event name.
49 *
50 * Search an event by its name.
51 *
52 * Returns: pointer to #TraceEvent or NULL if not found.
53 */
54TraceEvent *trace_event_name(const char *name);
55
56/**
Lluís Vilanovab1bae812013-03-05 14:47:38 +010057 * trace_event_is_pattern:
58 *
59 * Whether the given string is an event name pattern.
60 */
61static bool trace_event_is_pattern(const char *str);
62
Lluís Vilanovab1bae812013-03-05 14:47:38 +010063
64/**
65 * trace_event_get_id:
66 *
67 * Get the identifier of an event.
68 */
Daniel P. Berrangeef4c9fc2016-10-04 14:35:49 +010069static uint32_t trace_event_get_id(TraceEvent *ev);
Lluís Vilanovab1bae812013-03-05 14:47:38 +010070
71/**
Lluís Vilanova17f7ac72016-07-11 12:53:24 +020072 * trace_event_get_vcpu_id:
73 *
74 * Get the per-vCPU identifier of an event.
75 *
Daniel P. Berrangeef4c9fc2016-10-04 14:35:49 +010076 * Special value #TRACE_VCPU_EVENT_NONE means the event is not vCPU-specific
Lluís Vilanova17f7ac72016-07-11 12:53:24 +020077 * (does not have the "vcpu" property).
78 */
Daniel P. Berrangeef4c9fc2016-10-04 14:35:49 +010079static uint32_t trace_event_get_vcpu_id(TraceEvent *ev);
Lluís Vilanova17f7ac72016-07-11 12:53:24 +020080
81/**
82 * trace_event_is_vcpu:
83 *
84 * Whether this is a per-vCPU event.
85 */
86static bool trace_event_is_vcpu(TraceEvent *ev);
87
88/**
Lluís Vilanovab1bae812013-03-05 14:47:38 +010089 * trace_event_get_name:
90 *
91 * Get the name of an event.
92 */
93static const char * trace_event_get_name(TraceEvent *ev);
94
95/**
96 * trace_event_get_state:
Daniel P. Berrangeef4c9fc2016-10-04 14:35:49 +010097 * @id: Event identifier name.
Lluís Vilanovab1bae812013-03-05 14:47:38 +010098 *
Stefan Hajnoczid87aa132017-07-31 15:07:18 +010099 * Get the tracing state of an event, both static and the QEMU dynamic state.
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100100 *
101 * If the event has the disabled property, the check will have no performance
102 * impact.
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100103 */
104#define trace_event_get_state(id) \
Paolo Bonzini585ec722015-10-28 07:06:27 +0100105 ((id ##_ENABLED) && trace_event_get_state_dynamic_by_id(id))
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100106
107/**
Stefan Hajnoczid87aa132017-07-31 15:07:18 +0100108 * trace_event_get_state_backends:
109 * @id: Event identifier name.
110 *
111 * Get the tracing state of an event, both static and dynamic state from all
112 * compiled-in backends.
113 *
114 * If the event has the disabled property, the check will have no performance
115 * impact.
116 *
117 * Returns: true if at least one backend has the event enabled and the event
118 * does not have the disabled property.
119 */
120#define trace_event_get_state_backends(id) \
121 ((id ##_ENABLED) && id ##_BACKEND_DSTATE())
122
123/**
Lluís Vilanova48151852016-07-11 12:53:41 +0200124 * trace_event_get_vcpu_state:
125 * @vcpu: Target vCPU.
Daniel P. Berrangeef4c9fc2016-10-04 14:35:49 +0100126 * @id: Event identifier name.
Lluís Vilanova48151852016-07-11 12:53:41 +0200127 *
128 * Get the tracing state of an event (both static and dynamic) for the given
129 * vCPU.
130 *
131 * If the event has the disabled property, the check will have no performance
132 * impact.
Lluís Vilanova48151852016-07-11 12:53:41 +0200133 */
Daniel P. Berrangeef4c9fc2016-10-04 14:35:49 +0100134#define trace_event_get_vcpu_state(vcpu, id) \
135 ((id ##_ENABLED) && \
136 trace_event_get_vcpu_state_dynamic_by_vcpu_id( \
137 vcpu, _ ## id ## _EVENT.vcpu_id))
Lluís Vilanova48151852016-07-11 12:53:41 +0200138
139/**
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100140 * trace_event_get_state_static:
141 * @id: Event identifier.
142 *
143 * Get the static tracing state of an event.
144 *
145 * Use the define 'TRACE_${EVENT_NAME}_ENABLED' for compile-time checks (it will
146 * be set to 1 or 0 according to the presence of the disabled property).
147 */
148static bool trace_event_get_state_static(TraceEvent *ev);
149
150/**
151 * trace_event_get_state_dynamic:
152 *
153 * Get the dynamic tracing state of an event.
Lluís Vilanova48151852016-07-11 12:53:41 +0200154 *
155 * If the event has the 'vcpu' property, gets the OR'ed state of all vCPUs.
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100156 */
157static bool trace_event_get_state_dynamic(TraceEvent *ev);
158
159/**
Lluís Vilanova48151852016-07-11 12:53:41 +0200160 * trace_event_get_vcpu_state_dynamic:
161 *
162 * Get the dynamic tracing state of an event for the given vCPU.
163 */
164static bool trace_event_get_vcpu_state_dynamic(CPUState *vcpu, TraceEvent *ev);
165
Lluís Vilanova48151852016-07-11 12:53:41 +0200166
167/**
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100168 * trace_event_set_state_dynamic:
169 *
170 * Set the dynamic tracing state of an event.
171 *
Lluís Vilanova48151852016-07-11 12:53:41 +0200172 * If the event has the 'vcpu' property, sets the state on all vCPUs.
173 *
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100174 * Pre-condition: trace_event_get_state_static(ev) == true
175 */
Lluís Vilanova48151852016-07-11 12:53:41 +0200176void trace_event_set_state_dynamic(TraceEvent *ev, bool state);
177
178/**
179 * trace_event_set_vcpu_state_dynamic:
180 *
181 * Set the dynamic tracing state of an event for the given vCPU.
182 *
183 * Pre-condition: trace_event_get_vcpu_state_static(ev) == true
Lluís Vilanova61a67f72017-07-04 10:42:32 +0200184 *
185 * Note: Changes for execution-time events with the 'tcg' property will not be
186 * propagated until the next TB is executed (iff executing in TCG mode).
Lluís Vilanova48151852016-07-11 12:53:41 +0200187 */
188void trace_event_set_vcpu_state_dynamic(CPUState *vcpu,
189 TraceEvent *ev, bool state);
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100190
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100191
192
193/**
Lluís Vilanova5b808272014-05-27 15:02:14 +0200194 * trace_init_backends:
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100195 * @file: Name of trace output file; may be NULL.
Yaowei Baidb817b82018-07-04 11:17:27 +0800196 * Corresponds to commandline option "--trace file=...".
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100197 *
198 * Initialize the tracing backend.
199 *
Lluís Vilanova5b808272014-05-27 15:02:14 +0200200 * Returns: Whether the backends could be successfully initialized.
Lluíse4858972011-08-31 20:31:03 +0200201 */
Paolo Bonzini41fc57e2016-01-07 16:55:24 +0300202bool trace_init_backends(void);
Paolo Bonzini45bd0b42016-01-07 16:55:23 +0300203
204/**
Paolo Bonzini41fc57e2016-01-07 16:55:24 +0300205 * trace_init_file:
206 * @file: Name of trace output file; may be NULL.
Yaowei Baidb817b82018-07-04 11:17:27 +0800207 * Corresponds to commandline option "--trace file=...".
Paolo Bonzini41fc57e2016-01-07 16:55:24 +0300208 *
209 * Record the name of the output file for the tracing backend.
210 * Exits if no selected backend does not support specifying the
211 * output file, and a non-NULL file was passed.
212 */
213void trace_init_file(const char *file);
214
Paolo Bonzini10578a22016-01-07 16:55:26 +0300215/**
Lluís Vilanova2bfe11c2016-09-19 14:55:07 +0200216 * trace_init_vcpu:
217 * @vcpu: Added vCPU.
218 *
219 * Set initial dynamic event state for a hot-plugged vCPU.
220 */
221void trace_init_vcpu(CPUState *vcpu);
222
223/**
Lluís Vilanova82e95ec2016-12-26 22:24:40 +0100224 * trace_fini_vcpu:
225 * @vcpu: Removed vCPU.
226 *
227 * Disable dynamic event state for a hot-unplugged vCPU.
228 */
229void trace_fini_vcpu(CPUState *vcpu);
230
231/**
Paolo Bonzinie9527dd2016-01-07 16:55:27 +0300232 * trace_list_events:
233 *
234 * List all available events.
235 */
236void trace_list_events(void);
237
238/**
Paolo Bonzini10578a22016-01-07 16:55:26 +0300239 * trace_enable_events:
240 * @line_buf: A string with a glob pattern of events to be enabled or,
241 * if the string starts with '-', disabled.
242 *
243 * Enable or disable matching events.
244 */
245void trace_enable_events(const char *line_buf);
246
Denis V. Luneve9e0bb22016-06-17 17:44:10 +0300247/**
248 * Definition of QEMU options describing trace subsystem configuration
249 */
250extern QemuOptsList qemu_trace_opts;
251
252/**
253 * trace_opt_parse:
254 * @optarg: A string argument of --trace command line argument
255 *
256 * Initialize tracing subsystem.
257 *
258 * Returns the filename to save trace to. It must be freed with g_free().
259 */
260char *trace_opt_parse(const char *optarg);
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100261
Daniel P. Berrangeb7d48952016-10-04 14:35:53 +0100262/**
263 * trace_get_vcpu_event_count:
264 *
265 * Return the number of known vcpu-specific events
266 */
267uint32_t trace_get_vcpu_event_count(void);
268
Lluís Vilanova48151852016-07-11 12:53:41 +0200269
Michael S. Tsirkina3227142018-05-03 22:50:28 +0300270#include "control-internal.h"
Lluís Vilanovab1bae812013-03-05 14:47:38 +0100271
Markus Armbruster175de522016-06-29 15:29:06 +0200272#endif /* TRACE__CONTROL_H */