qemu_monitor_json.h 10.2 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3
/*
 * qemu_monitor_json.h: interaction with QEMU monitor console
 *
4
 * Copyright (C) 2006-2009, 2011 Red Hat, Inc.
D
Daniel P. Berrange 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */


#ifndef QEMU_MONITOR_JSON_H
26
# define QEMU_MONITOR_JSON_H
D
Daniel P. Berrange 已提交
27

28
# include "internal.h"
D
Daniel P. Berrange 已提交
29

30
# include "qemu_monitor.h"
D
Daniel P. Berrange 已提交
31 32 33 34 35 36

int qemuMonitorJSONIOProcess(qemuMonitorPtr mon,
                             const char *data,
                             size_t len,
                             qemuMonitorMessagePtr msg);

37 38 39 40 41
int qemuMonitorJSONHumanCommandWithFd(qemuMonitorPtr mon,
                                      const char *cmd,
                                      int scm_fd,
                                      char **reply);

42 43
int qemuMonitorJSONSetCapabilities(qemuMonitorPtr mon);

44 45
int qemuMonitorJSONCheckHMP(qemuMonitorPtr mon);

D
Daniel P. Berrange 已提交
46 47 48
int qemuMonitorJSONStartCPUs(qemuMonitorPtr mon,
                             virConnectPtr conn);
int qemuMonitorJSONStopCPUs(qemuMonitorPtr mon);
49
int qemuMonitorJSONGetStatus(qemuMonitorPtr mon, bool *running);
D
Daniel P. Berrange 已提交
50 51

int qemuMonitorJSONSystemPowerdown(qemuMonitorPtr mon);
52
int qemuMonitorJSONSystemReset(qemuMonitorPtr mon);
D
Daniel P. Berrange 已提交
53 54 55

int qemuMonitorJSONGetCPUInfo(qemuMonitorPtr mon,
                              int **pids);
56 57
int qemuMonitorJSONGetVirtType(qemuMonitorPtr mon,
                               int *virtType);
D
Daniel P. Berrange 已提交
58 59
int qemuMonitorJSONGetBalloonInfo(qemuMonitorPtr mon,
                                  unsigned long *currmem);
60 61 62
int qemuMonitorJSONGetMemoryStats(qemuMonitorPtr mon,
                                  virDomainMemoryStatPtr stats,
                                  unsigned int nr_stats);
D
Daniel P. Berrange 已提交
63 64 65 66
int qemuMonitorJSONGetBlockStatsInfo(qemuMonitorPtr mon,
                                     const char *devname,
                                     long long *rd_req,
                                     long long *rd_bytes,
67
                                     long long *rd_total_times,
D
Daniel P. Berrange 已提交
68 69
                                     long long *wr_req,
                                     long long *wr_bytes,
70 71 72
                                     long long *wr_total_times,
                                     long long *flush_req,
                                     long long *flush_total_times,
D
Daniel P. Berrange 已提交
73
                                     long long *errs);
74 75
int qemuMonitorJSONGetBlockStatsParamsNumber(qemuMonitorPtr mon,
                                             int *nparams);
76 77 78
int qemuMonitorJSONGetBlockExtent(qemuMonitorPtr mon,
                                  const char *devname,
                                  unsigned long long *extent);
D
Daniel P. Berrange 已提交
79 80 81 82


int qemuMonitorJSONSetVNCPassword(qemuMonitorPtr mon,
                                  const char *password);
83 84 85 86 87 88 89
int qemuMonitorJSONSetPassword(qemuMonitorPtr mon,
                               const char *protocol,
                               const char *password,
                               const char *action_if_connected);
int qemuMonitorJSONExpirePassword(qemuMonitorPtr mon,
                                  const char *protocol,
                                  const char *expire_time);
D
Daniel P. Berrange 已提交
90 91
int qemuMonitorJSONSetBalloon(qemuMonitorPtr mon,
                              unsigned long newmem);
92
int qemuMonitorJSONSetCPU(qemuMonitorPtr mon, int cpu, int online);
D
Daniel P. Berrange 已提交
93 94

int qemuMonitorJSONEjectMedia(qemuMonitorPtr mon,
95 96
                              const char *devname,
                              bool force);
D
Daniel P. Berrange 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
int qemuMonitorJSONChangeMedia(qemuMonitorPtr mon,
                               const char *devname,
                               const char *newmedia,
                               const char *format);


int qemuMonitorJSONSaveVirtualMemory(qemuMonitorPtr mon,
                                     unsigned long long offset,
                                     size_t length,
                                     const char *path);
int qemuMonitorJSONSavePhysicalMemory(qemuMonitorPtr mon,
                                      unsigned long long offset,
                                      size_t length,
                                      const char *path);

int qemuMonitorJSONSetMigrationSpeed(qemuMonitorPtr mon,
                                     unsigned long bandwidth);

115 116 117
int qemuMonitorJSONSetMigrationDowntime(qemuMonitorPtr mon,
                                        unsigned long long downtime);

D
Daniel P. Berrange 已提交
118 119 120 121 122 123
int qemuMonitorJSONGetMigrationStatus(qemuMonitorPtr mon,
                                      int *status,
                                      unsigned long long *transferred,
                                      unsigned long long *remaining,
                                      unsigned long long *total);

124 125 126
int qemuMonitorJSONMigrate(qemuMonitorPtr mon,
                           unsigned int flags,
                           const char *uri);
D
Daniel P. Berrange 已提交
127 128 129

