 54aa3de72e
			
		
	
	
		54aa3de72e
		
	
	
	
	
		
			
			Anywhere we create a list of just one item or by prepending items (typically because order doesn't matter), we can use QAPI_LIST_PREPEND(). But places where we must keep the list in order by appending remain open-coded until later patches. Note that as a side effect, this also performs a cleanup of two minor issues in qga/commands-posix.c: the old code was performing new = g_malloc0(sizeof(*ret)); which 1) is confusing because you have to verify whether 'new' and 'ret' are variables with the same type, and 2) would conflict with C++ compilation (not an actual problem for this file, but makes copy-and-paste harder). Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <20201113011340.463563-5-eblake@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Acked-by: Stefan Hajnoczi <stefanha@redhat.com> [Straightforward conflicts due to commit a8aa94b5f8 "qga: update schema for guest-get-disks 'dependents' field" and commit a10b453a52 "target/mips: Move mips_cpu_add_definition() from helper.c to cpu.c" resolved. Commit message tweaked.] Signed-off-by: Markus Armbruster <armbru@redhat.com>
		
			
				
	
	
		
			169 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			169 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QMP commands for tracing events.
 | |
|  *
 | |
|  * Copyright (C) 2014-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.
 | |
|  */
 | |
| 
 | |
| #include "qemu/osdep.h"
 | |
| #include "qapi/error.h"
 | |
| #include "qapi/qapi-commands-trace.h"
 | |
| #include "control-vcpu.h"
 | |
| 
 | |
| 
 | |
| static CPUState *get_cpu(bool has_vcpu, int vcpu, Error **errp)
 | |
| {
 | |
|     if (has_vcpu) {
 | |
|         CPUState *cpu = qemu_get_cpu(vcpu);
 | |
|         if (cpu == NULL) {
 | |
|             error_setg(errp, "invalid vCPU index %u", vcpu);
 | |
|         }
 | |
|         return cpu;
 | |
|     } else {
 | |
|         return NULL;
 | |
|     }
 | |
| }
 | |
| 
 | |
| static bool check_events(bool has_vcpu, bool ignore_unavailable, bool is_pattern,
 | |
|                          const char *name, Error **errp)
 | |
| {
 | |
|     if (!is_pattern) {
 | |
|         TraceEvent *ev = trace_event_name(name);
 | |
| 
 | |
|         /* error for non-existing event */
 | |
|         if (ev == NULL) {
 | |
|             error_setg(errp, "unknown event \"%s\"", name);
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         /* error for non-vcpu event */
 | |
|         if (has_vcpu && !trace_event_is_vcpu(ev)) {
 | |
|             error_setg(errp, "event \"%s\" is not vCPU-specific", name);
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         /* error for unavailable event */
 | |
|         if (!ignore_unavailable && !trace_event_get_state_static(ev)) {
 | |
|             error_setg(errp, "event \"%s\" is disabled", name);
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         return true;
 | |
|     } else {
 | |
|         /* error for unavailable events */
 | |
|         TraceEventIter iter;
 | |
|         TraceEvent *ev;
 | |
|         trace_event_iter_init(&iter, name);
 | |
|         while ((ev = trace_event_iter_next(&iter)) != NULL) {
 | |
|             if (!ignore_unavailable && !trace_event_get_state_static(ev)) {
 | |
|                 error_setg(errp, "event \"%s\" is disabled", trace_event_get_name(ev));
 | |
|                 return false;
 | |
|             }
 | |
|         }
 | |
|         return true;
 | |
|     }
 | |
| }
 | |
| 
 | |
| TraceEventInfoList *qmp_trace_event_get_state(const char *name,
 | |
|                                               bool has_vcpu, int64_t vcpu,
 | |
|                                               Error **errp)
 | |
| {
 | |
|     Error *err = NULL;
 | |
|     TraceEventInfoList *events = NULL;
 | |
|     TraceEventIter iter;
 | |
|     TraceEvent *ev;
 | |
|     bool is_pattern = trace_event_is_pattern(name);
 | |
|     CPUState *cpu;
 | |
| 
 | |
|     /* Check provided vcpu */
 | |
|     cpu = get_cpu(has_vcpu, vcpu, &err);
 | |
|     if (err) {
 | |
|         error_propagate(errp, err);
 | |
|         return NULL;
 | |
|     }
 | |
| 
 | |
|     /* Check events */
 | |
|     if (!check_events(has_vcpu, true, is_pattern, name, errp)) {
 | |
|         return NULL;
 | |
|     }
 | |
| 
 | |
|     /* Get states (all errors checked above) */
 | |
|     trace_event_iter_init(&iter, name);
 | |
|     while ((ev = trace_event_iter_next(&iter)) != NULL) {
 | |
|         TraceEventInfo *value;
 | |
|         bool is_vcpu = trace_event_is_vcpu(ev);
 | |
|         if (has_vcpu && !is_vcpu) {
 | |
|             continue;
 | |
|         }
 | |
| 
 | |
|         value = g_new(TraceEventInfo, 1);
 | |
|         value->vcpu = is_vcpu;
 | |
|         value->name = g_strdup(trace_event_get_name(ev));
 | |
| 
 | |
|         if (!trace_event_get_state_static(ev)) {
 | |
|             value->state = TRACE_EVENT_STATE_UNAVAILABLE;
 | |
|         } else {
 | |
|             if (has_vcpu) {
 | |
|                 if (is_vcpu) {
 | |
|                     if (trace_event_get_vcpu_state_dynamic(cpu, ev)) {
 | |
|                         value->state = TRACE_EVENT_STATE_ENABLED;
 | |
|                     } else {
 | |
|                         value->state = TRACE_EVENT_STATE_DISABLED;
 | |
|                     }
 | |
|                 }
 | |
|                 /* else: already skipped above */
 | |
|             } else {
 | |
|                 if (trace_event_get_state_dynamic(ev)) {
 | |
|                     value->state = TRACE_EVENT_STATE_ENABLED;
 | |
|                 } else {
 | |
|                     value->state = TRACE_EVENT_STATE_DISABLED;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         QAPI_LIST_PREPEND(events, value);
 | |
|     }
 | |
| 
 | |
|     return events;
 | |
| }
 | |
| 
 | |
| void qmp_trace_event_set_state(const char *name, bool enable,
 | |
|                                bool has_ignore_unavailable, bool ignore_unavailable,
 | |
|                                bool has_vcpu, int64_t vcpu,
 | |
|                                Error **errp)
 | |
| {
 | |
|     Error *err = NULL;
 | |
|     TraceEventIter iter;
 | |
|     TraceEvent *ev;
 | |
|     bool is_pattern = trace_event_is_pattern(name);
 | |
|     CPUState *cpu;
 | |
| 
 | |
|     /* Check provided vcpu */
 | |
|     cpu = get_cpu(has_vcpu, vcpu, &err);
 | |
|     if (err) {
 | |
|         error_propagate(errp, err);
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     /* Check events */
 | |
|     if (!check_events(has_vcpu, has_ignore_unavailable && ignore_unavailable,
 | |
|                       is_pattern, name, errp)) {
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     /* Apply changes (all errors checked above) */
 | |
|     trace_event_iter_init(&iter, name);
 | |
|     while ((ev = trace_event_iter_next(&iter)) != NULL) {
 | |
|         if (!trace_event_get_state_static(ev) ||
 | |
|             (has_vcpu && !trace_event_is_vcpu(ev))) {
 | |
|             continue;
 | |
|         }
 | |
|         if (has_vcpu) {
 | |
|             trace_event_set_vcpu_state_dynamic(cpu, ev, enable);
 | |
|         } else {
 | |
|             trace_event_set_state_dynamic(ev, enable);
 | |
|         }
 | |
|     }
 | |
| }
 |