Lluís | e485897 | 2011-08-31 20:31:03 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Interface for configuring and controlling the state of tracing events. |
| 3 | * |
Lluís Vilanova | 3d211d9 | 2016-02-25 17:43:38 +0100 | [diff] [blame] | 4 | * Copyright (C) 2011-2016 Lluís Vilanova <vilanova@ac.upc.edu> |
Lluís | e485897 | 2011-08-31 20:31:03 +0200 | [diff] [blame] | 5 | * |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 6 | * 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ís | e485897 | 2011-08-31 20:31:03 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 10 | #ifndef TRACE__CONTROL_H |
| 11 | #define TRACE__CONTROL_H |
Lluís | e485897 | 2011-08-31 20:31:03 +0200 | [diff] [blame] | 12 | |
Daniel P. Berrange | 3477018 | 2016-10-04 14:35:55 +0100 | [diff] [blame] | 13 | #include "event-internal.h" |
Lluís | fc76410 | 2011-08-31 20:31:18 +0200 | [diff] [blame] | 14 | |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 15 | typedef struct TraceEventIter { |
Gerd Hoffmann | c5cc58b | 2021-06-01 15:24:04 +0200 | [diff] [blame] | 16 | /* iter state */ |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 17 | size_t event; |
Daniel P. Berrange | fe4db84 | 2016-10-04 14:35:52 +0100 | [diff] [blame] | 18 | size_t group; |
Gerd Hoffmann | c5cc58b | 2021-06-01 15:24:04 +0200 | [diff] [blame] | 19 | /* filter conditions */ |
| 20 | size_t group_id; |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 21 | const char *pattern; |
| 22 | } TraceEventIter; |
Lluís | fc76410 | 2011-08-31 20:31:18 +0200 | [diff] [blame] | 23 | |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 24 | |
| 25 | /** |
Gerd Hoffmann | 117856c | 2021-06-01 15:24:03 +0200 | [diff] [blame] | 26 | * trace_event_iter_init_all: |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 27 | * @iter: the event iterator struct |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 28 | * |
| 29 | * Initialize the event iterator struct @iter, |
Gerd Hoffmann | 117856c | 2021-06-01 15:24:03 +0200 | [diff] [blame] | 30 | * for all events. |
| 31 | */ |
| 32 | void trace_event_iter_init_all(TraceEventIter *iter); |
| 33 | |
| 34 | /** |
| 35 | * trace_event_iter_init_pattern: |
| 36 | * @iter: the event iterator struct |
| 37 | * @pattern: pattern to filter events on name |
| 38 | * |
| 39 | * Initialize the event iterator struct @iter, |
| 40 | * using @pattern to filter out events |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 41 | * with non-matching names. |
| 42 | */ |
Gerd Hoffmann | 117856c | 2021-06-01 15:24:03 +0200 | [diff] [blame] | 43 | void trace_event_iter_init_pattern(TraceEventIter *iter, const char *pattern); |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 44 | |
| 45 | /** |
Gerd Hoffmann | c5cc58b | 2021-06-01 15:24:04 +0200 | [diff] [blame] | 46 | * trace_event_iter_init_group: |
| 47 | * @iter: the event iterator struct |
| 48 | * @group_id: group_id to filter events by group. |
| 49 | * |
| 50 | * Initialize the event iterator struct @iter, |
| 51 | * using @group_id to filter for events in the group. |
| 52 | */ |
| 53 | void trace_event_iter_init_group(TraceEventIter *iter, size_t group_id); |
| 54 | |
| 55 | /** |
Daniel P. Berrange | 6a1b0f3 | 2016-10-04 14:35:42 +0100 | [diff] [blame] | 56 | * trace_event_iter_next: |
| 57 | * @iter: the event iterator struct |
| 58 | * |
| 59 | * Get the next event, if any. When this returns NULL, |
| 60 | * the iterator should no longer be used. |
| 61 | * |
| 62 | * Returns: the next event, or NULL if no more events exist |
| 63 | */ |
| 64 | TraceEvent *trace_event_iter_next(TraceEventIter *iter); |
| 65 | |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 66 | |
| 67 | /** |
| 68 | * trace_event_name: |
| 69 | * @id: Event name. |
| 70 | * |
| 71 | * Search an event by its name. |
| 72 | * |
| 73 | * Returns: pointer to #TraceEvent or NULL if not found. |
| 74 | */ |
| 75 | TraceEvent *trace_event_name(const char *name); |
| 76 | |
| 77 | /** |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 78 | * trace_event_is_pattern: |
| 79 | * |
| 80 | * Whether the given string is an event name pattern. |
| 81 | */ |
| 82 | static bool trace_event_is_pattern(const char *str); |
| 83 | |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 84 | |
| 85 | /** |
| 86 | * trace_event_get_id: |
| 87 | * |
| 88 | * Get the identifier of an event. |
| 89 | */ |
Daniel P. Berrange | ef4c9fc | 2016-10-04 14:35:49 +0100 | [diff] [blame] | 90 | static uint32_t trace_event_get_id(TraceEvent *ev); |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 91 | |
| 92 | /** |
| 93 | * trace_event_get_name: |
| 94 | * |
| 95 | * Get the name of an event. |
| 96 | */ |
| 97 | static const char * trace_event_get_name(TraceEvent *ev); |
| 98 | |
| 99 | /** |
| 100 | * trace_event_get_state: |
Daniel P. Berrange | ef4c9fc | 2016-10-04 14:35:49 +0100 | [diff] [blame] | 101 | * @id: Event identifier name. |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 102 | * |
Stefan Hajnoczi | d87aa13 | 2017-07-31 15:07:18 +0100 | [diff] [blame] | 103 | * Get the tracing state of an event, both static and the QEMU dynamic state. |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 104 | * |
| 105 | * If the event has the disabled property, the check will have no performance |
| 106 | * impact. |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 107 | */ |
| 108 | #define trace_event_get_state(id) \ |
Paolo Bonzini | 585ec72 | 2015-10-28 07:06:27 +0100 | [diff] [blame] | 109 | ((id ##_ENABLED) && trace_event_get_state_dynamic_by_id(id)) |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 110 | |
| 111 | /** |
Stefan Hajnoczi | d87aa13 | 2017-07-31 15:07:18 +0100 | [diff] [blame] | 112 | * trace_event_get_state_backends: |
| 113 | * @id: Event identifier name. |
| 114 | * |
| 115 | * Get the tracing state of an event, both static and dynamic state from all |
| 116 | * compiled-in backends. |
| 117 | * |
| 118 | * If the event has the disabled property, the check will have no performance |
| 119 | * impact. |
| 120 | * |
| 121 | * Returns: true if at least one backend has the event enabled and the event |
| 122 | * does not have the disabled property. |
| 123 | */ |
| 124 | #define trace_event_get_state_backends(id) \ |
| 125 | ((id ##_ENABLED) && id ##_BACKEND_DSTATE()) |
| 126 | |
| 127 | /** |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 128 | * trace_event_get_state_static: |
| 129 | * @id: Event identifier. |
| 130 | * |
| 131 | * Get the static tracing state of an event. |
| 132 | * |
| 133 | * Use the define 'TRACE_${EVENT_NAME}_ENABLED' for compile-time checks (it will |
| 134 | * be set to 1 or 0 according to the presence of the disabled property). |
| 135 | */ |
| 136 | static bool trace_event_get_state_static(TraceEvent *ev); |
| 137 | |
| 138 | /** |
| 139 | * trace_event_get_state_dynamic: |
| 140 | * |
| 141 | * Get the dynamic tracing state of an event. |
Lluís Vilanova | 4815185 | 2016-07-11 12:53:41 +0200 | [diff] [blame] | 142 | * |
| 143 | * If the event has the 'vcpu' property, gets the OR'ed state of all vCPUs. |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 144 | */ |
| 145 | static bool trace_event_get_state_dynamic(TraceEvent *ev); |
| 146 | |
| 147 | /** |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 148 | * trace_event_set_state_dynamic: |
| 149 | * |
| 150 | * Set the dynamic tracing state of an event. |
| 151 | * |
Lluís Vilanova | 4815185 | 2016-07-11 12:53:41 +0200 | [diff] [blame] | 152 | * If the event has the 'vcpu' property, sets the state on all vCPUs. |
| 153 | * |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 154 | * Pre-condition: trace_event_get_state_static(ev) == true |
| 155 | */ |
Lluís Vilanova | 4815185 | 2016-07-11 12:53:41 +0200 | [diff] [blame] | 156 | void trace_event_set_state_dynamic(TraceEvent *ev, bool state); |
| 157 | |
| 158 | /** |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 159 | * trace_init_backends: |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 160 | * |
| 161 | * Initialize the tracing backend. |
| 162 | * |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 163 | * Returns: Whether the backends could be successfully initialized. |
Lluís | e485897 | 2011-08-31 20:31:03 +0200 | [diff] [blame] | 164 | */ |
Paolo Bonzini | 41fc57e | 2016-01-07 16:55:24 +0300 | [diff] [blame] | 165 | bool trace_init_backends(void); |
Paolo Bonzini | 45bd0b4 | 2016-01-07 16:55:23 +0300 | [diff] [blame] | 166 | |
| 167 | /** |
Paolo Bonzini | 41fc57e | 2016-01-07 16:55:24 +0300 | [diff] [blame] | 168 | * trace_init_file: |
Paolo Bonzini | 41fc57e | 2016-01-07 16:55:24 +0300 | [diff] [blame] | 169 | * |
| 170 | * Record the name of the output file for the tracing backend. |
| 171 | * Exits if no selected backend does not support specifying the |
Paolo Bonzini | 92eecff | 2020-11-02 06:58:41 -0500 | [diff] [blame] | 172 | * output file, and a file was specified with "-trace file=...". |
Paolo Bonzini | 41fc57e | 2016-01-07 16:55:24 +0300 | [diff] [blame] | 173 | */ |
Paolo Bonzini | 92eecff | 2020-11-02 06:58:41 -0500 | [diff] [blame] | 174 | void trace_init_file(void); |
Paolo Bonzini | 41fc57e | 2016-01-07 16:55:24 +0300 | [diff] [blame] | 175 | |
Paolo Bonzini | 10578a2 | 2016-01-07 16:55:26 +0300 | [diff] [blame] | 176 | /** |
Paolo Bonzini | e9527dd | 2016-01-07 16:55:27 +0300 | [diff] [blame] | 177 | * trace_list_events: |
Doug Evans | 6745c8a | 2020-11-25 13:52:45 -0800 | [diff] [blame] | 178 | * @f: Where to send output. |
Paolo Bonzini | e9527dd | 2016-01-07 16:55:27 +0300 | [diff] [blame] | 179 | * |
| 180 | * List all available events. |
| 181 | */ |
Doug Evans | 6745c8a | 2020-11-25 13:52:45 -0800 | [diff] [blame] | 182 | void trace_list_events(FILE *f); |
Paolo Bonzini | e9527dd | 2016-01-07 16:55:27 +0300 | [diff] [blame] | 183 | |
| 184 | /** |
Paolo Bonzini | 10578a2 | 2016-01-07 16:55:26 +0300 | [diff] [blame] | 185 | * trace_enable_events: |
| 186 | * @line_buf: A string with a glob pattern of events to be enabled or, |
| 187 | * if the string starts with '-', disabled. |
| 188 | * |
| 189 | * Enable or disable matching events. |
| 190 | */ |
| 191 | void trace_enable_events(const char *line_buf); |
| 192 | |
Denis V. Lunev | e9e0bb2 | 2016-06-17 17:44:10 +0300 | [diff] [blame] | 193 | /** |
| 194 | * Definition of QEMU options describing trace subsystem configuration |
| 195 | */ |
| 196 | extern QemuOptsList qemu_trace_opts; |
| 197 | |
| 198 | /** |
| 199 | * trace_opt_parse: |
Philippe Mathieu-Daudé | 8b7b9c5 | 2023-10-04 14:00:19 +0200 | [diff] [blame] | 200 | * @optstr: A string argument of --trace command line argument |
Denis V. Lunev | e9e0bb2 | 2016-06-17 17:44:10 +0300 | [diff] [blame] | 201 | * |
| 202 | * Initialize tracing subsystem. |
Denis V. Lunev | e9e0bb2 | 2016-06-17 17:44:10 +0300 | [diff] [blame] | 203 | */ |
Philippe Mathieu-Daudé | 8b7b9c5 | 2023-10-04 14:00:19 +0200 | [diff] [blame] | 204 | void trace_opt_parse(const char *optstr); |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 205 | |
Daniel P. Berrange | b7d4895 | 2016-10-04 14:35:53 +0100 | [diff] [blame] | 206 | /** |
| 207 | * trace_get_vcpu_event_count: |
| 208 | * |
| 209 | * Return the number of known vcpu-specific events |
| 210 | */ |
| 211 | uint32_t trace_get_vcpu_event_count(void); |
| 212 | |
Lluís Vilanova | 4815185 | 2016-07-11 12:53:41 +0200 | [diff] [blame] | 213 | |
Michael S. Tsirkin | a322714 | 2018-05-03 22:50:28 +0300 | [diff] [blame] | 214 | #include "control-internal.h" |
Lluís Vilanova | b1bae81 | 2013-03-05 14:47:38 +0100 | [diff] [blame] | 215 | |
Markus Armbruster | 175de52 | 2016-06-29 15:29:06 +0200 | [diff] [blame] | 216 | #endif /* TRACE__CONTROL_H */ |