xref: /openbmc/qemu/monitor/qmp.c (revision 0ff25537)
1 /*
2  * QEMU monitor
3  *
4  * Copyright (c) 2003-2004 Fabrice Bellard
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 
25 #include "qemu/osdep.h"
26 
27 #include "chardev/char-io.h"
28 #include "monitor-internal.h"
29 #include "qapi/error.h"
30 #include "qapi/qapi-commands-control.h"
31 #include "qapi/qmp/qdict.h"
32 #include "qapi/qmp/qjson.h"
33 #include "qapi/qmp/qlist.h"
34 #include "trace.h"
35 
36 struct QMPRequest {
37     /* Owner of the request */
38     MonitorQMP *mon;
39     /*
40      * Request object to be handled or Error to be reported
41      * (exactly one of them is non-null)
42      */
43     QObject *req;
44     Error *err;
45 };
46 typedef struct QMPRequest QMPRequest;
47 
48 QmpCommandList qmp_commands, qmp_cap_negotiation_commands;
49 
50 static bool qmp_oob_enabled(MonitorQMP *mon)
51 {
52     return mon->capab[QMP_CAPABILITY_OOB];
53 }
54 
55 static void monitor_qmp_caps_reset(MonitorQMP *mon)
56 {
57     memset(mon->capab_offered, 0, sizeof(mon->capab_offered));
58     memset(mon->capab, 0, sizeof(mon->capab));
59     mon->capab_offered[QMP_CAPABILITY_OOB] = mon->common.use_io_thread;
60 }
61 
62 static void qmp_request_free(QMPRequest *req)
63 {
64     qobject_unref(req->req);
65     error_free(req->err);
66     g_free(req);
67 }
68 
69 /* Caller must hold mon->qmp.qmp_queue_lock */
70 static void monitor_qmp_cleanup_req_queue_locked(MonitorQMP *mon)
71 {
72     while (!g_queue_is_empty(mon->qmp_requests)) {
73         qmp_request_free(g_queue_pop_head(mon->qmp_requests));
74     }
75 }
76 
77 static void monitor_qmp_cleanup_queue_and_resume(MonitorQMP *mon)
78 {
79     QEMU_LOCK_GUARD(&mon->qmp_queue_lock);
80 
81     /*
82      * Same condition as in monitor_qmp_dispatcher_co(), but before
83      * removing an element from the queue (hence no `- 1`).
84      * Also, the queue should not be empty either, otherwise the
85      * monitor hasn't been suspended yet (or was already resumed).
86      */
87     bool need_resume = (!qmp_oob_enabled(mon) ||
88         mon->qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX)
89         && !g_queue_is_empty(mon->qmp_requests);
90 
91     monitor_qmp_cleanup_req_queue_locked(mon);
92 
93     if (need_resume) {
94         /*
95          * handle_qmp_command() suspended the monitor because the
96          * request queue filled up, to be resumed when the queue has
97          * space again.  We just emptied it; resume the monitor.
98          *
99          * Without this, the monitor would remain suspended forever
100          * when we get here while the monitor is suspended.  An
101          * unfortunately timed CHR_EVENT_CLOSED can do the trick.
102          */
103         monitor_resume(&mon->common);
104     }
105 
106 }
107 
108 void qmp_send_response(MonitorQMP *mon, const QDict *rsp)
109 {
110     const QObject *data = QOBJECT(rsp);
111     GString *json;
112 
113     json = qobject_to_json_pretty(data, mon->pretty);
114     assert(json != NULL);
115     trace_monitor_qmp_respond(mon, json->str);
116 
117     g_string_append_c(json, '\n');
118     monitor_puts(&mon->common, json->str);
119 
120     g_string_free(json, true);
121 }
122 
123 /*
124  * Emit QMP response @rsp to @mon.
125  * Null @rsp can only happen for commands with QCO_NO_SUCCESS_RESP.
126  * Nothing is emitted then.
127  */
128 static void monitor_qmp_respond(MonitorQMP *mon, QDict *rsp)
129 {
130     if (rsp) {
131         qmp_send_response(mon, rsp);
132     }
133 }
134 
135 /*
136  * Runs outside of coroutine context for OOB commands, but in
137  * coroutine context for everything else.
138  */
139 static void monitor_qmp_dispatch(MonitorQMP *mon, QObject *req)
140 {
141     QDict *rsp;
142     QDict *error;
143 
144     rsp = qmp_dispatch(mon->commands, req, qmp_oob_enabled(mon),
145                        &mon->common);
146 
147     if (mon->commands == &qmp_cap_negotiation_commands) {
148         error = qdict_get_qdict(rsp, "error");
149         if (error
150             && !g_strcmp0(qdict_get_try_str(error, "class"),
151                     QapiErrorClass_str(ERROR_CLASS_COMMAND_NOT_FOUND))) {
152             /* Provide a more useful error message */
153             qdict_del(error, "desc");
154             qdict_put_str(error, "desc", "Expecting capabilities negotiation"
155                           " with 'qmp_capabilities'");
156         }
157     }
158 
159     monitor_qmp_respond(mon, rsp);
160     qobject_unref(rsp);
161 }
162 
163 /*
164  * Pop a QMP request from a monitor request queue.
165  * Return the request, or NULL all request queues are empty.
166  * We are using round-robin fashion to pop the request, to avoid
167  * processing commands only on a very busy monitor.  To achieve that,
168  * when we process one request on a specific monitor, we put that
169  * monitor to the end of mon_list queue.
170  *
171  * Note: if the function returned with non-NULL, then the caller will
172  * be with qmp_mon->qmp_queue_lock held, and the caller is responsible
173  * to release it.
174  */
175 static QMPRequest *monitor_qmp_requests_pop_any_with_lock(void)
176 {
177     QMPRequest *req_obj = NULL;
178     Monitor *mon;
179     MonitorQMP *qmp_mon;
180 
181     QTAILQ_FOREACH(mon, &mon_list, entry) {
182         if (!monitor_is_qmp(mon)) {
183             continue;
184         }
185 
186         qmp_mon = container_of(mon, MonitorQMP, common);
187         qemu_mutex_lock(&qmp_mon->qmp_queue_lock);
188         req_obj = g_queue_pop_head(qmp_mon->qmp_requests);
189         if (req_obj) {
190             /* With the lock of corresponding queue held */
191             break;
192         }
193         qemu_mutex_unlock(&qmp_mon->qmp_queue_lock);
194     }
195 
196     if (req_obj) {
197         /*
198          * We found one request on the monitor. Degrade this monitor's
199          * priority to lowest by re-inserting it to end of queue.
200          */
201         QTAILQ_REMOVE(&mon_list, mon, entry);
202         QTAILQ_INSERT_TAIL(&mon_list, mon, entry);
203     }
204 
205     return req_obj;
206 }
207 
208 void coroutine_fn monitor_qmp_dispatcher_co(void *data)
209 {
210     QMPRequest *req_obj = NULL;
211     QDict *rsp;
212     bool oob_enabled;
213     MonitorQMP *mon;
214 
215     while (true) {
216         /*
217          * busy must be set to true again by whoever
218          * rescheduled us to avoid double scheduling
219          */
220         assert(qatomic_mb_read(&qmp_dispatcher_co_busy) == true);
221 
222         /*
223          * Mark the dispatcher as not busy already here so that we
224          * don't miss any new requests coming in the middle of our
225          * processing.
226          */
227         qatomic_mb_set(&qmp_dispatcher_co_busy, false);
228 
229         WITH_QEMU_LOCK_GUARD(&monitor_lock) {
230             /* On shutdown, don't take any more requests from the queue */
231             if (qmp_dispatcher_co_shutdown) {
232                 return NULL;
233             }
234 
235             req_obj = monitor_qmp_requests_pop_any_with_lock();
236         }
237 
238         if (!req_obj) {
239             /*
240              * No more requests to process.  Wait to be reentered from
241              * handle_qmp_command() when it pushes more requests, or
242              * from monitor_cleanup() when it requests shutdown.
243              */
244             qemu_coroutine_yield();
245             continue;
246         }
247 
248         trace_monitor_qmp_in_band_dequeue(req_obj,
249                                           req_obj->mon->qmp_requests->length);
250 
251         /*
252          * @req_obj has a request, we hold req_obj->mon->qmp_queue_lock
253          */
254 
255         mon = req_obj->mon;
256 
257         /*
258          * We need to resume the monitor if handle_qmp_command()
259          * suspended it.  Two cases:
260          * 1. OOB enabled: mon->qmp_requests has no more space
261          *    Resume right away, so that OOB commands can get executed while
262          *    this request is being processed.
263          * 2. OOB disabled: always
264          *    Resume only after we're done processing the request,
265          * We need to save qmp_oob_enabled() for later, because
266          * qmp_qmp_capabilities() can change it.
267          */
268         oob_enabled = qmp_oob_enabled(mon);
269         if (oob_enabled
270             && mon->qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1) {
271             monitor_resume(&mon->common);
272         }
273 
274         /*
275          * Drop the queue mutex now, before yielding, otherwise we might
276          * deadlock if the main thread tries to lock it.
277          */
278         qemu_mutex_unlock(&mon->qmp_queue_lock);
279 
280         if (qatomic_xchg(&qmp_dispatcher_co_busy, true) == true) {
281             /*
282              * Someone rescheduled us (probably because a new requests
283              * came in), but we didn't actually yield. Do that now,
284              * only to be immediately reentered and removed from the
285              * list of scheduled coroutines.
286              */
287             qemu_coroutine_yield();
288         }
289 
290         /*
291          * Move the coroutine from iohandler_ctx to qemu_aio_context for
292          * executing the command handler so that it can make progress if it
293          * involves an AIO_WAIT_WHILE().
294          */
295         aio_co_schedule(qemu_get_aio_context(), qmp_dispatcher_co);
296         qemu_coroutine_yield();
297 
298         /* Process request */
299         if (req_obj->req) {
300             if (trace_event_get_state(TRACE_MONITOR_QMP_CMD_IN_BAND)) {
301                 QDict *qdict = qobject_to(QDict, req_obj->req);
302                 QObject *id = qdict ? qdict_get(qdict, "id") : NULL;
303                 GString *id_json;
304 
305                 id_json = id ? qobject_to_json(id) : g_string_new(NULL);
306                 trace_monitor_qmp_cmd_in_band(id_json->str);
307                 g_string_free(id_json, true);
308             }
309             monitor_qmp_dispatch(mon, req_obj->req);
310         } else {
311             assert(req_obj->err);
312             trace_monitor_qmp_err_in_band(error_get_pretty(req_obj->err));
313             rsp = qmp_error_response(req_obj->err);
314             req_obj->err = NULL;
315             monitor_qmp_respond(mon, rsp);
316             qobject_unref(rsp);
317         }
318 
319         if (!oob_enabled) {
320             monitor_resume(&mon->common);
321         }
322 
323         qmp_request_free(req_obj);
324 
325         /*
326          * Yield and reschedule so the main loop stays responsive.
327          *
328          * Move back to iohandler_ctx so that nested event loops for
329          * qemu_aio_context don't start new monitor commands.
330          */
331         aio_co_schedule(iohandler_get_aio_context(), qmp_dispatcher_co);
332         qemu_coroutine_yield();
333     }
334     qatomic_set(&qmp_dispatcher_co, NULL);
335 }
336 
337 static void handle_qmp_command(void *opaque, QObject *req, Error *err)
338 {
339     MonitorQMP *mon = opaque;
340     QDict *qdict = qobject_to(QDict, req);
341     QMPRequest *req_obj;
342 
343     assert(!req != !err);
344 
345     if (req && trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND)) {
346         GString *req_json = qobject_to_json(req);
347         trace_handle_qmp_command(mon, req_json->str);
348         g_string_free(req_json, true);
349     }
350 
351     if (qdict && qmp_is_oob(qdict)) {
352         /* OOB commands are executed immediately */
353         if (trace_event_get_state(TRACE_MONITOR_QMP_CMD_OUT_OF_BAND)) {
354             QObject *id = qdict_get(qdict, "id");
355             GString *id_json;
356 
357             id_json = id ? qobject_to_json(id) : g_string_new(NULL);
358             trace_monitor_qmp_cmd_out_of_band(id_json->str);
359             g_string_free(id_json, true);
360         }
361         monitor_qmp_dispatch(mon, req);
362         qobject_unref(req);
363         return;
364     }
365 
366     req_obj = g_new0(QMPRequest, 1);
367     req_obj->mon = mon;
368     req_obj->req = req;
369     req_obj->err = err;
370 
371     /* Protect qmp_requests and fetching its length. */
372     WITH_QEMU_LOCK_GUARD(&mon->qmp_queue_lock) {
373 
374         /*
375          * Suspend the monitor when we can't queue more requests after
376          * this one.  Dequeuing in monitor_qmp_dispatcher_co() or
377          * monitor_qmp_cleanup_queue_and_resume() will resume it.
378          * Note that when OOB is disabled, we queue at most one command,
379          * for backward compatibility.
380          */
381         if (!qmp_oob_enabled(mon) ||
382             mon->qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1) {
383             monitor_suspend(&mon->common);
384         }
385 
386         /*
387          * Put the request to the end of queue so that requests will be
388          * handled in time order.  Ownership for req_obj, req,
389          * etc. will be delivered to the handler side.
390          */
391         trace_monitor_qmp_in_band_enqueue(req_obj, mon,
392                                           mon->qmp_requests->length);
393         assert(mon->qmp_requests->length < QMP_REQ_QUEUE_LEN_MAX);
394         g_queue_push_tail(mon->qmp_requests, req_obj);
395     }
396 
397     /* Kick the dispatcher routine */
398     if (!qatomic_xchg(&qmp_dispatcher_co_busy, true)) {
399         aio_co_wake(qmp_dispatcher_co);
400     }
401 }
402 
403 static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
404 {
405     MonitorQMP *mon = opaque;
406 
407     json_message_parser_feed(&mon->parser, (const char *) buf, size);
408 }
409 
410 static QDict *qmp_greeting(MonitorQMP *mon)
411 {
412     QList *cap_list = qlist_new();
413     QObject *ver = NULL;
414     QDict *args;
415     QMPCapability cap;
416 
417     args = qdict_new();
418     qmp_marshal_query_version(args, &ver, NULL);
419     qobject_unref(args);
420 
421     for (cap = 0; cap < QMP_CAPABILITY__MAX; cap++) {
422         if (mon->capab_offered[cap]) {
423             qlist_append_str(cap_list, QMPCapability_str(cap));
424         }
425     }
426 
427     return qdict_from_jsonf_nofail(
428         "{'QMP': {'version': %p, 'capabilities': %p}}",
429         ver, cap_list);
430 }
431 
432 static void monitor_qmp_event(void *opaque, QEMUChrEvent event)
433 {
434     QDict *data;
435     MonitorQMP *mon = opaque;
436 
437     switch (event) {
438     case CHR_EVENT_OPENED:
439         mon->commands = &qmp_cap_negotiation_commands;
440         monitor_qmp_caps_reset(mon);
441         data = qmp_greeting(mon);
442         qmp_send_response(mon, data);
443         qobject_unref(data);
444         mon_refcount++;
445         break;
446     case CHR_EVENT_CLOSED:
447         /*
448          * Note: this is only useful when the output of the chardev
449          * backend is still open.  For example, when the backend is
450          * stdio, it's possible that stdout is still open when stdin
451          * is closed.
452          */
453         monitor_qmp_cleanup_queue_and_resume(mon);
454         json_message_parser_destroy(&mon->parser);
455         json_message_parser_init(&mon->parser, handle_qmp_command,
456                                  mon, NULL);
457         mon_refcount--;
458         monitor_fdsets_cleanup();
459         break;
460     case CHR_EVENT_BREAK:
461     case CHR_EVENT_MUX_IN:
462     case CHR_EVENT_MUX_OUT:
463         /* Ignore */
464         break;
465     }
466 }
467 
468 void monitor_data_destroy_qmp(MonitorQMP *mon)
469 {
470     json_message_parser_destroy(&mon->parser);
471     qemu_mutex_destroy(&mon->qmp_queue_lock);
472     monitor_qmp_cleanup_req_queue_locked(mon);
473     g_queue_free(mon->qmp_requests);
474 }
475 
476 static void monitor_qmp_setup_handlers_bh(void *opaque)
477 {
478     MonitorQMP *mon = opaque;
479     GMainContext *context;
480 
481     assert(mon->common.use_io_thread);
482     context = iothread_get_g_main_context(mon_iothread);
483     assert(context);
484     qemu_chr_fe_set_handlers(&mon->common.chr, monitor_can_read,
485                              monitor_qmp_read, monitor_qmp_event,
486                              NULL, &mon->common, context, true);
487     monitor_list_append(&mon->common);
488 }
489 
490 void monitor_init_qmp(Chardev *chr, bool pretty, Error **errp)
491 {
492     MonitorQMP *mon = g_new0(MonitorQMP, 1);
493 
494     if (!qemu_chr_fe_init(&mon->common.chr, chr, errp)) {
495         g_free(mon);
496         return;
497     }
498     qemu_chr_fe_set_echo(&mon->common.chr, true);
499 
500     /* Note: we run QMP monitor in I/O thread when @chr supports that */
501     monitor_data_init(&mon->common, true, false,
502                       qemu_chr_has_feature(chr, QEMU_CHAR_FEATURE_GCONTEXT));
503 
504     mon->pretty = pretty;
505 
506     qemu_mutex_init(&mon->qmp_queue_lock);
507     mon->qmp_requests = g_queue_new();
508 
509     json_message_parser_init(&mon->parser, handle_qmp_command, mon, NULL);
510     if (mon->common.use_io_thread) {
511         /*
512          * Make sure the old iowatch is gone.  It's possible when
513          * e.g. the chardev is in client mode, with wait=on.
514          */
515         remove_fd_in_watch(chr);
516         /*
517          * We can't call qemu_chr_fe_set_handlers() directly here
518          * since chardev might be running in the monitor I/O
519          * thread.  Schedule a bottom half.
520          */
521         aio_bh_schedule_oneshot(iothread_get_aio_context(mon_iothread),
522                                 monitor_qmp_setup_handlers_bh, mon);
523         /* The bottom half will add @mon to @mon_list */
524     } else {
525         qemu_chr_fe_set_handlers(&mon->common.chr, monitor_can_read,
526                                  monitor_qmp_read, monitor_qmp_event,
527                                  NULL, &mon->common, NULL, true);
528         monitor_list_append(&mon->common);
529     }
530 }
531