2011-10-05 17:31:54 +00:00
|
|
|
/*
|
|
|
|
* qemu_agent.h: interaction with QEMU guest agent
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2012 Red Hat, Inc.
|
|
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2011-10-05 17:31:54 +00:00
|
|
|
*
|
|
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __QEMU_AGENT_H__
|
|
|
|
# define __QEMU_AGENT_H__
|
|
|
|
|
|
|
|
# include "internal.h"
|
|
|
|
# include "domain_conf.h"
|
|
|
|
|
|
|
|
typedef struct _qemuAgent qemuAgent;
|
|
|
|
typedef qemuAgent *qemuAgentPtr;
|
|
|
|
|
|
|
|
typedef struct _qemuAgentCallbacks qemuAgentCallbacks;
|
|
|
|
typedef qemuAgentCallbacks *qemuAgentCallbacksPtr;
|
|
|
|
struct _qemuAgentCallbacks {
|
|
|
|
void (*destroy)(qemuAgentPtr mon,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
void (*eofNotify)(qemuAgentPtr mon,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
void (*errorNotify)(qemuAgentPtr mon,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
qemuAgentPtr qemuAgentOpen(virDomainObjPtr vm,
|
|
|
|
virDomainChrSourceDefPtr config,
|
|
|
|
qemuAgentCallbacksPtr cb);
|
|
|
|
|
|
|
|
void qemuAgentClose(qemuAgentPtr mon);
|
|
|
|
|
2012-06-15 16:00:13 +00:00
|
|
|
typedef enum {
|
|
|
|
QEMU_AGENT_EVENT_NONE = 0,
|
|
|
|
QEMU_AGENT_EVENT_SHUTDOWN,
|
2012-09-04 10:01:43 +00:00
|
|
|
QEMU_AGENT_EVENT_SUSPEND,
|
|
|
|
QEMU_AGENT_EVENT_RESET,
|
2012-06-15 16:00:13 +00:00
|
|
|
} qemuAgentEvent;
|
|
|
|
|
|
|
|
void qemuAgentNotifyEvent(qemuAgentPtr mon,
|
|
|
|
qemuAgentEvent event);
|
|
|
|
|
2011-10-05 17:31:54 +00:00
|
|
|
typedef enum {
|
|
|
|
QEMU_AGENT_SHUTDOWN_POWERDOWN,
|
|
|
|
QEMU_AGENT_SHUTDOWN_REBOOT,
|
|
|
|
QEMU_AGENT_SHUTDOWN_HALT,
|
|
|
|
|
|
|
|
QEMU_AGENT_SHUTDOWN_LAST,
|
|
|
|
} qemuAgentShutdownMode;
|
|
|
|
|
|
|
|
int qemuAgentShutdown(qemuAgentPtr mon,
|
|
|
|
qemuAgentShutdownMode mode);
|
|
|
|
|
2012-01-24 20:13:40 +00:00
|
|
|
int qemuAgentFSFreeze(qemuAgentPtr mon);
|
|
|
|
int qemuAgentFSThaw(qemuAgentPtr mon);
|
|
|
|
|
2012-02-13 11:27:25 +00:00
|
|
|
int qemuAgentSuspend(qemuAgentPtr mon,
|
|
|
|
unsigned int target);
|
2012-08-23 03:29:22 +00:00
|
|
|
|
|
|
|
int qemuAgentArbitraryCommand(qemuAgentPtr mon,
|
|
|
|
const char *cmd,
|
|
|
|
char **result,
|
|
|
|
int timeout);
|
2012-11-20 16:10:29 +00:00
|
|
|
int qemuAgentFSTrim(qemuAgentPtr mon,
|
|
|
|
unsigned long long minimum);
|
2011-10-05 17:31:54 +00:00
|
|
|
#endif /* __QEMU_AGENT_H__ */
|