2009-03-06 00:01:23 +01:00
|
|
|
#ifndef MONITOR_H
|
|
|
|
#define MONITOR_H
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/qmp/qerror.h"
|
|
|
|
#include "qapi/qmp/qdict.h"
|
2012-12-17 18:19:44 +01:00
|
|
|
#include "block/block.h"
|
2013-11-14 11:54:15 +01:00
|
|
|
#include "qemu/readline.h"
|
2009-03-06 00:01:23 +01:00
|
|
|
|
|
|
|
extern Monitor *cur_mon;
|
2010-02-18 11:41:55 +01:00
|
|
|
extern Monitor *default_mon;
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2009-03-06 00:01:42 +01:00
|
|
|
/* flags for monitor_init */
|
|
|
|
#define MONITOR_IS_DEFAULT 0x01
|
2009-03-06 00:01:51 +01:00
|
|
|
#define MONITOR_USE_READLINE 0x02
|
2009-11-27 01:58:51 +01:00
|
|
|
#define MONITOR_USE_CONTROL 0x04
|
2010-06-07 16:42:31 +02:00
|
|
|
#define MONITOR_USE_PRETTY 0x08
|
2009-03-06 00:01:42 +01:00
|
|
|
|
2010-06-16 00:38:39 +02:00
|
|
|
/* flags for monitor commands */
|
|
|
|
#define MONITOR_CMD_ASYNC 0x0001
|
|
|
|
|
2009-11-27 01:59:03 +01:00
|
|
|
/* QMP events */
|
|
|
|
typedef enum MonitorEvent {
|
2009-12-04 19:05:45 +01:00
|
|
|
QEVENT_SHUTDOWN,
|
|
|
|
QEVENT_RESET,
|
|
|
|
QEVENT_POWERDOWN,
|
|
|
|
QEVENT_STOP,
|
2010-04-28 01:35:59 +02:00
|
|
|
QEVENT_RESUME,
|
QMP: Introduce VNC_CONNECTED event
It's emitted when a VNC client connects to QEMU, client's information
such as port and IP address are provided.
Note that this event is emitted right when the connection is
established. This means that it happens before authentication
procedure and session initialization.
Event example:
{ "event": "VNC_CONNECTED",
"timestamp": { "seconds": 1262976601, "microseconds": 975795 },
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0" },
"client": { "family": "ipv4", "service": "58425",
"host": "127.0.0.1" } } }
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2010-01-14 17:50:57 +01:00
|
|
|
QEVENT_VNC_CONNECTED,
|
QMP: Introduce VNC_INITIALIZED event
It's emitted when a VNC client session is activated by QEMU,
client's information such as port, IP and auth ID (if the
session is authenticated) are provided.
Event example:
{ "event": "VNC_INITIALIZED",
"timestamp": {"seconds": 1263475302, "microseconds": 150772},
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0"},
"client": { "family": "ipv4", "service": "46089",
"host": "127.0.0.1", "sasl_username": "lcapitulino" } } }
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2010-01-14 17:50:59 +01:00
|
|
|
QEVENT_VNC_INITIALIZED,
|
QMP: Introduce VNC_DISCONNECTED event
It's emitted when a VNC client disconnects from QEMU, client's
information such as port and IP address are provided.
Event example:
{ "event": "VNC_DISCONNECTED",
"timestamp": { "seconds": 1262976601, "microseconds": 975795 },
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0" },
"client": { "family": "ipv4", "service": "58425",
"host": "127.0.0.1", "sasl_username": "foo" } } }
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2010-01-14 17:50:58 +01:00
|
|
|
QEVENT_VNC_DISCONNECTED,
|
2010-02-03 15:41:00 +01:00
|
|
|
QEVENT_BLOCK_IO_ERROR,
|
2010-02-25 16:11:44 +01:00
|
|
|
QEVENT_RTC_CHANGE,
|
2010-02-25 16:13:04 +01:00
|
|
|
QEVENT_WATCHDOG,
|
2010-10-11 18:03:51 +02:00
|
|
|
QEVENT_SPICE_CONNECTED,
|
|
|
|
QEVENT_SPICE_INITIALIZED,
|
|
|
|
QEVENT_SPICE_DISCONNECTED,
|
2012-01-18 15:40:46 +01:00
|
|
|
QEVENT_BLOCK_JOB_COMPLETED,
|
2012-01-18 15:40:48 +01:00
|
|
|
QEVENT_BLOCK_JOB_CANCELLED,
|
block: introduce block job error
The following behaviors are possible:
'report': The behavior is the same as in 1.1. An I/O error,
respectively during a read or a write, will complete the job immediately
with an error code.
'ignore': An I/O error, respectively during a read or a write, will be
ignored. For streaming, the job will complete with an error and the
backing file will be left in place. For mirroring, the sector will be
marked again as dirty and re-examined later.
'stop': The job will be paused and the job iostatus will be set to
failed or nospace, while the VM will keep running. This can only be
specified if the block device has rerror=stop and werror=stop or enospc.
'enospc': Behaves as 'stop' for ENOSPC errors, 'report' for others.
In all cases, even for 'report', the I/O error is reported as a QMP
event BLOCK_JOB_ERROR, with the same arguments as BLOCK_IO_ERROR.
It is possible that while stopping the VM a BLOCK_IO_ERROR event will be
reported and will clobber the event from BLOCK_JOB_ERROR, or vice versa.
This is not really avoidable since stopping the VM completes all pending
I/O requests. In fact, it is already possible now that a series of
BLOCK_IO_ERROR events are reported with rerror=stop, because vm_stop
calls bdrv_drain_all and this can generate further errors.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2012-09-28 17:22:58 +02:00
|
|
|
QEVENT_BLOCK_JOB_ERROR,
|
2012-07-23 15:15:47 +02:00
|
|
|
QEVENT_BLOCK_JOB_READY,
|
2013-03-06 13:58:59 +01:00
|
|
|
QEVENT_DEVICE_DELETED,
|
2012-02-14 16:41:13 +01:00
|
|
|
QEVENT_DEVICE_TRAY_MOVED,
|
net: add support of mac-programming over macvtap in QEMU side
Currently macvtap based macvlan device is working in promiscuous
mode, we want to implement mac-programming over macvtap through
Libvirt for better performance.
Design:
QEMU notifies Libvirt when rx-filter config is changed in guest,
then Libvirt query the rx-filter information by a monitor command,
and sync the change to macvtap device. Related rx-filter config
of the nic contains main mac, rx-mode items and vlan table.
This patch adds a QMP event to notify management of rx-filter change,
and adds a monitor command for management to query rx-filter
information.
Test:
If we repeatedly add/remove vlan, and change macaddr of vlan
interfaces in guest by a loop script.
Result:
The events will flood the QMP client(management), management takes
too much resource to process the events.
Event_throttle API (set rate to 1 ms) can avoid the events to flood
QMP client, but it could cause an unexpected delay (~1ms), guests
guests normally expect rx-filter updates immediately.
So we use a flag for each nic to avoid events flooding, the event
is emitted once until the query command is executed. The flag
implementation could not introduce unexpected delay.
There maybe exist an uncontrollable delay if we let Libvirt do the
real change, guests normally expect rx-filter updates immediately.
But it's another separate issue, we can investigate it when the
work in Libvirt side is done.
Michael S. Tsirkin: tweaked to enable events on start
Michael S. Tsirkin: fixed not to crash when no id
Michael S. Tsirkin: fold in patch:
"additional fixes for mac-programming feature"
Amos Kong: always notify QMP client if mactable is changed
Amos Kong: return NULL list if no net client supports rx-filter query
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Amos Kong <akong@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2013-06-14 09:45:52 +02:00
|
|
|
QEVENT_NIC_RX_FILTER_CHANGED,
|
2012-02-23 13:45:26 +01:00
|
|
|
QEVENT_SUSPEND,
|
2012-08-08 22:03:01 +02:00
|
|
|
QEVENT_SUSPEND_DISK,
|
2012-02-23 13:45:26 +01:00
|
|
|
QEVENT_WAKEUP,
|
2012-06-14 19:12:56 +02:00
|
|
|
QEVENT_BALLOON_CHANGE,
|
2012-08-21 10:51:57 +02:00
|
|
|
QEVENT_SPICE_MIGRATE_COMPLETED,
|
2013-04-26 05:24:41 +02:00
|
|
|
QEVENT_GUEST_PANICKED,
|
2013-08-30 14:34:25 +02:00
|
|
|
QEVENT_BLOCK_IMAGE_CORRUPTED,
|
2014-02-21 22:21:15 +01:00
|
|
|
QEVENT_QUORUM_FAILURE,
|
|
|
|
QEVENT_QUORUM_REPORT_BAD,
|
2012-05-21 18:59:51 +02:00
|
|
|
|
|
|
|
/* Add to 'monitor_event_names' array in monitor.c when
|
|
|
|
* defining new events here */
|
|
|
|
|
2009-12-04 19:05:45 +01:00
|
|
|
QEVENT_MAX,
|
2009-11-27 01:59:03 +01:00
|
|
|
} MonitorEvent;
|
|
|
|
|
2010-02-11 17:05:43 +01:00
|
|
|
int monitor_cur_is_qmp(void);
|
|
|
|
|
2009-11-27 01:59:03 +01:00
|
|
|
void monitor_protocol_event(MonitorEvent event, QObject *data);
|
2009-03-06 00:01:42 +01:00
|
|
|
void monitor_init(CharDriverState *chr, int flags);
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2009-03-06 00:01:51 +01:00
|
|
|
int monitor_suspend(Monitor *mon);
|
2009-03-06 00:01:23 +01:00
|
|
|
void monitor_resume(Monitor *mon);
|
|
|
|
|
2010-02-11 02:50:01 +01:00
|
|
|
int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
|
|
|
|
BlockDriverCompletionFunc *completion_cb,
|
|
|
|
void *opaque);
|
2011-11-22 20:58:31 +01:00
|
|
|
int monitor_read_block_device_key(Monitor *mon, const char *device,
|
|
|
|
BlockDriverCompletionFunc *completion_cb,
|
|
|
|
void *opaque);
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2012-09-20 16:50:32 +02:00
|
|
|
int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp);
|
2012-08-21 22:52:07 +02:00
|
|
|
int monitor_handle_fd_param(Monitor *mon, const char *fdname);
|
2009-07-22 10:11:41 +02:00
|
|
|
|
2010-09-23 21:28:05 +02:00
|
|
|
void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
|
|
|
|
GCC_FMT_ATTR(2, 0);
|
2010-09-23 21:28:03 +02:00
|
|
|
void monitor_printf(Monitor *mon, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
|
2009-03-06 00:01:23 +01:00
|
|
|
void monitor_print_filename(Monitor *mon, const char *filename);
|
|
|
|
void monitor_flush(Monitor *mon);
|
2011-10-06 19:02:57 +02:00
|
|
|
int monitor_set_cpu(int cpu_index);
|
2011-10-24 14:53:44 +02:00
|
|
|
int monitor_get_cpu_index(void);
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2010-01-25 19:18:44 +01:00
|
|
|
typedef void (MonitorCompletion)(void *opaque, QObject *ret_data);
|
|
|
|
|
2010-02-17 10:52:26 +01:00
|
|
|
void monitor_set_error(Monitor *mon, QError *qerror);
|
2011-09-02 19:34:50 +02:00
|
|
|
void monitor_read_command(Monitor *mon, int show_prompt);
|
|
|
|
ReadLineState *monitor_get_rs(Monitor *mon);
|
|
|
|
int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
|
|
|
|
void *opaque);
|
2010-02-17 10:52:26 +01:00
|
|
|
|
2011-12-12 21:29:35 +01:00
|
|
|
int qmp_qom_set(Monitor *mon, const QDict *qdict, QObject **ret);
|
|
|
|
|
|
|
|
int qmp_qom_get(Monitor *mon, const QDict *qdict, QObject **ret);
|
2013-12-20 23:21:10 +01:00
|
|
|
int qmp_object_add(Monitor *mon, const QDict *qdict, QObject **ret);
|
|
|
|
void object_add(const char *type, const char *id, const QDict *qdict,
|
|
|
|
Visitor *v, Error **errp);
|
2011-12-12 21:29:35 +01:00
|
|
|
|
2012-10-18 21:19:32 +02:00
|
|
|
AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
|
|
|
|
bool has_opaque, const char *opaque,
|
|
|
|
Error **errp);
|
2012-08-14 22:43:47 +02:00
|
|
|
int monitor_fdset_get_fd(int64_t fdset_id, int flags);
|
|
|
|
int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd);
|
|
|
|
int monitor_fdset_dup_fd_remove(int dup_fd);
|
|
|
|
int monitor_fdset_dup_fd_find(int dup_fd);
|
|
|
|
|
2009-03-06 00:01:23 +01:00
|
|
|
#endif /* !MONITOR_H */
|