2011-07-19 15:41:53 -05:00
|
|
|
/*
|
|
|
|
* QEMU Guest Agent core declarations
|
|
|
|
*
|
|
|
|
* Copyright IBM Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Adam Litke <aglitke@linux.vnet.ibm.com>
|
|
|
|
* Michael Roth <mdroth@linux.vnet.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
2018-11-08 12:52:23 +00:00
|
|
|
#ifndef GUEST_AGENT_CORE_H
|
|
|
|
#define GUEST_AGENT_CORE_H
|
|
|
|
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/qmp/dispatch.h"
|
2011-07-19 15:41:53 -05:00
|
|
|
#include "qemu-common.h"
|
2018-02-01 12:18:33 +01:00
|
|
|
#include "qga-qapi-types.h"
|
2011-07-19 15:41:53 -05:00
|
|
|
|
2012-01-19 00:18:20 -06:00
|
|
|
#define QGA_READ_COUNT_DEFAULT 4096
|
2011-07-19 15:41:53 -05:00
|
|
|
|
2011-07-20 15:19:37 -05:00
|
|
|
typedef struct GAState GAState;
|
2011-07-19 15:41:53 -05:00
|
|
|
typedef struct GACommandState GACommandState;
|
2017-03-03 13:32:25 +01:00
|
|
|
|
2012-02-07 13:56:48 -06:00
|
|
|
extern GAState *ga_state;
|
2017-03-03 13:32:25 +01:00
|
|
|
extern QmpCommandList ga_commands;
|
2011-07-19 15:41:53 -05:00
|
|
|
|
2014-06-30 17:51:40 -04:00
|
|
|
GList *ga_command_blacklist_init(GList *blacklist);
|
2011-07-19 15:41:55 -05:00
|
|
|
void ga_command_state_init(GAState *s, GACommandState *cs);
|
2011-07-19 15:41:53 -05:00
|
|
|
void ga_command_state_add(GACommandState *cs,
|
|
|
|
void (*init)(void),
|
|
|
|
void (*cleanup)(void));
|
|
|
|
void ga_command_state_init_all(GACommandState *cs);
|
|
|
|
void ga_command_state_cleanup_all(GACommandState *cs);
|
|
|
|
GACommandState *ga_command_state_new(void);
|
2016-07-15 17:52:52 +02:00
|
|
|
void ga_command_state_free(GACommandState *cs);
|
2011-07-20 15:19:37 -05:00
|
|
|
bool ga_logging_enabled(GAState *s);
|
|
|
|
void ga_disable_logging(GAState *s);
|
|
|
|
void ga_enable_logging(GAState *s);
|
2013-11-17 19:19:52 +01:00
|
|
|
void GCC_FMT_ATTR(1, 2) slog(const gchar *fmt, ...);
|
2012-02-07 13:56:48 -06:00
|
|
|
void ga_set_response_delimited(GAState *s);
|
2012-04-17 19:01:45 -05:00
|
|
|
bool ga_is_frozen(GAState *s);
|
|
|
|
void ga_set_frozen(GAState *s);
|
|
|
|
void ga_unset_frozen(GAState *s);
|
2012-12-12 12:55:55 +09:00
|
|
|
const char *ga_fsfreeze_hook(GAState *s);
|
2013-03-01 11:40:27 -06:00
|
|
|
int64_t ga_get_fd_handle(GAState *s, Error **errp);
|
2016-02-09 14:27:16 -07:00
|
|
|
int ga_parse_whence(GuestFileWhence *whence, Error **errp);
|
2012-05-10 16:50:41 -03:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
void reopen_fd_to_null(int fd);
|
|
|
|
#endif
|
2018-11-08 12:52:23 +00:00
|
|
|
|
|
|
|
#endif /* GUEST_AGENT_CORE_H */
|