int qemuMonitorJSONMigrateCancel(qemuMonitorPtr mon);

130 131 132 133 134 135 136
int qemuMonitorJSONGraphicsRelocate(qemuMonitorPtr mon,
                                    int type,
                                    const char *hostname,
                                    int port,
                                    int tlsPort,
                                    const char *tlsSubject);

D
Daniel P. Berrange 已提交
137 138 139 140 141 142 143 144 145 146 147 148
int qemuMonitorJSONAddUSBDisk(qemuMonitorPtr mon,
                              const char *path);

int qemuMonitorJSONAddUSBDeviceExact(qemuMonitorPtr mon,
                                     int bus,
                                     int dev);
int qemuMonitorJSONAddUSBDeviceMatch(qemuMonitorPtr mon,
                                     int vendor,
                                     int product);


int qemuMonitorJSONAddPCIHostDevice(qemuMonitorPtr mon,
149 150
                                    virDomainDevicePCIAddress *hostAddr,
                                    virDomainDevicePCIAddress *guestAddr);
D
Daniel P. Berrange 已提交
151 152 153 154

int qemuMonitorJSONAddPCIDisk(qemuMonitorPtr mon,
                              const char *path,
                              const char *bus,
155
                              virDomainDevicePCIAddress *guestAddr);
D
Daniel P. Berrange 已提交
156 157 158

int qemuMonitorJSONAddPCINetwork(qemuMonitorPtr mon,
                                 const char *nicstr,
159
                                 virDomainDevicePCIAddress *guestAddr);
D
Daniel P. Berrange 已提交
160 161

int qemuMonitorJSONRemovePCIDevice(qemuMonitorPtr mon,
162
                                   virDomainDevicePCIAddress *guestAddr);
D
Daniel P. Berrange 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177

int qemuMonitorJSONSendFileHandle(qemuMonitorPtr mon,
                                  const char *fdname,
                                  int fd);

int qemuMonitorJSONCloseFileHandle(qemuMonitorPtr mon,
                                   const char *fdname);

int qemuMonitorJSONAddHostNetwork(qemuMonitorPtr mon,
                                  const char *netstr);

int qemuMonitorJSONRemoveHostNetwork(qemuMonitorPtr mon,
                                     int vlan,
                                     const char *netname);

178 179 180 181 182 183
int qemuMonitorJSONAddNetdev(qemuMonitorPtr mon,
                             const char *netdevstr);

int qemuMonitorJSONRemoveNetdev(qemuMonitorPtr mon,
                                const char *alias);

184 185 186
int qemuMonitorJSONGetPtyPaths(qemuMonitorPtr mon,
                               virHashTablePtr paths);

187 188 189 190
int qemuMonitorJSONAttachPCIDiskController(qemuMonitorPtr mon,
                                           const char *bus,
                                           virDomainDevicePCIAddress *guestAddr);

191 192 193 194 195
int qemuMonitorJSONAttachDrive(qemuMonitorPtr mon,
                               const char *drivestr,
                               virDomainDevicePCIAddress *controllerAddr,
                               virDomainDeviceDriveAddress *driveAddr);

196 197 198
int qemuMonitorJSONGetAllPCIAddresses(qemuMonitorPtr mon,
                                      qemuMonitorPCIAddress **addrs);

199 200 201
int qemuMonitorJSONAddDevice(qemuMonitorPtr mon,
                             const char *devicestr);

202
int qemuMonitorJSONDelDevice(qemuMonitorPtr mon,
203
                             const char *devalias);
204

205 206 207
int qemuMonitorJSONAddDrive(qemuMonitorPtr mon,
                            const char *drivestr);

208
int qemuMonitorJSONDriveDel(qemuMonitorPtr mon,
209 210
                            const char *drivestr);

211 212 213 214
int qemuMonitorJSONSetDrivePassphrase(qemuMonitorPtr mon,
                                      const char *alias,
                                      const char *passphrase);

C
Chris Lalancette 已提交
215 216 217 218
int qemuMonitorJSONCreateSnapshot(qemuMonitorPtr mon, const char *name);
int qemuMonitorJSONLoadSnapshot(qemuMonitorPtr mon, const char *name);
int qemuMonitorJSONDeleteSnapshot(qemuMonitorPtr mon, const char *name);

219 220 221 222
int qemuMonitorJSONDiskSnapshot(qemuMonitorPtr mon,
                                const char *device,
                                const char *file);

223 224
int qemuMonitorJSONArbitraryCommand(qemuMonitorPtr mon,
                                    const char *cmd_str,
225 226
                                    char **reply_str,
                                    bool hmp);
227

228
int qemuMonitorJSONInjectNMI(qemuMonitorPtr mon);
229

230 231 232 233 234
int qemuMonitorJSONSendKey(qemuMonitorPtr mon,
                           unsigned int holdtime,
                           unsigned int *keycodes,
                           unsigned int nkeycodes);

235 236 237
int qemuMonitorJSONScreendump(qemuMonitorPtr mon,
                              const char *file);

238 239 240 241 242
int qemuMonitorJSONBlockJob(qemuMonitorPtr mon,
                            const char *device,
                            unsigned long bandwidth,
                            virDomainBlockJobInfoPtr info,
                            int mode);
243

244 245 246 247
int qemuMonitorJSONSetLink(qemuMonitorPtr mon,
                           const char *name,
                           enum virDomainNetInterfaceLinkState state);

D
Daniel P. Berrange 已提交
248
#endif /* QEMU_MONITOR_JSON_H */