qemu_monitor.c 93.7 KB
Newer Older
1 2 3
/*
 * qemu_monitor.c: interaction with QEMU monitor console
 *
4
 * Copyright (C) 2006-2013 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26 27 28 29 30 31
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include <poll.h>
#include <sys/un.h>
#include <unistd.h>
#include <fcntl.h>

#include "qemu_monitor.h"
32
#include "qemu_monitor_text.h"
D
Daniel P. Berrange 已提交
33
#include "qemu_monitor_json.h"
34
#include "virerror.h"
35
#include "viralloc.h"
36
#include "virlog.h"
E
Eric Blake 已提交
37
#include "virfile.h"
38
#include "virprocess.h"
39
#include "virobject.h"
40

41 42 43 44
#ifdef WITH_DTRACE_PROBES
# include "libvirt_qemu_probes.h"
#endif

45 46
#define VIR_FROM_THIS VIR_FROM_QEMU

47 48
#define DEBUG_IO 0
#define DEBUG_RAW_IO 0
49

50
struct _qemuMonitor {
51
    virObjectLockable parent;
52

53 54
    virCond notify;

55 56 57 58 59 60
    int fd;
    int watch;
    int hasSendFD;

    virDomainObjPtr vm;

61
    qemuMonitorCallbacksPtr cb;
62 63 64 65 66 67 68 69 70 71 72 73 74

    /* If there's a command being processed this will be
     * non-NULL */
    qemuMonitorMessagePtr msg;

    /* Buffer incoming data ready for Text/QMP monitor
     * code to process & find message boundaries */
    size_t bufferOffset;
    size_t bufferLength;
    char *buffer;

    /* If anything went wrong, this will be fed back
     * the next monitor msg */
75 76 77
    virError lastError;

    int nextSerial;
78

D
Daniel P. Berrange 已提交
79
    unsigned json: 1;
80
    unsigned wait_greeting: 1;
81 82
};

83 84 85 86 87
static virClassPtr qemuMonitorClass;
static void qemuMonitorDispose(void *obj);

static int qemuMonitorOnceInit(void)
{
88
    if (!(qemuMonitorClass = virClassNew(virClassForObjectLockable(),
89 90 91
                                         "qemuMonitor",
                                         sizeof(qemuMonitor),
                                         qemuMonitorDispose)))
92 93 94 95 96 97 98
        return -1;

    return 0;
}

VIR_ONCE_GLOBAL_INIT(qemuMonitor)

99

100 101 102 103
VIR_ENUM_IMPL(qemuMonitorMigrationStatus,
              QEMU_MONITOR_MIGRATION_STATUS_LAST,
              "inactive", "active", "completed", "failed", "cancelled")

104 105 106 107
VIR_ENUM_IMPL(qemuMonitorMigrationCaps,
              QEMU_MONITOR_MIGRATION_CAPS_LAST,
              "xbzrle")

108 109 110 111 112 113
VIR_ENUM_IMPL(qemuMonitorVMStatus,
              QEMU_MONITOR_VM_STATUS_LAST,
              "debug", "inmigrate", "internal-error", "io-error", "paused",
              "postmigrate", "prelaunch", "finish-migrate", "restore-vm",
              "running", "save-vm", "shutdown", "watchdog")

114 115 116 117 118 119 120 121 122 123 124 125 126 127
typedef enum {
    QEMU_MONITOR_BLOCK_IO_STATUS_OK,
    QEMU_MONITOR_BLOCK_IO_STATUS_FAILED,
    QEMU_MONITOR_BLOCK_IO_STATUS_NOSPACE,

    QEMU_MONITOR_BLOCK_IO_STATUS_LAST
} qemuMonitorBlockIOStatus;

VIR_ENUM_DECL(qemuMonitorBlockIOStatus)

VIR_ENUM_IMPL(qemuMonitorBlockIOStatus,
              QEMU_MONITOR_BLOCK_IO_STATUS_LAST,
              "ok", "failed", "nospace")

128
char *qemuMonitorEscapeArg(const char *in)
129 130 131 132 133 134 135 136 137 138
{
    int len = 0;
    int i, j;
    char *out;

    /* To pass through the QEMU monitor, we need to use escape
       sequences: \r, \n, \", \\
    */

    for (i = 0; in[i] != '\0'; i++) {
139
        switch (in[i]) {
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
        case '\r':
        case '\n':
        case '"':
        case '\\':
            len += 2;
            break;
        default:
            len += 1;
            break;
        }
    }

    if (VIR_ALLOC_N(out, len + 1) < 0)
        return NULL;

    for (i = j = 0; in[i] != '\0'; i++) {
156
        switch (in[i]) {
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
        case '\r':
            out[j++] = '\\';
            out[j++] = 'r';
            break;
        case '\n':
            out[j++] = '\\';
            out[j++] = 'n';
            break;
        case '"':
        case '\\':
            out[j++] = '\\';
            out[j++] = in[i];
            break;
        default:
            out[j++] = in[i];
            break;
        }
    }
    out[j] = '\0';

    return out;
}

180 181 182 183
char *qemuMonitorUnescapeArg(const char *in)
{
    int i, j;
    char *out;
184
    int len = strlen(in);
185 186
    char next;

187
    if (VIR_ALLOC_N(out, len + 1) < 0)
188 189 190 191 192 193
        return NULL;

    for (i = j = 0; i < len; ++i) {
        next = in[i];
        if (in[i] == '\\') {
            ++i;
194
            switch (in[i]) {
195 196 197 198 199 200 201 202 203 204 205
            case 'r':
                next = '\r';
                break;
            case 'n':
                next = '\n';
                break;
            case '"':
            case '\\':
                next = in[i];
                break;
            default:
206
                /* invalid input (including trailing '\' at end of in) */
207 208 209 210 211 212 213 214 215 216 217
                VIR_FREE(out);
                return NULL;
            }
        }
        out[j++] = next;
    }
    out[j] = '\0';

    return out;
}

J
Jiri Denemark 已提交
218
#if DEBUG_RAW_IO
219
# include <c-ctype.h>
220 221 222 223 224 225 226 227
static char * qemuMonitorEscapeNonPrintable(const char *text)
{
    int i;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    for (i = 0 ; text[i] != '\0' ; i++) {
        if (c_isprint(text[i]) ||
            text[i] == '\n' ||
            (text[i] == '\r' && text[i+1] == '\n'))
228
            virBufferAsprintf(&buf,"%c", text[i]);
229
        else
230
            virBufferAsprintf(&buf, "0x%02x", text[i]);
231 232 233 234 235
    }
    return virBufferContentAndReset(&buf);
}
#endif

236
static void qemuMonitorDispose(void *obj)
237
{
238 239
    qemuMonitorPtr mon = obj;

240
    VIR_DEBUG("mon=%p", mon);
241
    if (mon->cb && mon->cb->destroy)
242
        (mon->cb->destroy)(mon, mon->vm);
243
    virCondDestroy(&mon->notify);
E
Eric Blake 已提交
244
    VIR_FREE(mon->buffer);
245 246 247 248
}


static int
249
qemuMonitorOpenUnix(const char *monitor, pid_t cpid)
250 251 252 253 254 255 256
{
    struct sockaddr_un addr;
    int monfd;
    int timeout = 3; /* In seconds */
    int ret, i = 0;

    if ((monfd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
257
        virReportSystemError(errno,
258 259 260 261 262 263 264
                             "%s", _("failed to create socket"));
        return -1;
    }

    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
    if (virStrcpyStatic(addr.sun_path, monitor) == NULL) {
265 266
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Monitor path %s too big for destination"), monitor);
267 268 269 270 271 272 273 274 275
        goto error;
    }

    do {
        ret = connect(monfd, (struct sockaddr *) &addr, sizeof(addr));

        if (ret == 0)
            break;

276
        if ((errno == ENOENT || errno == ECONNREFUSED) &&
277
            (!cpid || virProcessKill(cpid, 0) == 0)) {
278 279 280 281 282
            /* ENOENT       : Socket may not have shown up yet
             * ECONNREFUSED : Leftover socket hasn't been removed yet */
            continue;
        }

283
        virReportSystemError(errno, "%s",
284 285 286 287 288 289
                             _("failed to connect to monitor socket"));
        goto error;

    } while ((++i <= timeout*5) && (usleep(.2 * 1000000) <= 0));

    if (ret != 0) {
290
        virReportSystemError(errno, "%s",
291
                             _("monitor socket did not show up"));
292 293 294
        goto error;
    }

295
    return monfd;
296 297

error:
298
    VIR_FORCE_CLOSE(monfd);
299 300 301 302
    return -1;
}

static int
303
qemuMonitorOpenPty(const char *monitor)
304 305 306 307
{
    int monfd;

    if ((monfd = open(monitor, O_RDWR)) < 0) {
308 309
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unable to open monitor path %s"), monitor);
310 311 312
        return -1;
    }

313
    return monfd;
314
}
315

316

317 318 319 320
/* This method processes data that has been received
 * from the monitor. Looking for async events and
 * replies/errors.
 */
321 322 323 324 325 326 327 328 329 330 331
static int
qemuMonitorIOProcess(qemuMonitorPtr mon)
{
    int len;
    qemuMonitorMessagePtr msg = NULL;

    /* See if there's a message & whether its ready for its reply
     * ie whether its completed writing all its data */
    if (mon->msg && mon->msg->txOffset == mon->msg->txLength)
        msg = mon->msg;

332
#if DEBUG_IO
333
# if DEBUG_RAW_IO
334 335
    char *str1 = qemuMonitorEscapeNonPrintable(msg ? msg->txBuffer : "");
    char *str2 = qemuMonitorEscapeNonPrintable(mon->buffer);
336
    VIR_ERROR(_("Process %d %p %p [[[[%s]]][[[%s]]]"), (int)mon->bufferOffset, mon->msg, msg, str1, str2);
337 338
    VIR_FREE(str1);
    VIR_FREE(str2);
339
# else
340
    VIR_DEBUG("Process %d", (int)mon->bufferOffset);
341
# endif
342 343
#endif

344 345 346
    PROBE(QEMU_MONITOR_IO_PROCESS,
          "mon=%p buf=%s len=%zu", mon, mon->buffer, mon->bufferOffset);

D
Daniel P. Berrange 已提交
347 348 349 350 351 352 353 354
    if (mon->json)
        len = qemuMonitorJSONIOProcess(mon,
                                       mon->buffer, mon->bufferOffset,
                                       msg);
    else
        len = qemuMonitorTextIOProcess(mon,
                                       mon->buffer, mon->bufferOffset,
                                       msg);
355

356
    if (len < 0)
357 358
        return -1;

359 360 361
    if (len && mon->wait_greeting)
        mon->wait_greeting = 0;

362 363 364 365 366 367 368
    if (len < mon->bufferOffset) {
        memmove(mon->buffer, mon->buffer + len, mon->bufferOffset - len);
        mon->bufferOffset -= len;
    } else {
        VIR_FREE(mon->buffer);
        mon->bufferOffset = mon->bufferLength = 0;
    }
369
#if DEBUG_IO
370
    VIR_DEBUG("Process done %d used %d", (int)mon->bufferOffset, len);
371
#endif
372 373 374 375 376 377
    if (msg && msg->finished)
        virCondBroadcast(&mon->notify);
    return len;
}


S
Stefan Berger 已提交
378
/* Call this function while holding the monitor lock. */
379 380 381 382 383 384 385 386 387 388 389 390 391
static int
qemuMonitorIOWriteWithFD(qemuMonitorPtr mon,
                         const char *data,
                         size_t len,
                         int fd)
{
    struct msghdr msg;
    struct iovec iov[1];
    int ret;
    char control[CMSG_SPACE(sizeof(int))];
    struct cmsghdr *cmsg;

    memset(&msg, 0, sizeof(msg));
392
    memset(control, 0, sizeof(control));
393 394 395 396 397 398 399 400 401 402 403

    iov[0].iov_base = (void *)data;
    iov[0].iov_len = len;

    msg.msg_iov = iov;
    msg.msg_iovlen = 1;

    msg.msg_control = control;
    msg.msg_controllen = sizeof(control);

    cmsg = CMSG_FIRSTHDR(&msg);
404 405 406
    /* Some static analyzers, like clang 2.6-0.6.pre2, fail to see
       that our use of CMSG_FIRSTHDR will not return NULL.  */
    sa_assert(cmsg);
407 408 409 410 411 412 413 414 415 416 417 418
    cmsg->cmsg_len = CMSG_LEN(sizeof(int));
    cmsg->cmsg_level = SOL_SOCKET;
    cmsg->cmsg_type = SCM_RIGHTS;
    memcpy(CMSG_DATA(cmsg), &fd, sizeof(int));

    do {
        ret = sendmsg(mon->fd, &msg, 0);
    } while (ret < 0 && errno == EINTR);

    return ret;
}

S
Stefan Berger 已提交
419 420 421 422
/*
 * Called when the monitor is able to write data
 * Call this function while holding the monitor lock.
 */
423 424 425 426 427 428 429 430 431
static int
qemuMonitorIOWrite(qemuMonitorPtr mon)
{
    int done;

    /* If no active message, or fully transmitted, the no-op */
    if (!mon->msg || mon->msg->txOffset == mon->msg->txLength)
        return 0;

432
    if (mon->msg->txFD != -1 && !mon->hasSendFD) {
433 434
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Monitor does not support sending of file descriptors"));
435 436 437
        return -1;
    }

438 439 440 441 442 443 444 445 446 447
    if (mon->msg->txFD == -1)
        done = write(mon->fd,
                     mon->msg->txBuffer + mon->msg->txOffset,
                     mon->msg->txLength - mon->msg->txOffset);
    else
        done = qemuMonitorIOWriteWithFD(mon,
                                        mon->msg->txBuffer + mon->msg->txOffset,
                                        mon->msg->txLength - mon->msg->txOffset,
                                        mon->msg->txFD);

448 449 450 451 452 453 454 455 456 457 458 459
    PROBE(QEMU_MONITOR_IO_WRITE,
          "mon=%p buf=%s len=%d ret=%d errno=%d",
          mon,
          mon->msg->txBuffer + mon->msg->txOffset,
          mon->msg->txLength - mon->msg->txOffset,
          done, errno);

    if (mon->msg->txFD != -1)
        PROBE(QEMU_MONITOR_IO_SEND_FD,
              "mon=%p fd=%d ret=%d errno=%d",
              mon, mon->msg->txFD, done, errno);

460 461 462 463
    if (done < 0) {
        if (errno == EAGAIN)
            return 0;

464 465
        virReportSystemError(errno, "%s",
                             _("Unable to write to monitor"));
466 467 468 469 470 471 472 473
        return -1;
    }
    mon->msg->txOffset += done;
    return done;
}

/*
 * Called when the monitor has incoming data to read
S
Stefan Berger 已提交
474
 * Call this function while holding the monitor lock.
475 476 477 478 479 480 481 482 483 484 485 486
 *
 * Returns -1 on error, or number of bytes read
 */
static int
qemuMonitorIORead(qemuMonitorPtr mon)
{
    size_t avail = mon->bufferLength - mon->bufferOffset;
    int ret = 0;

    if (avail < 1024) {
        if (VIR_REALLOC_N(mon->buffer,
                          mon->bufferLength + 1024) < 0) {
487
            virReportOOMError();
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
            return -1;
        }
        mon->bufferLength += 1024;
        avail += 1024;
    }

    /* Read as much as we can get into our buffer,
       until we block on EAGAIN, or hit EOF */
    while (avail > 1) {
        int got;
        got = read(mon->fd,
                   mon->buffer + mon->bufferOffset,
                   avail - 1);
        if (got < 0) {
            if (errno == EAGAIN)
                break;
504 505
            virReportSystemError(errno, "%s",
                                 _("Unable to read from monitor"));
506 507 508 509 510 511 512 513 514 515 516 517
            ret = -1;
            break;
        }
        if (got == 0)
            break;

        ret += got;
        avail -= got;
        mon->bufferOffset += got;
        mon->buffer[mon->bufferOffset] = '\0';
    }

518
#if DEBUG_IO
519
    VIR_DEBUG("Now read %d bytes of data", (int)mon->bufferOffset);
520
#endif
521 522 523 524 525 526 527 528 529 530 531

    return ret;
}


static void qemuMonitorUpdateWatch(qemuMonitorPtr mon)
{
    int events =
        VIR_EVENT_HANDLE_HANGUP |
        VIR_EVENT_HANDLE_ERROR;

532 533 534
    if (!mon->watch)
        return;

535
    if (mon->lastError.code == VIR_ERR_OK) {
536 537
        events |= VIR_EVENT_HANDLE_READABLE;

538 539
        if ((mon->msg && mon->msg->txOffset < mon->msg->txLength) &&
            !mon->wait_greeting)
540 541 542 543
            events |= VIR_EVENT_HANDLE_WRITABLE;
    }

    virEventUpdateHandle(mon->watch, events);
544 545
}

546 547 548 549

static void
qemuMonitorIO(int watch, int fd, int events, void *opaque) {
    qemuMonitorPtr mon = opaque;
550 551
    bool error = false;
    bool eof = false;
552

553 554
    virObjectRef(mon);

S
Stefan Berger 已提交
555
    /* lock access to the monitor and protect fd */
556
    virObjectLock(mon);
557
#if DEBUG_IO
558
    VIR_DEBUG("Monitor %p I/O on watch %d fd %d events %d", mon, watch, fd, events);
559
#endif
560
    if (mon->fd == -1 || mon->watch == 0) {
561
        virObjectUnlock(mon);
562 563 564
        virObjectUnref(mon);
        return;
    }
565

566
    if (mon->fd != fd || mon->watch != watch) {
567
        if (events & (VIR_EVENT_HANDLE_HANGUP | VIR_EVENT_HANDLE_ERROR))
568
            eof = true;
569 570 571
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("event from unexpected fd %d!=%d / watch %d!=%d"),
                       mon->fd, fd, mon->watch, watch);
572 573
        error = true;
    } else if (mon->lastError.code != VIR_ERR_OK) {
574
        if (events & (VIR_EVENT_HANDLE_HANGUP | VIR_EVENT_HANDLE_ERROR))
575
            eof = true;
576
        error = true;
577
    } else {
578 579 580
        if (events & VIR_EVENT_HANDLE_WRITABLE) {
            if (qemuMonitorIOWrite(mon) < 0)
                error = true;
581 582
            events &= ~VIR_EVENT_HANDLE_WRITABLE;
        }
583 584

        if (!error &&
585 586
            events & VIR_EVENT_HANDLE_READABLE) {
            int got = qemuMonitorIORead(mon);
587 588
            events &= ~VIR_EVENT_HANDLE_READABLE;
            if (got < 0) {
589
                error = true;
590 591 592 593 594
            } else if (got == 0) {
                eof = true;
            } else {
                /* Ignore hangup/error events if we read some data, to
                 * give time for that data to be consumed */
595 596 597
                events = 0;

                if (qemuMonitorIOProcess(mon) < 0)
598
                    error = true;
599
            }
600 601
        }

602 603
        if (!error &&
            events & VIR_EVENT_HANDLE_HANGUP) {
604 605
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("End of file from monitor"));
606 607
            eof = 1;
            events &= ~VIR_EVENT_HANDLE_HANGUP;
608 609
        }

610 611
        if (!error && !eof &&
            events & VIR_EVENT_HANDLE_ERROR) {
612 613
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Invalid file descriptor while waiting for monitor"));
614 615
            eof = 1;
            events &= ~VIR_EVENT_HANDLE_ERROR;
616 617
        }
        if (!error && events) {
618 619 620
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unhandled event %d for monitor fd %d"),
                           events, mon->fd);
621
            error = 1;
622 623 624
        }
    }

625 626 627 628 629 630 631
    if (error || eof) {
        if (mon->lastError.code != VIR_ERR_OK) {
            /* Already have an error, so clear any new error */
            virResetLastError();
        } else {
            virErrorPtr err = virGetLastError();
            if (!err)
632 633
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Error while processing monitor IO"));
634 635 636 637 638 639 640 641 642 643 644 645
            virCopyLastError(&mon->lastError);
            virResetLastError();
        }

        VIR_DEBUG("Error on monitor %s", NULLSTR(mon->lastError.message));
        /* If IO process resulted in an error & we have a message,
         * then wakeup that waiter */
        if (mon->msg && !mon->msg->finished) {
            mon->msg->finished = 1;
            virCondSignal(&mon->notify);
        }
    }
646 647 648

    qemuMonitorUpdateWatch(mon);

649 650 651
    /* We have to unlock to avoid deadlock against command thread,
     * but is this safe ?  I think it is, because the callback
     * will try to acquire the virDomainObjPtr mutex next */
652 653
    if (eof) {
        void (*eofNotify)(qemuMonitorPtr, virDomainObjPtr)
654
            = mon->cb->eofNotify;
655
        virDomainObjPtr vm = mon->vm;
656

657 658
        /* Make sure anyone waiting wakes up now */
        virCondSignal(&mon->notify);
659
        virObjectUnlock(mon);
660
        virObjectUnref(mon);
661 662 663 664 665 666
        VIR_DEBUG("Triggering EOF callback");
        (eofNotify)(mon, vm);
    } else if (error) {
        void (*errorNotify)(qemuMonitorPtr, virDomainObjPtr)
            = mon->cb->errorNotify;
        virDomainObjPtr vm = mon->vm;
667

668 669
        /* Make sure anyone waiting wakes up now */
        virCondSignal(&mon->notify);
670
        virObjectUnlock(mon);
671
        virObjectUnref(mon);
672 673
        VIR_DEBUG("Triggering error callback");
        (errorNotify)(mon, vm);
674
    } else {
675
        virObjectUnlock(mon);
676
        virObjectUnref(mon);
677
    }
678 679 680
}


681 682 683 684 685 686
static qemuMonitorPtr
qemuMonitorOpenInternal(virDomainObjPtr vm,
                        int fd,
                        bool hasSendFD,
                        int json,
                        qemuMonitorCallbacksPtr cb)
687
{
688 689
    qemuMonitorPtr mon;

690
    if (!cb->eofNotify) {
691 692
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("EOF notify callback must be supplied"));
693 694
        return NULL;
    }
695 696 697 698 699
    if (!cb->errorNotify) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Error notify callback must be supplied"));
        return NULL;
    }
700

701 702 703
    if (qemuMonitorInitialize() < 0)
        return NULL;

704
    if (!(mon = virObjectLockableNew(qemuMonitorClass)))
705 706
        return NULL;

707
    mon->fd = -1;
708
    if (virCondInit(&mon->notify) < 0) {
709 710
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("cannot initialize monitor condition"));
711
        goto cleanup;
712
    }
713 714
    mon->fd = fd;
    mon->hasSendFD = hasSendFD;
715
    mon->vm = vm;
D
Daniel P. Berrange 已提交
716
    mon->json = json;
717 718
    if (json)
        mon->wait_greeting = 1;
719
    mon->cb = cb;
720

721
    if (virSetCloseExec(mon->fd) < 0) {
722 723
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Unable to set monitor close-on-exec flag"));
724 725 726
        goto cleanup;
    }
    if (virSetNonBlock(mon->fd) < 0) {
727 728
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Unable to put monitor into non-blocking mode"));
729 730 731 732
        goto cleanup;
    }


E
Eric Blake 已提交
733
    virObjectLock(mon);
734
    virObjectRef(mon);
735
    if ((mon->watch = virEventAddHandle(mon->fd,
736 737 738
                                        VIR_EVENT_HANDLE_HANGUP |
                                        VIR_EVENT_HANDLE_ERROR |
                                        VIR_EVENT_HANDLE_READABLE,
739
                                        qemuMonitorIO,
740 741
                                        mon,
                                        virObjectFreeCallback)) < 0) {
742
        virObjectUnref(mon);
E
Eric Blake 已提交
743
        virObjectUnlock(mon);
744 745
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("unable to register monitor events"));
746 747 748
        goto cleanup;
    }

749 750
    PROBE(QEMU_MONITOR_NEW,
          "mon=%p refs=%d fd=%d",
751 752
          mon, mon->parent.parent.refs, mon->fd);
    virObjectUnlock(mon);
753

754 755 756
    return mon;

cleanup:
757 758 759 760 761 762
    /* We don't want the 'destroy' callback invoked during
     * cleanup from construction failure, because that can
     * give a double-unref on virDomainObjPtr in the caller,
     * so kill the callbacks now.
     */
    mon->cb = NULL;
763 764
    /* The caller owns 'fd' on failure */
    mon->fd = -1;
765 766 767 768
    qemuMonitorClose(mon);
    return NULL;
}

769 770 771 772 773 774 775 776 777 778 779 780 781
qemuMonitorPtr
qemuMonitorOpen(virDomainObjPtr vm,
                virDomainChrSourceDefPtr config,
                int json,
                qemuMonitorCallbacksPtr cb)
{
    int fd;
    bool hasSendFD = false;
    qemuMonitorPtr ret;

    switch (config->type) {
    case VIR_DOMAIN_CHR_TYPE_UNIX:
        hasSendFD = true;
782
        if ((fd = qemuMonitorOpenUnix(config->data.nix.path, vm ? vm->pid : 0)) < 0)
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
            return NULL;
        break;

    case VIR_DOMAIN_CHR_TYPE_PTY:
        if ((fd = qemuMonitorOpenPty(config->data.file.path)) < 0)
            return NULL;
        break;

    default:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unable to handle monitor type: %s"),
                       virDomainChrTypeToString(config->type));
        return NULL;
    }

    ret = qemuMonitorOpenInternal(vm, fd, hasSendFD, json, cb);
    if (!ret)
        VIR_FORCE_CLOSE(fd);
    return ret;
}


qemuMonitorPtr qemuMonitorOpenFD(virDomainObjPtr vm,
                                 int sockfd,
                                 int json,
                                 qemuMonitorCallbacksPtr cb)
{
    return qemuMonitorOpenInternal(vm, sockfd, true, json, cb);
}

813

814
void qemuMonitorClose(qemuMonitorPtr mon)
815 816
{
    if (!mon)
817
        return;
818

819
    virObjectLock(mon);
820
    PROBE(QEMU_MONITOR_CLOSE,
821
          "mon=%p refs=%d", mon, mon->parent.parent.refs);
S
Stefan Berger 已提交
822 823

    if (mon->fd >= 0) {
824
        if (mon->watch) {
825
            virEventRemoveHandle(mon->watch);
826 827
            mon->watch = 0;
        }
S
Stefan Berger 已提交
828
        VIR_FORCE_CLOSE(mon->fd);
829
    }
830

831 832 833 834 835 836 837
    /* In case another thread is waiting for its monitor command to be
     * processed, we need to wake it up with appropriate error set.
     */
    if (mon->msg) {
        if (mon->lastError.code == VIR_ERR_OK) {
            virErrorPtr err = virSaveLastError();

838 839
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("Qemu monitor was closed"));
840 841 842 843 844 845 846 847 848 849 850 851
            virCopyLastError(&mon->lastError);
            if (err) {
                virSetError(err);
                virFreeError(err);
            } else {
                virResetLastError();
            }
        }
        mon->msg->finished = 1;
        virCondSignal(&mon->notify);
    }

852
    virObjectUnlock(mon);
853
    virObjectUnref(mon);
854 855 856
}


857 858 859 860 861 862 863 864 865 866 867 868
char *qemuMonitorNextCommandID(qemuMonitorPtr mon)
{
    char *id;

    if (virAsprintf(&id, "libvirt-%d", ++mon->nextSerial) < 0) {
        virReportOOMError();
        return NULL;
    }
    return id;
}


869 870
int qemuMonitorSend(qemuMonitorPtr mon,
                    qemuMonitorMessagePtr msg)
871
{
872
    int ret = -1;
873

874
    /* Check whether qemu quited unexpectedly */
875 876 877 878
    if (mon->lastError.code != VIR_ERR_OK) {
        VIR_DEBUG("Attempt to send command while error is set %s",
                  NULLSTR(mon->lastError.message));
        virSetError(&mon->lastError);
879 880 881
        return -1;
    }

882 883
    mon->msg = msg;
    qemuMonitorUpdateWatch(mon);
884

885 886 887 888
    PROBE(QEMU_MONITOR_SEND_MSG,
          "mon=%p msg=%s fd=%d",
          mon, mon->msg->txBuffer, mon->msg->txFD);

889
    while (!mon->msg->finished) {
890
        if (virCondWait(&mon->notify, &mon->parent.lock) < 0) {
891 892
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Unable to wait on monitor condition"));
893
            goto cleanup;
894 895 896 897 898 899 900 901
        }
    }

    if (mon->lastError.code != VIR_ERR_OK) {
        VIR_DEBUG("Send command resulted in error %s",
                  NULLSTR(mon->lastError.message));
        virSetError(&mon->lastError);
        goto cleanup;
902
    }
903

904
    ret = 0;
905

906 907 908
cleanup:
    mon->msg = NULL;
    qemuMonitorUpdateWatch(mon);
909

910
    return ret;
911
}
912 913


914 915 916 917
int qemuMonitorHMPCommandWithFd(qemuMonitorPtr mon,
                                const char *cmd,
                                int scm_fd,
                                char **reply)
918
{
919 920 921 922 923 924 925 926
    char *json_cmd = NULL;
    int ret = -1;

    if (mon->json) {
        /* hack to avoid complicating each call to text monitor functions */
        json_cmd = qemuMonitorUnescapeArg(cmd);
        if (!json_cmd) {
            VIR_DEBUG("Could not unescape command: %s", cmd);
927 928
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Unable to unescape command"));
929 930 931 932 933 934 935 936 937 938
            goto cleanup;
        }
        ret = qemuMonitorJSONHumanCommandWithFd(mon, json_cmd, scm_fd, reply);
    } else {
        ret = qemuMonitorTextCommandWithFd(mon, cmd, scm_fd, reply);
    }

cleanup:
    VIR_FREE(json_cmd);
    return ret;
939 940
}

E
Eric Blake 已提交
941 942 943
/* Ensure proper locking around callbacks.  */
#define QEMU_MONITOR_CALLBACK(mon, ret, callback, ...)          \
    do {                                                        \
944
        virObjectRef(mon);                                      \
945
        virObjectUnlock(mon);                                   \
E
Eric Blake 已提交
946 947
        if ((mon)->cb && (mon)->cb->callback)                   \
            (ret) = ((mon)->cb->callback)(mon, __VA_ARGS__);    \
948
        virObjectLock(mon);                                     \
949
        virObjectUnref(mon);                                    \
E
Eric Blake 已提交
950
    } while (0)
951

952 953 954 955 956 957
int qemuMonitorGetDiskSecret(qemuMonitorPtr mon,
                             virConnectPtr conn,
                             const char *path,
                             char **secret,
                             size_t *secretLen)
{
958
    int ret = -1;
959 960 961
    *secret = NULL;
    *secretLen = 0;

E
Eric Blake 已提交
962 963
    QEMU_MONITOR_CALLBACK(mon, ret, diskSecretLookup, conn, mon->vm,
                          path, secret, secretLen);
964
    return ret;
965
}
966 967


968 969 970 971 972
int qemuMonitorEmitShutdown(qemuMonitorPtr mon)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

E
Eric Blake 已提交
973
    QEMU_MONITOR_CALLBACK(mon, ret, domainShutdown, mon->vm);
974 975 976 977 978 979 980 981 982
    return ret;
}


int qemuMonitorEmitReset(qemuMonitorPtr mon)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

E
Eric Blake 已提交
983
    QEMU_MONITOR_CALLBACK(mon, ret, domainReset, mon->vm);
984 985 986 987 988 989 990 991 992
    return ret;
}


int qemuMonitorEmitPowerdown(qemuMonitorPtr mon)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

E
Eric Blake 已提交
993
    QEMU_MONITOR_CALLBACK(mon, ret, domainPowerdown, mon->vm);
994 995 996 997 998 999 1000 1001 1002
    return ret;
}


int qemuMonitorEmitStop(qemuMonitorPtr mon)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

E
Eric Blake 已提交
1003
    QEMU_MONITOR_CALLBACK(mon, ret, domainStop, mon->vm);
1004 1005 1006 1007
    return ret;
}


1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
int qemuMonitorEmitResume(qemuMonitorPtr mon)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

    QEMU_MONITOR_CALLBACK(mon, ret, domainResume, mon->vm);
    return ret;
}


1018 1019 1020 1021 1022
int qemuMonitorEmitRTCChange(qemuMonitorPtr mon, long long offset)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

E
Eric Blake 已提交
1023
    QEMU_MONITOR_CALLBACK(mon, ret, domainRTCChange, mon->vm, offset);
1024 1025 1026 1027
    return ret;
}


1028 1029 1030 1031 1032
int qemuMonitorEmitWatchdog(qemuMonitorPtr mon, int action)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

E
Eric Blake 已提交
1033
    QEMU_MONITOR_CALLBACK(mon, ret, domainWatchdog, mon->vm, action);
1034 1035 1036 1037
    return ret;
}


1038 1039
int qemuMonitorEmitIOError(qemuMonitorPtr mon,
                           const char *diskAlias,
1040 1041
                           int action,
                           const char *reason)
1042 1043 1044 1045
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

E
Eric Blake 已提交
1046 1047
    QEMU_MONITOR_CALLBACK(mon, ret, domainIOError, mon->vm,
                          diskAlias, action, reason);
1048 1049 1050 1051
    return ret;
}


1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
int qemuMonitorEmitGraphics(qemuMonitorPtr mon,
                            int phase,
                            int localFamily,
                            const char *localNode,
                            const char *localService,
                            int remoteFamily,
                            const char *remoteNode,
                            const char *remoteService,
                            const char *authScheme,
                            const char *x509dname,
                            const char *saslUsername)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

E
Eric Blake 已提交
1067 1068 1069 1070
    QEMU_MONITOR_CALLBACK(mon, ret, domainGraphics, mon->vm, phase,
                          localFamily, localNode, localService,
                          remoteFamily, remoteNode, remoteService,
                          authScheme, x509dname, saslUsername);
1071 1072 1073
    return ret;
}

1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
int qemuMonitorEmitTrayChange(qemuMonitorPtr mon,
                              const char *devAlias,
                              int reason)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

    QEMU_MONITOR_CALLBACK(mon, ret, domainTrayChange, mon->vm,
                          devAlias, reason);

    return ret;
}

O
Osier Yang 已提交
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
int qemuMonitorEmitPMWakeup(qemuMonitorPtr mon)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

    QEMU_MONITOR_CALLBACK(mon, ret, domainPMWakeup, mon->vm);

    return ret;
}

O
Osier Yang 已提交
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
int qemuMonitorEmitPMSuspend(qemuMonitorPtr mon)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

    QEMU_MONITOR_CALLBACK(mon, ret, domainPMSuspend, mon->vm);

    return ret;
}

1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
int qemuMonitorEmitPMSuspendDisk(qemuMonitorPtr mon)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

    QEMU_MONITOR_CALLBACK(mon, ret, domainPMSuspendDisk, mon->vm);

    return ret;
}

1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
int qemuMonitorEmitBlockJob(qemuMonitorPtr mon,
                            const char *diskAlias,
                            int type,
                            int status)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

    QEMU_MONITOR_CALLBACK(mon, ret, domainBlockJob, mon->vm,
                          diskAlias, type, status);
    return ret;
}

1130

1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
int qemuMonitorEmitBalloonChange(qemuMonitorPtr mon,
                                 unsigned long long actual)
{
    int ret = -1;
    VIR_DEBUG("mon=%p", mon);

    QEMU_MONITOR_CALLBACK(mon, ret, domainBalloonChange, mon->vm, actual);
    return ret;
}

1141

1142
int qemuMonitorSetCapabilities(qemuMonitorPtr mon)
1143 1144
{
    int ret;
1145
    VIR_DEBUG("mon=%p", mon);
1146 1147

    if (!mon) {
1148 1149
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1150 1151
        return -1;
    }
1152

1153
    if (mon->json) {
1154
        ret = qemuMonitorJSONSetCapabilities(mon);
1155
        if (ret < 0)
1156
            goto cleanup;
1157
    } else {
1158
        ret = 0;
1159
    }
1160 1161

cleanup:
1162 1163 1164 1165
    return ret;
}


1166 1167 1168 1169
int
qemuMonitorStartCPUs(qemuMonitorPtr mon,
                     virConnectPtr conn)
{
D
Daniel P. Berrange 已提交
1170
    int ret;
1171
    VIR_DEBUG("mon=%p", mon);
1172 1173

    if (!mon) {
1174 1175
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1176 1177
        return -1;
    }
1178

D
Daniel P. Berrange 已提交
1179 1180 1181 1182 1183
    if (mon->json)
        ret = qemuMonitorJSONStartCPUs(mon, conn);
    else
        ret = qemuMonitorTextStartCPUs(mon, conn);
    return ret;
1184 1185 1186 1187 1188 1189
}


int
qemuMonitorStopCPUs(qemuMonitorPtr mon)
{
D
Daniel P. Berrange 已提交
1190
    int ret;
1191
    VIR_DEBUG("mon=%p", mon);
1192 1193

    if (!mon) {
1194 1195
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1196 1197
        return -1;
    }
1198

D
Daniel P. Berrange 已提交
1199 1200 1201 1202 1203
    if (mon->json)
        ret = qemuMonitorJSONStopCPUs(mon);
    else
        ret = qemuMonitorTextStopCPUs(mon);
    return ret;
1204 1205 1206
}


1207
int
1208 1209 1210
qemuMonitorGetStatus(qemuMonitorPtr mon,
                     bool *running,
                     virDomainPausedReason *reason)
1211 1212
{
    int ret;
1213
    VIR_DEBUG("mon=%p, running=%p, reason=%p", mon, running, reason);
1214 1215

    if (!mon || !running) {
1216 1217
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("both monitor and running must not be NULL"));
1218 1219 1220 1221
        return -1;
    }

    if (mon->json)
1222
        ret = qemuMonitorJSONGetStatus(mon, running, reason);
1223
    else
1224
        ret = qemuMonitorTextGetStatus(mon, running, reason);
1225 1226 1227 1228
    return ret;
}


1229 1230
int qemuMonitorSystemPowerdown(qemuMonitorPtr mon)
{
D
Daniel P. Berrange 已提交
1231
    int ret;
1232
    VIR_DEBUG("mon=%p", mon);
1233 1234

    if (!mon) {
1235 1236
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1237 1238
        return -1;
    }
1239

D
Daniel P. Berrange 已提交
1240 1241 1242 1243 1244
    if (mon->json)
        ret = qemuMonitorJSONSystemPowerdown(mon);
    else
        ret = qemuMonitorTextSystemPowerdown(mon);
    return ret;
1245 1246 1247
}


1248 1249 1250 1251 1252 1253
int qemuMonitorSystemReset(qemuMonitorPtr mon)
{
    int ret;
    VIR_DEBUG("mon=%p", mon);

    if (!mon) {
1254 1255
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
        return -1;
    }

    if (mon->json)
        ret = qemuMonitorJSONSystemReset(mon);
    else
        ret = qemuMonitorTextSystemReset(mon);
    return ret;
}


1267 1268 1269
int qemuMonitorGetCPUInfo(qemuMonitorPtr mon,
                          int **pids)
{
D
Daniel P. Berrange 已提交
1270
    int ret;
1271
    VIR_DEBUG("mon=%p", mon);
1272 1273

    if (!mon) {
1274 1275
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1276 1277
        return -1;
    }
1278

D
Daniel P. Berrange 已提交
1279 1280 1281 1282 1283
    if (mon->json)
        ret = qemuMonitorJSONGetCPUInfo(mon, pids);
    else
        ret = qemuMonitorTextGetCPUInfo(mon, pids);
    return ret;
1284 1285
}

1286 1287 1288 1289 1290 1291 1292 1293
int qemuMonitorSetLink(qemuMonitorPtr mon,
                       const char *name,
                       enum virDomainNetInterfaceLinkState state)
{
    int ret;
    VIR_DEBUG("mon=%p, name=%p:%s, state=%u", mon, name, name, state);

    if (!mon || !name) {
1294 1295
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor || name must not be NULL"));
1296 1297 1298 1299 1300 1301 1302 1303 1304
        return -1;
    }

    if (mon->json)
        ret = qemuMonitorJSONSetLink(mon, name, state);
    else
        ret = qemuMonitorTextSetLink(mon, name, state);
    return ret;
}
1305 1306 1307 1308 1309 1310 1311 1312

int qemuMonitorGetVirtType(qemuMonitorPtr mon,
                           int *virtType)
{
    int ret;
    VIR_DEBUG("mon=%p", mon);

    if (!mon) {
1313 1314
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325
        return -1;
    }

    if (mon->json)
        ret = qemuMonitorJSONGetVirtType(mon, virtType);
    else
        ret = qemuMonitorTextGetVirtType(mon, virtType);
    return ret;
}


1326
int qemuMonitorGetBalloonInfo(qemuMonitorPtr mon,
1327
                              unsigned long long *currmem)
1328
{
D
Daniel P. Berrange 已提交
1329
    int ret;
1330
    VIR_DEBUG("mon=%p", mon);
1331 1332

    if (!mon) {
1333 1334
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1335 1336
        return -1;
    }
1337

D
Daniel P. Berrange 已提交
1338 1339 1340 1341 1342
    if (mon->json)
        ret = qemuMonitorJSONGetBalloonInfo(mon, currmem);
    else
        ret = qemuMonitorTextGetBalloonInfo(mon, currmem);
    return ret;
1343 1344 1345
}


1346 1347 1348 1349 1350
int qemuMonitorGetMemoryStats(qemuMonitorPtr mon,
                              virDomainMemoryStatPtr stats,
                              unsigned int nr_stats)
{
    int ret;
1351
    VIR_DEBUG("mon=%p stats=%p nstats=%u", mon, stats, nr_stats);
1352 1353

    if (!mon) {
1354 1355
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1356 1357
        return -1;
    }
1358 1359 1360 1361 1362 1363 1364 1365

    if (mon->json)
        ret = qemuMonitorJSONGetMemoryStats(mon, stats, nr_stats);
    else
        ret = qemuMonitorTextGetMemoryStats(mon, stats, nr_stats);
    return ret;
}

1366 1367 1368 1369 1370 1371
int
qemuMonitorBlockIOStatusToError(const char *status)
{
    int st = qemuMonitorBlockIOStatusTypeFromString(status);

    if (st < 0) {
1372 1373
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown block IO status: %s"), status);
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
        return -1;
    }

    switch ((qemuMonitorBlockIOStatus) st) {
    case QEMU_MONITOR_BLOCK_IO_STATUS_OK:
        return VIR_DOMAIN_DISK_ERROR_NONE;
    case QEMU_MONITOR_BLOCK_IO_STATUS_FAILED:
        return VIR_DOMAIN_DISK_ERROR_UNSPEC;
    case QEMU_MONITOR_BLOCK_IO_STATUS_NOSPACE:
        return VIR_DOMAIN_DISK_ERROR_NO_SPACE;

    /* unreachable */
    case QEMU_MONITOR_BLOCK_IO_STATUS_LAST:
        break;
    }
    return -1;
}

1392 1393
virHashTablePtr
qemuMonitorGetBlockInfo(qemuMonitorPtr mon)
1394 1395
{
    int ret;
1396 1397 1398
    virHashTablePtr table;

    VIR_DEBUG("mon=%p", mon);
1399 1400

    if (!mon) {
1401 1402
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1403
        return NULL;
1404 1405
    }

1406 1407 1408
    if (!(table = virHashCreate(32, (virHashDataFree) free)))
        return NULL;

1409
    if (mon->json)
1410
        ret = qemuMonitorJSONGetBlockInfo(mon, table);
1411
    else
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
        ret = qemuMonitorTextGetBlockInfo(mon, table);

    if (ret < 0) {
        virHashFree(table);
        return NULL;
    }

    return table;
}

struct qemuDomainDiskInfo *
qemuMonitorBlockInfoLookup(virHashTablePtr blockInfo,
E
Eric Blake 已提交
1424
                           const char *dev)
1425 1426 1427
{
    struct qemuDomainDiskInfo *info;

E
Eric Blake 已提交
1428
    VIR_DEBUG("blockInfo=%p dev=%s", blockInfo, NULLSTR(dev));
1429

E
Eric Blake 已提交
1430
    if (!(info = virHashLookup(blockInfo, dev))) {
1431 1432
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot find info for device '%s'"),
E
Eric Blake 已提交
1433
                       NULLSTR(dev));
1434 1435 1436
    }

    return info;
1437
}
1438

1439
int qemuMonitorGetBlockStatsInfo(qemuMonitorPtr mon,
1440
                                 const char *dev_name,
1441 1442
                                 long long *rd_req,
                                 long long *rd_bytes,
1443
                                 long long *rd_total_times,
1444 1445
                                 long long *wr_req,
                                 long long *wr_bytes,
1446 1447 1448
                                 long long *wr_total_times,
                                 long long *flush_req,
                                 long long *flush_total_times,
1449 1450
                                 long long *errs)
{
D
Daniel P. Berrange 已提交
1451
    int ret;
1452
    VIR_DEBUG("mon=%p dev=%s", mon, dev_name);
1453 1454

    if (!mon) {
1455 1456
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1457 1458
        return -1;
    }
1459

D
Daniel P. Berrange 已提交
1460
    if (mon->json)
1461
        ret = qemuMonitorJSONGetBlockStatsInfo(mon, dev_name,
D
Daniel P. Berrange 已提交
1462
                                               rd_req, rd_bytes,
1463
                                               rd_total_times,
D
Daniel P. Berrange 已提交
1464
                                               wr_req, wr_bytes,
1465 1466 1467
                                               wr_total_times,
                                               flush_req,
                                               flush_total_times,
D
Daniel P. Berrange 已提交
1468 1469
                                               errs);
    else
1470
        ret = qemuMonitorTextGetBlockStatsInfo(mon, dev_name,
D
Daniel P. Berrange 已提交
1471
                                               rd_req, rd_bytes,
1472
                                               rd_total_times,
D
Daniel P. Berrange 已提交
1473
                                               wr_req, wr_bytes,
1474 1475 1476
                                               wr_total_times,
                                               flush_req,
                                               flush_total_times,
D
Daniel P. Berrange 已提交
1477 1478
                                               errs);
    return ret;
1479 1480
}

1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
/* Return 0 and update @nparams with the number of block stats
 * QEMU supports if success. Return -1 if failure.
 */
int qemuMonitorGetBlockStatsParamsNumber(qemuMonitorPtr mon,
                                         int *nparams)
{
    int ret;
    VIR_DEBUG("mon=%p nparams=%p", mon, nparams);

    if (!mon) {
1491 1492
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
        return -1;
    }

    if (mon->json)
        ret = qemuMonitorJSONGetBlockStatsParamsNumber(mon, nparams);
    else
        ret = qemuMonitorTextGetBlockStatsParamsNumber(mon, nparams);

    return ret;
}

1504
int qemuMonitorGetBlockExtent(qemuMonitorPtr mon,
1505
                              const char *dev_name,
1506 1507 1508
                              unsigned long long *extent)
{
    int ret;
E
Eric Blake 已提交
1509
    VIR_DEBUG("mon=%p, dev_name=%p", mon, dev_name);
1510 1511

    if (mon->json)
1512
        ret = qemuMonitorJSONGetBlockExtent(mon, dev_name, extent);
1513
    else
1514
        ret = qemuMonitorTextGetBlockExtent(mon, dev_name, extent);
1515 1516 1517 1518

    return ret;
}

1519 1520 1521 1522 1523
int qemuMonitorBlockResize(qemuMonitorPtr mon,
                           const char *device,
                           unsigned long long size)
{
    int ret;
E
Eric Blake 已提交
1524
    VIR_DEBUG("mon=%p, devname=%p size=%llu", mon, device, size);
1525 1526 1527 1528 1529 1530 1531 1532

    if (mon->json)
        ret = qemuMonitorJSONBlockResize(mon, device, size);
    else
        ret = qemuMonitorTextBlockResize(mon, device, size);

    return ret;
}
1533 1534 1535 1536

int qemuMonitorSetVNCPassword(qemuMonitorPtr mon,
                              const char *password)
{
D
Daniel P. Berrange 已提交
1537
    int ret;
1538
    VIR_DEBUG("mon=%p, password=%p",
1539 1540 1541
          mon, password);

    if (!mon) {
1542 1543
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1544 1545
        return -1;
    }
1546

1547 1548 1549
    if (!password)
        password = "";

D
Daniel P. Berrange 已提交
1550 1551 1552 1553 1554
    if (mon->json)
        ret = qemuMonitorJSONSetVNCPassword(mon, password);
    else
        ret = qemuMonitorTextSetVNCPassword(mon, password);
    return ret;
1555 1556
}

1557 1558 1559 1560 1561 1562 1563 1564
static const char* qemuMonitorTypeToProtocol(int type)
{
    switch (type) {
    case VIR_DOMAIN_GRAPHICS_TYPE_VNC:
        return "vnc";
    case VIR_DOMAIN_GRAPHICS_TYPE_SPICE:
        return "spice";
    default:
1565 1566 1567
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unsupported protocol type %s"),
                       virDomainGraphicsTypeToString(type));
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583
        return NULL;
    }
}

/* Returns -2 if not supported with this monitor connection */
int qemuMonitorSetPassword(qemuMonitorPtr mon,
                           int type,
                           const char *password,
                           const char *action_if_connected)
{
    const char *protocol = qemuMonitorTypeToProtocol(type);
    int ret;

    if (!protocol)
        return -1;

1584
    VIR_DEBUG("mon=%p, protocol=%s, password=%p, action_if_connected=%s",
1585 1586 1587
          mon, protocol, password, action_if_connected);

    if (!mon) {
1588 1589
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
        return -1;
    }

    if (!password)
        password = "";

    if (!action_if_connected)
        action_if_connected = "keep";

    if (mon->json)
        ret = qemuMonitorJSONSetPassword(mon, protocol, password, action_if_connected);
    else
        ret = qemuMonitorTextSetPassword(mon, protocol, password, action_if_connected);
    return ret;
}

int qemuMonitorExpirePassword(qemuMonitorPtr mon,
                              int type,
                              const char *expire_time)
{
    const char *protocol = qemuMonitorTypeToProtocol(type);
    int ret;

    if (!protocol)
        return -1;

1616
    VIR_DEBUG("mon=%p, protocol=%s, expire_time=%s",
1617 1618 1619
          mon, protocol, expire_time);

    if (!mon) {
1620 1621
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
        return -1;
    }

    if (!expire_time)
        expire_time = "now";

    if (mon->json)
        ret = qemuMonitorJSONExpirePassword(mon, protocol, expire_time);
    else
        ret = qemuMonitorTextExpirePassword(mon, protocol, expire_time);
    return ret;
}
1634 1635 1636 1637

int qemuMonitorSetBalloon(qemuMonitorPtr mon,
                          unsigned long newmem)
{
D
Daniel P. Berrange 已提交
1638
    int ret;
1639
    VIR_DEBUG("mon=%p newmem=%lu", mon, newmem);
1640 1641

    if (!mon) {
1642 1643
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1644 1645
        return -1;
    }
1646

D
Daniel P. Berrange 已提交
1647 1648 1649 1650 1651
    if (mon->json)
        ret = qemuMonitorJSONSetBalloon(mon, newmem);
    else
        ret = qemuMonitorTextSetBalloon(mon, newmem);
    return ret;
1652 1653
}

1654 1655 1656 1657

int qemuMonitorSetCPU(qemuMonitorPtr mon, int cpu, int online)
{
    int ret;
1658
    VIR_DEBUG("mon=%p cpu=%d online=%d", mon, cpu, online);
1659 1660

    if (!mon) {
1661 1662
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1663 1664
        return -1;
    }
1665 1666 1667 1668 1669 1670 1671 1672 1673

    if (mon->json)
        ret = qemuMonitorJSONSetCPU(mon, cpu, online);
    else
        ret = qemuMonitorTextSetCPU(mon, cpu, online);
    return ret;
}


1674
int qemuMonitorEjectMedia(qemuMonitorPtr mon,
1675
                          const char *dev_name,
1676
                          bool force)
1677
{
D
Daniel P. Berrange 已提交
1678
    int ret;
1679
    VIR_DEBUG("mon=%p dev_name=%s force=%d", mon, dev_name, force);
1680 1681

    if (!mon) {
1682 1683
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1684 1685
        return -1;
    }
1686

D
Daniel P. Berrange 已提交
1687
    if (mon->json)
1688
        ret = qemuMonitorJSONEjectMedia(mon, dev_name, force);
D
Daniel P. Berrange 已提交
1689
    else
1690
        ret = qemuMonitorTextEjectMedia(mon, dev_name, force);
D
Daniel P. Berrange 已提交
1691
    return ret;
1692 1693 1694 1695
}


int qemuMonitorChangeMedia(qemuMonitorPtr mon,
1696
                           const char *dev_name,
1697 1698
                           const char *newmedia,
                           const char *format)
1699
{
D
Daniel P. Berrange 已提交
1700
    int ret;
1701 1702
    VIR_DEBUG("mon=%p dev_name=%s newmedia=%s format=%s",
          mon, dev_name, newmedia, format);
1703 1704

    if (!mon) {
1705 1706
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1707 1708
        return -1;
    }
1709

D
Daniel P. Berrange 已提交
1710
    if (mon->json)
1711
        ret = qemuMonitorJSONChangeMedia(mon, dev_name, newmedia, format);
D
Daniel P. Berrange 已提交
1712
    else
1713
        ret = qemuMonitorTextChangeMedia(mon, dev_name, newmedia, format);
D
Daniel P. Berrange 已提交
1714
    return ret;
1715 1716 1717 1718 1719 1720 1721 1722
}


int qemuMonitorSaveVirtualMemory(qemuMonitorPtr mon,
                                 unsigned long long offset,
                                 size_t length,
                                 const char *path)
{
D
Daniel P. Berrange 已提交
1723
    int ret;
1724
    VIR_DEBUG("mon=%p offset=%llu length=%zu path=%s",
1725 1726 1727
          mon, offset, length, path);

    if (!mon) {
1728 1729
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1730 1731
        return -1;
    }
1732

D
Daniel P. Berrange 已提交
1733 1734 1735 1736 1737
    if (mon->json)
        ret = qemuMonitorJSONSaveVirtualMemory(mon, offset, length, path);
    else
        ret = qemuMonitorTextSaveVirtualMemory(mon, offset, length, path);
    return ret;
1738 1739 1740 1741 1742 1743 1744
}

int qemuMonitorSavePhysicalMemory(qemuMonitorPtr mon,
                                  unsigned long long offset,
                                  size_t length,
                                  const char *path)
{
D
Daniel P. Berrange 已提交
1745
    int ret;
1746
    VIR_DEBUG("mon=%p offset=%llu length=%zu path=%s",
1747 1748 1749
          mon, offset, length, path);

    if (!mon) {
1750 1751
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1752 1753
        return -1;
    }
1754

D
Daniel P. Berrange 已提交
1755 1756 1757 1758 1759
    if (mon->json)
        ret = qemuMonitorJSONSavePhysicalMemory(mon, offset, length, path);
    else
        ret = qemuMonitorTextSavePhysicalMemory(mon, offset, length, path);
    return ret;
1760 1761 1762 1763 1764 1765
}


int qemuMonitorSetMigrationSpeed(qemuMonitorPtr mon,
                                 unsigned long bandwidth)
{
D
Daniel P. Berrange 已提交
1766
    int ret;
1767
    VIR_DEBUG("mon=%p bandwidth=%lu", mon, bandwidth);
1768 1769

    if (!mon) {
1770 1771
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1772 1773
        return -1;
    }
1774

D
Daniel P. Berrange 已提交
1775 1776 1777 1778 1779
    if (mon->json)
        ret = qemuMonitorJSONSetMigrationSpeed(mon, bandwidth);
    else
        ret = qemuMonitorTextSetMigrationSpeed(mon, bandwidth);
    return ret;
1780 1781
}

1782 1783 1784 1785 1786

int qemuMonitorSetMigrationDowntime(qemuMonitorPtr mon,
                                    unsigned long long downtime)
{
    int ret;
1787
    VIR_DEBUG("mon=%p downtime=%llu", mon, downtime);
1788 1789

    if (!mon) {
1790 1791
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1792 1793
        return -1;
    }
1794 1795 1796 1797 1798 1799 1800 1801 1802

    if (mon->json)
        ret = qemuMonitorJSONSetMigrationDowntime(mon, downtime);
    else
        ret = qemuMonitorTextSetMigrationDowntime(mon, downtime);
    return ret;
}


1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
int
qemuMonitorGetMigrationCacheSize(qemuMonitorPtr mon,
                                 unsigned long long *cacheSize)
{
    VIR_DEBUG("mon=%p cacheSize=%p", mon, cacheSize);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetMigrationCacheSize(mon, cacheSize);
}

int
qemuMonitorSetMigrationCacheSize(qemuMonitorPtr mon,
                                 unsigned long long cacheSize)
{
    VIR_DEBUG("mon=%p cacheSize=%llu", mon, cacheSize);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONSetMigrationCacheSize(mon, cacheSize);
}


1846
int qemuMonitorGetMigrationStatus(qemuMonitorPtr mon,
1847
                                  qemuMonitorMigrationStatusPtr status)
1848
{
D
Daniel P. Berrange 已提交
1849
    int ret;
1850
    VIR_DEBUG("mon=%p", mon);
1851 1852

    if (!mon) {
1853 1854
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1855 1856
        return -1;
    }
1857

D
Daniel P. Berrange 已提交
1858
    if (mon->json)
1859
        ret = qemuMonitorJSONGetMigrationStatus(mon, status);
D
Daniel P. Berrange 已提交
1860
    else
1861
        ret = qemuMonitorTextGetMigrationStatus(mon, status);
D
Daniel P. Berrange 已提交
1862
    return ret;
1863 1864 1865
}


1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889
int qemuMonitorGetSpiceMigrationStatus(qemuMonitorPtr mon,
                                       bool *spice_migrated)
{
    int ret;
    VIR_DEBUG("mon=%p", mon);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (mon->json) {
        ret = qemuMonitorJSONGetSpiceMigrationStatus(mon, spice_migrated);
    } else {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return ret;
}


E
Eric Blake 已提交
1890 1891 1892 1893 1894
int qemuMonitorMigrateToFd(qemuMonitorPtr mon,
                           unsigned int flags,
                           int fd)
{
    int ret;
1895
    VIR_DEBUG("mon=%p fd=%d flags=%x",
E
Eric Blake 已提交
1896 1897 1898
          mon, fd, flags);

    if (!mon) {
1899 1900
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
E
Eric Blake 已提交
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
        return -1;
    }

    if (qemuMonitorSendFileHandle(mon, "migrate", fd) < 0)
        return -1;

    if (mon->json)
        ret = qemuMonitorJSONMigrate(mon, flags, "fd:migrate");
    else
        ret = qemuMonitorTextMigrate(mon, flags, "fd:migrate");

    if (ret < 0) {
        if (qemuMonitorCloseFileHandle(mon, "migrate") < 0)
1914
            VIR_WARN("failed to close migration handle");
E
Eric Blake 已提交
1915 1916 1917 1918 1919 1920
    }

    return ret;
}


1921
int qemuMonitorMigrateToHost(qemuMonitorPtr mon,
1922
                             unsigned int flags,
1923 1924 1925
                             const char *hostname,
                             int port)
{
D
Daniel P. Berrange 已提交
1926
    int ret;
1927
    char *uri = NULL;
1928
    VIR_DEBUG("mon=%p hostname=%s port=%d flags=%x",
1929
          mon, hostname, port, flags);
1930 1931

    if (!mon) {
1932 1933
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1934 1935
        return -1;
    }
1936

1937 1938 1939 1940 1941 1942

    if (virAsprintf(&uri, "tcp:%s:%d", hostname, port) < 0) {
        virReportOOMError();
        return -1;
    }

D
Daniel P. Berrange 已提交
1943
    if (mon->json)
1944
        ret = qemuMonitorJSONMigrate(mon, flags, uri);
D
Daniel P. Berrange 已提交
1945
    else
1946 1947 1948
        ret = qemuMonitorTextMigrate(mon, flags, uri);

    VIR_FREE(uri);
D
Daniel P. Berrange 已提交
1949
    return ret;
1950 1951 1952 1953
}


int qemuMonitorMigrateToCommand(qemuMonitorPtr mon,
1954
                                unsigned int flags,
1955
                                const char * const *argv)
1956
{
1957 1958 1959
    char *argstr;
    char *dest = NULL;
    int ret = -1;
1960
    VIR_DEBUG("mon=%p argv=%p flags=%x",
1961
          mon, argv, flags);
1962 1963

    if (!mon) {
1964 1965
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
1966 1967
        return -1;
    }
1968

1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979
    argstr = virArgvToString(argv);
    if (!argstr) {
        virReportOOMError();
        goto cleanup;
    }

    if (virAsprintf(&dest, "exec:%s", argstr) < 0) {
        virReportOOMError();
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
1980
    if (mon->json)
1981
        ret = qemuMonitorJSONMigrate(mon, flags, dest);
D
Daniel P. Berrange 已提交
1982
    else
1983 1984 1985 1986 1987
        ret = qemuMonitorTextMigrate(mon, flags, dest);

cleanup:
    VIR_FREE(argstr);
    VIR_FREE(dest);
1988 1989 1990 1991
    return ret;
}

int qemuMonitorMigrateToFile(qemuMonitorPtr mon,
1992
                             unsigned int flags,
1993 1994 1995 1996
                             const char * const *argv,
                             const char *target,
                             unsigned long long offset)
{
1997 1998 1999 2000
    char *argstr;
    char *dest = NULL;
    int ret = -1;
    char *safe_target = NULL;
2001
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2002
    VIR_DEBUG("mon=%p argv=%p target=%s offset=%llu flags=%x",
2003
          mon, argv, target, offset, flags);
2004 2005

    if (!mon) {
2006 2007
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2008 2009
        return -1;
    }
2010 2011

    if (offset % QEMU_MONITOR_MIGRATE_TO_FILE_BS) {
2012 2013 2014
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("file offset must be a multiple of %llu"),
                       QEMU_MONITOR_MIGRATE_TO_FILE_BS);
2015 2016 2017
        return -1;
    }

2018 2019 2020 2021 2022 2023 2024
    argstr = virArgvToString(argv);
    if (!argstr) {
        virReportOOMError();
        goto cleanup;
    }

    /* Migrate to file */
2025 2026
    virBufferEscapeShell(&buf, target);
    if (virBufferError(&buf)) {
2027
        virReportOOMError();
2028
        virBufferFreeAndReset(&buf);
2029 2030
        goto cleanup;
    }
2031
    safe_target = virBufferContentAndReset(&buf);
2032 2033 2034 2035 2036 2037 2038

    /* Two dd processes, sharing the same stdout, are necessary to
     * allow starting at an alignment of 512, but without wasting
     * padding to get to the larger alignment useful for speed.  Use
     * <> redirection to avoid truncating a regular file.  */
    if (virAsprintf(&dest, "exec:" VIR_WRAPPER_SHELL_PREFIX "%s | "
                    "{ dd bs=%llu seek=%llu if=/dev/null && "
2039
                    "dd ibs=%llu obs=%llu; } 1<>%s" VIR_WRAPPER_SHELL_SUFFIX,
2040 2041 2042
                    argstr, QEMU_MONITOR_MIGRATE_TO_FILE_BS,
                    offset / QEMU_MONITOR_MIGRATE_TO_FILE_BS,
                    QEMU_MONITOR_MIGRATE_TO_FILE_TRANSFER_SIZE,
2043
                    QEMU_MONITOR_MIGRATE_TO_FILE_TRANSFER_SIZE,
2044 2045 2046 2047 2048
                    safe_target) < 0) {
        virReportOOMError();
        goto cleanup;
    }

2049
    if (mon->json)
2050
        ret = qemuMonitorJSONMigrate(mon, flags, dest);
2051
    else
2052 2053 2054 2055 2056 2057
        ret = qemuMonitorTextMigrate(mon, flags, dest);

cleanup:
    VIR_FREE(safe_target);
    VIR_FREE(argstr);
    VIR_FREE(dest);
D
Daniel P. Berrange 已提交
2058
    return ret;
2059 2060 2061
}

int qemuMonitorMigrateToUnix(qemuMonitorPtr mon,
2062
                             unsigned int flags,
2063 2064
                             const char *unixfile)
{
2065 2066
    char *dest = NULL;
    int ret = -1;
2067
    VIR_DEBUG("mon=%p, unixfile=%s flags=%x",
2068
          mon, unixfile, flags);
2069 2070

    if (!mon) {
2071 2072
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2073 2074
        return -1;
    }
2075

2076 2077 2078 2079 2080
    if (virAsprintf(&dest, "unix:%s", unixfile) < 0) {
        virReportOOMError();
        return -1;
    }

D
Daniel P. Berrange 已提交
2081
    if (mon->json)
2082
        ret = qemuMonitorJSONMigrate(mon, flags, dest);
D
Daniel P. Berrange 已提交
2083
    else
2084 2085 2086
        ret = qemuMonitorTextMigrate(mon, flags, dest);

    VIR_FREE(dest);
D
Daniel P. Berrange 已提交
2087
    return ret;
2088 2089 2090 2091
}

int qemuMonitorMigrateCancel(qemuMonitorPtr mon)
{
D
Daniel P. Berrange 已提交
2092
    int ret;
2093
    VIR_DEBUG("mon=%p", mon);
2094 2095

    if (!mon) {
2096 2097
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2098 2099
        return -1;
    }
2100

D
Daniel P. Berrange 已提交
2101 2102 2103 2104 2105
    if (mon->json)
        ret = qemuMonitorJSONMigrateCancel(mon);
    else
        ret = qemuMonitorTextMigrateCancel(mon);
    return ret;
2106 2107
}

2108 2109
int
qemuMonitorDumpToFd(qemuMonitorPtr mon, int fd)
2110 2111
{
    int ret;
2112
    VIR_DEBUG("mon=%p fd=%d", mon, fd);
2113 2114

    if (!mon) {
2115 2116
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2117 2118 2119 2120 2121 2122 2123
        return -1;
    }

    if (!mon->json) {
        /* We don't have qemuMonitorTextDump(), so we should check mon->json
         * here.
         */
2124
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2125
                       _("dump-guest-memory is not supported in text mode"));
2126 2127 2128 2129 2130 2131
        return -1;
    }

    if (qemuMonitorSendFileHandle(mon, "dump", fd) < 0)
        return -1;

2132
    ret = qemuMonitorJSONDump(mon, "fd:dump");
2133 2134 2135 2136 2137 2138 2139 2140

    if (ret < 0) {
        if (qemuMonitorCloseFileHandle(mon, "dump") < 0)
            VIR_WARN("failed to close dumping handle");
    }

    return ret;
}
2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171

int qemuMonitorGraphicsRelocate(qemuMonitorPtr mon,
                                int type,
                                const char *hostname,
                                int port,
                                int tlsPort,
                                const char *tlsSubject)
{
    int ret;
    VIR_DEBUG("mon=%p type=%d hostname=%s port=%d tlsPort=%d tlsSubject=%s",
              mon, type, hostname, port, tlsPort, NULLSTR(tlsSubject));

    if (mon->json)
        ret = qemuMonitorJSONGraphicsRelocate(mon,
                                              type,
                                              hostname,
                                              port,
                                              tlsPort,
                                              tlsSubject);
    else
        ret = qemuMonitorTextGraphicsRelocate(mon,
                                              type,
                                              hostname,
                                              port,
                                              tlsPort,
                                              tlsSubject);

    return ret;
}


2172 2173 2174
int qemuMonitorAddUSBDisk(qemuMonitorPtr mon,
                          const char *path)
{
D
Daniel P. Berrange 已提交
2175
    int ret;
2176
    VIR_DEBUG("mon=%p path=%s", mon, path);
2177 2178

    if (!mon) {
2179 2180
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2181 2182
        return -1;
    }
2183

D
Daniel P. Berrange 已提交
2184 2185 2186 2187 2188
    if (mon->json)
        ret = qemuMonitorJSONAddUSBDisk(mon, path);
    else
        ret = qemuMonitorTextAddUSBDisk(mon, path);
    return ret;
2189 2190 2191 2192 2193 2194 2195
}


int qemuMonitorAddUSBDeviceExact(qemuMonitorPtr mon,
                                 int bus,
                                 int dev)
{
D
Daniel P. Berrange 已提交
2196
    int ret;
2197
    VIR_DEBUG("mon=%p bus=%d dev=%d", mon, bus, dev);
2198 2199

    if (!mon) {
2200 2201
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2202 2203
        return -1;
    }
2204

D
Daniel P. Berrange 已提交
2205 2206 2207 2208 2209
    if (mon->json)
        ret = qemuMonitorJSONAddUSBDeviceExact(mon, bus, dev);
    else
        ret = qemuMonitorTextAddUSBDeviceExact(mon, bus, dev);
    return ret;
2210 2211 2212 2213 2214 2215
}

int qemuMonitorAddUSBDeviceMatch(qemuMonitorPtr mon,
                                 int vendor,
                                 int product)
{
D
Daniel P. Berrange 已提交
2216
    int ret;
2217
    VIR_DEBUG("mon=%p vendor=%d product=%d",
2218 2219 2220
          mon, vendor, product);

    if (!mon) {
2221 2222
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2223 2224
        return -1;
    }
2225

D
Daniel P. Berrange 已提交
2226 2227 2228 2229 2230
    if (mon->json)
        ret = qemuMonitorJSONAddUSBDeviceMatch(mon, vendor, product);
    else
        ret = qemuMonitorTextAddUSBDeviceMatch(mon, vendor, product);
    return ret;
2231 2232 2233 2234
}


int qemuMonitorAddPCIHostDevice(qemuMonitorPtr mon,
2235 2236
                                virDevicePCIAddress *hostAddr,
                                virDevicePCIAddress *guestAddr)
2237
{
D
Daniel P. Berrange 已提交
2238
    int ret;
2239
    VIR_DEBUG("mon=%p domain=%d bus=%d slot=%d function=%d",
2240
          mon,
2241
          hostAddr->domain, hostAddr->bus, hostAddr->slot, hostAddr->function);
2242

2243
    if (!mon) {
2244 2245
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2246 2247 2248
        return -1;
    }

D
Daniel P. Berrange 已提交
2249
    if (mon->json)
2250
        ret = qemuMonitorJSONAddPCIHostDevice(mon, hostAddr, guestAddr);
D
Daniel P. Berrange 已提交
2251
    else
2252
        ret = qemuMonitorTextAddPCIHostDevice(mon, hostAddr, guestAddr);
D
Daniel P. Berrange 已提交
2253
    return ret;
2254 2255 2256 2257 2258 2259
}


int qemuMonitorAddPCIDisk(qemuMonitorPtr mon,
                          const char *path,
                          const char *bus,
2260
                          virDevicePCIAddress *guestAddr)
2261
{
D
Daniel P. Berrange 已提交
2262
    int ret;
2263
    VIR_DEBUG("mon=%p path=%s bus=%s",
2264 2265 2266
          mon, path, bus);

    if (!mon) {
2267 2268
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2269 2270
        return -1;
    }
2271

D
Daniel P. Berrange 已提交
2272
    if (mon->json)
2273
        ret = qemuMonitorJSONAddPCIDisk(mon, path, bus, guestAddr);
D
Daniel P. Berrange 已提交
2274
    else
2275
        ret = qemuMonitorTextAddPCIDisk(mon, path, bus, guestAddr);
D
Daniel P. Berrange 已提交
2276
    return ret;
2277 2278 2279 2280 2281
}


int qemuMonitorAddPCINetwork(qemuMonitorPtr mon,
                             const char *nicstr,
2282
                             virDevicePCIAddress *guestAddr)
2283
{
D
Daniel P. Berrange 已提交
2284
    int ret;
2285
    VIR_DEBUG("mon=%p nicstr=%s", mon, nicstr);
2286 2287

    if (!mon) {
2288 2289
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2290 2291
        return -1;
    }
2292

D
Daniel P. Berrange 已提交
2293
    if (mon->json)
2294
        ret = qemuMonitorJSONAddPCINetwork(mon, nicstr, guestAddr);
D
Daniel P. Berrange 已提交
2295
    else
2296
        ret = qemuMonitorTextAddPCINetwork(mon, nicstr, guestAddr);
D
Daniel P. Berrange 已提交
2297
    return ret;
2298 2299 2300 2301
}


int qemuMonitorRemovePCIDevice(qemuMonitorPtr mon,
2302
                               virDevicePCIAddress *guestAddr)
2303
{
D
Daniel P. Berrange 已提交
2304
    int ret;
2305
    VIR_DEBUG("mon=%p domain=%d bus=%d slot=%d function=%d",
2306
          mon, guestAddr->domain, guestAddr->bus,
2307
          guestAddr->slot, guestAddr->function);
2308

2309
    if (!mon) {
2310 2311
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2312 2313 2314
        return -1;
    }

D
Daniel P. Berrange 已提交
2315
    if (mon->json)
2316
        ret = qemuMonitorJSONRemovePCIDevice(mon, guestAddr);
D
Daniel P. Berrange 已提交
2317
    else
2318
        ret = qemuMonitorTextRemovePCIDevice(mon, guestAddr);
D
Daniel P. Berrange 已提交
2319
    return ret;
2320 2321 2322 2323 2324 2325 2326
}


int qemuMonitorSendFileHandle(qemuMonitorPtr mon,
                              const char *fdname,
                              int fd)
{
D
Daniel P. Berrange 已提交
2327
    int ret;
2328
    VIR_DEBUG("mon=%p, fdname=%s fd=%d",
2329 2330 2331
          mon, fdname, fd);

    if (!mon) {
2332 2333
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2334 2335
        return -1;
    }
2336

2337
    if (fd < 0) {
2338 2339
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("fd must be valid"));
2340 2341 2342 2343
        return -1;
    }

    if (!mon->hasSendFD) {
2344
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
2345 2346
                       _("qemu is not using a unix socket monitor, "
                         "cannot send fd %s"), fdname);
2347 2348 2349
        return -1;
    }

D
Daniel P. Berrange 已提交
2350 2351 2352 2353 2354
    if (mon->json)
        ret = qemuMonitorJSONSendFileHandle(mon, fdname, fd);
    else
        ret = qemuMonitorTextSendFileHandle(mon, fdname, fd);
    return ret;
2355 2356 2357 2358 2359 2360
}


int qemuMonitorCloseFileHandle(qemuMonitorPtr mon,
                               const char *fdname)
{
2361 2362 2363
    int ret = -1;
    virErrorPtr error;

2364
    VIR_DEBUG("mon=%p fdname=%s",
2365 2366
          mon, fdname);

2367 2368
    error = virSaveLastError();

2369
    if (!mon) {
2370 2371
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2372
        goto cleanup;
2373
    }
2374

D
Daniel P. Berrange 已提交
2375 2376 2377 2378
    if (mon->json)
        ret = qemuMonitorJSONCloseFileHandle(mon, fdname);
    else
        ret = qemuMonitorTextCloseFileHandle(mon, fdname);
2379 2380 2381 2382 2383 2384

cleanup:
    if (error) {
        virSetError(error);
        virFreeError(error);
    }
D
Daniel P. Berrange 已提交
2385
    return ret;
2386 2387 2388
}


2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460
/* Add the open file descriptor FD into the non-negative set FDSET.
 * If NAME is present, it will be passed along for logging purposes.
 * Returns the counterpart fd that qemu received, or -1 on error.  */
int
qemuMonitorAddFd(qemuMonitorPtr mon, int fdset, int fd, const char *name)
{
    int ret = -1;
    VIR_DEBUG("mon=%p, fdset=%d, fd=%d, name=%s",
              mon, fdset, fd, NULLSTR(name));

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (fd < 0 || fdset < 0) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("fd and fdset must be valid"));
        return -1;
    }

    if (!mon->hasSendFD) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("qemu is not using a unix socket monitor, "
                         "cannot send fd %s"), NULLSTR(name));
        return -1;
    }

    if (mon->json)
        ret = qemuMonitorJSONAddFd(mon, fdset, fd, name);
    else
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("add fd requires JSON monitor"));
    return ret;
}


/* Remove one of qemu's fds from the given FDSET, or if FD is
 * negative, remove the entire set.  Preserve any previous error on
 * entry.  Returns 0 on success, -1 on error.  */
int
qemuMonitorRemoveFd(qemuMonitorPtr mon, int fdset, int fd)
{
    int ret = -1;
    virErrorPtr error;

    VIR_DEBUG("mon=%p, fdset=%d, fd=%d", mon, fdset, fd);

    error = virSaveLastError();

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        goto cleanup;
    }

    if (mon->json)
        ret = qemuMonitorJSONRemoveFd(mon, fdset, fd);
    else
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("remove fd requires JSON monitor"));

cleanup:
    if (error) {
        virSetError(error);
        virFreeError(error);
    }
    return ret;
}


2461
int qemuMonitorAddHostNetwork(qemuMonitorPtr mon,
2462 2463 2464
                              const char *netstr,
                              int tapfd, const char *tapfd_name,
                              int vhostfd, const char *vhostfd_name)
2465
{
2466 2467 2468 2469 2470
    int ret = -1;
    VIR_DEBUG("mon=%p netstr=%s tapfd=%d tapfd_name=%s "
              "vhostfd=%d vhostfd_name=%s",
              mon, netstr, tapfd, NULLSTR(tapfd_name),
              vhostfd, NULLSTR(vhostfd_name));
2471 2472

    if (!mon) {
2473 2474
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2475 2476
        return -1;
    }
2477

2478 2479 2480 2481 2482 2483 2484 2485
    if (tapfd >= 0 && qemuMonitorSendFileHandle(mon, tapfd_name, tapfd) < 0)
        return -1;
    if (vhostfd >= 0 &&
        qemuMonitorSendFileHandle(mon, vhostfd_name, vhostfd) < 0) {
        vhostfd = -1;
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2486
    if (mon->json)
2487
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2488
                       _("JSON monitor should be using AddNetdev"));
D
Daniel P. Berrange 已提交
2489 2490
    else
        ret = qemuMonitorTextAddHostNetwork(mon, netstr);
2491 2492 2493 2494 2495 2496 2497 2498 2499

cleanup:
    if (ret < 0) {
        if (tapfd >= 0 && qemuMonitorCloseFileHandle(mon, tapfd_name) < 0)
            VIR_WARN("failed to close device handle '%s'", tapfd_name);
        if (vhostfd >= 0 && qemuMonitorCloseFileHandle(mon, vhostfd_name) < 0)
            VIR_WARN("failed to close device handle '%s'", vhostfd_name);
    }

D
Daniel P. Berrange 已提交
2500
    return ret;
2501 2502 2503 2504 2505 2506 2507
}


int qemuMonitorRemoveHostNetwork(qemuMonitorPtr mon,
                                 int vlan,
                                 const char *netname)
{
G
Guido Günther 已提交
2508
    int ret = -1;
2509
    VIR_DEBUG("mon=%p netname=%s",
2510 2511 2512
          mon, netname);

    if (!mon) {
2513 2514
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2515 2516
        return -1;
    }
2517

D
Daniel P. Berrange 已提交
2518
    if (mon->json)
2519
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2520
                       _("JSON monitor should be using RemoveNetdev"));
D
Daniel P. Berrange 已提交
2521 2522 2523
    else
        ret = qemuMonitorTextRemoveHostNetwork(mon, vlan, netname);
    return ret;
2524
}
2525

2526 2527

int qemuMonitorAddNetdev(qemuMonitorPtr mon,
2528 2529 2530
                         const char *netdevstr,
                         int tapfd, const char *tapfd_name,
                         int vhostfd, const char *vhostfd_name)
2531
{
2532 2533 2534 2535 2536
    int ret = -1;
    VIR_DEBUG("mon=%p netdevstr=%s tapfd=%d tapfd_name=%s "
              "vhostfd=%d vhostfd_name=%s",
              mon, netdevstr, tapfd, NULLSTR(tapfd_name),
              vhostfd, NULLSTR(vhostfd_name));
2537 2538

    if (!mon) {
2539 2540
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2541 2542
        return -1;
    }
2543

2544 2545 2546 2547 2548 2549 2550 2551
    if (tapfd >= 0 && qemuMonitorSendFileHandle(mon, tapfd_name, tapfd) < 0)
        return -1;
    if (vhostfd >= 0 &&
        qemuMonitorSendFileHandle(mon, vhostfd_name, vhostfd) < 0) {
        vhostfd = -1;
        goto cleanup;
    }

2552 2553 2554 2555
    if (mon->json)
        ret = qemuMonitorJSONAddNetdev(mon, netdevstr);
    else
        ret = qemuMonitorTextAddNetdev(mon, netdevstr);
2556 2557 2558 2559 2560 2561 2562 2563 2564

cleanup:
    if (ret < 0) {
        if (tapfd >= 0 && qemuMonitorCloseFileHandle(mon, tapfd_name) < 0)
            VIR_WARN("failed to close device handle '%s'", tapfd_name);
        if (vhostfd >= 0 && qemuMonitorCloseFileHandle(mon, vhostfd_name) < 0)
            VIR_WARN("failed to close device handle '%s'", vhostfd_name);
    }

2565 2566 2567 2568 2569 2570 2571
    return ret;
}

int qemuMonitorRemoveNetdev(qemuMonitorPtr mon,
                            const char *alias)
{
    int ret;
2572
    VIR_DEBUG("mon=%p alias=%s",
2573 2574 2575
          mon, alias);

    if (!mon) {
2576 2577
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2578 2579
        return -1;
    }
2580 2581 2582 2583 2584 2585 2586 2587 2588

    if (mon->json)
        ret = qemuMonitorJSONRemoveNetdev(mon, alias);
    else
        ret = qemuMonitorTextRemoveNetdev(mon, alias);
    return ret;
}


2589 2590 2591
int qemuMonitorGetPtyPaths(qemuMonitorPtr mon,
                           virHashTablePtr paths)
{
2592
    int ret;
2593
    VIR_DEBUG("mon=%p",
2594 2595 2596
          mon);

    if (!mon) {
2597 2598
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2599 2600
        return -1;
    }
2601

2602 2603 2604 2605 2606
    if (mon->json)
        ret = qemuMonitorJSONGetPtyPaths(mon, paths);
    else
        ret = qemuMonitorTextGetPtyPaths(mon, paths);
    return ret;
2607
}
2608 2609 2610 2611


int qemuMonitorAttachPCIDiskController(qemuMonitorPtr mon,
                                       const char *bus,
2612
                                       virDevicePCIAddress *guestAddr)
2613
{
2614
    VIR_DEBUG("mon=%p type=%s", mon, bus);
2615 2616
    int ret;

2617
    if (!mon) {
2618 2619
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2620 2621 2622
        return -1;
    }

2623 2624 2625 2626 2627 2628 2629
    if (mon->json)
        ret = qemuMonitorJSONAttachPCIDiskController(mon, bus, guestAddr);
    else
        ret = qemuMonitorTextAttachPCIDiskController(mon, bus, guestAddr);

    return ret;
}
2630 2631 2632 2633


int qemuMonitorAttachDrive(qemuMonitorPtr mon,
                           const char *drivestr,
2634
                           virDevicePCIAddress *controllerAddr,
2635 2636
                           virDomainDeviceDriveAddress *driveAddr)
{
2637
    VIR_DEBUG("mon=%p drivestr=%s domain=%d bus=%d slot=%d function=%d",
2638
          mon, drivestr,
2639 2640
          controllerAddr->domain, controllerAddr->bus,
          controllerAddr->slot, controllerAddr->function);
G
Guido Günther 已提交
2641
    int ret = 1;
2642

2643
    if (!mon) {
2644 2645
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2646 2647 2648
        return -1;
    }

2649
    if (mon->json)
2650
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2651
                       _("JSON monitor should be using AddDrive"));
2652 2653 2654 2655 2656
    else
        ret = qemuMonitorTextAttachDrive(mon, drivestr, controllerAddr, driveAddr);

    return ret;
}
2657 2658 2659 2660

int qemuMonitorGetAllPCIAddresses(qemuMonitorPtr mon,
                                  qemuMonitorPCIAddress **addrs)
{
2661
    VIR_DEBUG("mon=%p addrs=%p", mon, addrs);
2662 2663
    int ret;

2664
    if (!mon) {
2665 2666
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2667 2668 2669
        return -1;
    }

2670 2671 2672 2673 2674 2675
    if (mon->json)
        ret = qemuMonitorJSONGetAllPCIAddresses(mon, addrs);
    else
        ret = qemuMonitorTextGetAllPCIAddresses(mon, addrs);
    return ret;
}
2676

2677 2678
int qemuMonitorDriveDel(qemuMonitorPtr mon,
                        const char *drivestr)
2679
{
2680
    VIR_DEBUG("mon=%p drivestr=%s", mon, drivestr);
2681 2682 2683
    int ret;

    if (!mon) {
2684 2685
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2686 2687 2688 2689
        return -1;
    }

    if (mon->json)
2690
        ret = qemuMonitorJSONDriveDel(mon, drivestr);
2691
    else
2692
        ret = qemuMonitorTextDriveDel(mon, drivestr);
2693 2694 2695
    return ret;
}

2696
int qemuMonitorDelDevice(qemuMonitorPtr mon,
2697
                         const char *devalias)
2698
{
2699
    VIR_DEBUG("mon=%p devalias=%s", mon, devalias);
2700 2701
    int ret;

2702
    if (!mon) {
2703 2704
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2705 2706 2707
        return -1;
    }

2708
    if (mon->json)
2709
        ret = qemuMonitorJSONDelDevice(mon, devalias);
2710
    else
2711
        ret = qemuMonitorTextDelDevice(mon, devalias);
2712 2713 2714
    return ret;
}

2715

2716 2717 2718 2719
int qemuMonitorAddDeviceWithFd(qemuMonitorPtr mon,
                               const char *devicestr,
                               int fd,
                               const char *fdname)
2720
{
2721 2722
    VIR_DEBUG("mon=%p device=%s fd=%d fdname=%s", mon, devicestr, fd,
              NULLSTR(fdname));
2723 2724
    int ret;

2725
    if (!mon) {
2726 2727
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2728 2729 2730
        return -1;
    }

2731 2732 2733
    if (fd >= 0 && qemuMonitorSendFileHandle(mon, fdname, fd) < 0)
        return -1;

2734 2735 2736 2737
    if (mon->json)
        ret = qemuMonitorJSONAddDevice(mon, devicestr);
    else
        ret = qemuMonitorTextAddDevice(mon, devicestr);
2738 2739 2740 2741 2742 2743

    if (ret < 0 && fd >= 0) {
        if (qemuMonitorCloseFileHandle(mon, fdname) < 0)
            VIR_WARN("failed to close device handle '%s'", fdname);
    }

2744 2745 2746
    return ret;
}

2747 2748 2749 2750 2751 2752
int qemuMonitorAddDevice(qemuMonitorPtr mon,
                         const char *devicestr)
{
    return qemuMonitorAddDeviceWithFd(mon, devicestr, -1, NULL);
}

2753 2754 2755
int qemuMonitorAddDrive(qemuMonitorPtr mon,
                        const char *drivestr)
{
2756
    VIR_DEBUG("mon=%p drive=%s", mon, drivestr);
2757 2758
    int ret;

2759
    if (!mon) {
2760 2761
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2762 2763 2764
        return -1;
    }

2765 2766 2767 2768 2769 2770
    if (mon->json)
        ret = qemuMonitorJSONAddDrive(mon, drivestr);
    else
        ret = qemuMonitorTextAddDrive(mon, drivestr);
    return ret;
}
2771 2772 2773 2774 2775 2776


int qemuMonitorSetDrivePassphrase(qemuMonitorPtr mon,
                                  const char *alias,
                                  const char *passphrase)
{
2777
    VIR_DEBUG("mon=%p alias=%s passphrase=%p(value hidden)", mon, alias, passphrase);
2778 2779
    int ret;

2780
    if (!mon) {
2781 2782
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2783 2784 2785
        return -1;
    }

2786 2787 2788 2789 2790 2791
    if (mon->json)
        ret = qemuMonitorJSONSetDrivePassphrase(mon, alias, passphrase);
    else
        ret = qemuMonitorTextSetDrivePassphrase(mon, alias, passphrase);
    return ret;
}
C
Chris Lalancette 已提交
2792 2793 2794 2795 2796

int qemuMonitorCreateSnapshot(qemuMonitorPtr mon, const char *name)
{
    int ret;

2797
    VIR_DEBUG("mon=%p, name=%s",mon,name);
C
Chris Lalancette 已提交
2798

2799
    if (!mon) {
2800 2801
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2802 2803 2804
        return -1;
    }

C
Chris Lalancette 已提交
2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815
    if (mon->json)
        ret = qemuMonitorJSONCreateSnapshot(mon, name);
    else
        ret = qemuMonitorTextCreateSnapshot(mon, name);
    return ret;
}

int qemuMonitorLoadSnapshot(qemuMonitorPtr mon, const char *name)
{
    int ret;

2816
    VIR_DEBUG("mon=%p, name=%s",mon,name);
C
Chris Lalancette 已提交
2817

2818
    if (!mon) {
2819 2820
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2821 2822 2823
        return -1;
    }

C
Chris Lalancette 已提交
2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834
    if (mon->json)
        ret = qemuMonitorJSONLoadSnapshot(mon, name);
    else
        ret = qemuMonitorTextLoadSnapshot(mon, name);
    return ret;
}

int qemuMonitorDeleteSnapshot(qemuMonitorPtr mon, const char *name)
{
    int ret;

2835
    VIR_DEBUG("mon=%p, name=%s",mon,name);
C
Chris Lalancette 已提交
2836

2837
    if (!mon) {
2838 2839
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2840 2841 2842
        return -1;
    }

C
Chris Lalancette 已提交
2843 2844 2845 2846 2847 2848
    if (mon->json)
        ret = qemuMonitorJSONDeleteSnapshot(mon, name);
    else
        ret = qemuMonitorTextDeleteSnapshot(mon, name);
    return ret;
}
2849

2850 2851 2852 2853
/* Use the snapshot_blkdev command to convert the existing file for
 * device into a read-only backing file of a new qcow2 image located
 * at file.  */
int
2854
qemuMonitorDiskSnapshot(qemuMonitorPtr mon, virJSONValuePtr actions,
2855 2856
                        const char *device, const char *file,
                        const char *format, bool reuse)
2857
{
2858
    int ret = -1;
2859

2860 2861
    VIR_DEBUG("mon=%p, actions=%p, device=%s, file=%s, format=%s, reuse=%d",
              mon, actions, device, file, format, reuse);
2862 2863

    if (!mon) {
2864 2865
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
2866 2867 2868
        return -1;
    }

2869
    if (mon->json)
2870 2871
        ret = qemuMonitorJSONDiskSnapshot(mon, actions, device, file, format,
                                          reuse);
2872
    else
2873
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2874
                       _("disk snapshot requires JSON monitor"));
2875 2876 2877
    return ret;
}

2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891
/* Start a drive-mirror block job.  bandwidth is in MiB/sec.  */
int
qemuMonitorDriveMirror(qemuMonitorPtr mon,
                       const char *device, const char *file,
                       const char *format, unsigned long bandwidth,
                       unsigned int flags)
{
    int ret = -1;
    unsigned long long speed;

    VIR_DEBUG("mon=%p, device=%s, file=%s, format=%s, bandwidth=%ld, "
              "flags=%x",
              mon, device, file, NULLSTR(format), bandwidth, flags);

2892 2893
    /* Convert bandwidth MiB to bytes - unfortunately the JSON QMP protocol is
     * limited to LLONG_MAX also for unsigned values */
2894
    speed = bandwidth;
2895
    if (speed > LLONG_MAX >> 20) {
2896 2897
        virReportError(VIR_ERR_OVERFLOW,
                       _("bandwidth must be less than %llu"),
2898
                       LLONG_MAX >> 20);
2899 2900 2901 2902 2903 2904 2905 2906
        return -1;
    }
    speed <<= 20;

    if (mon->json)
        ret = qemuMonitorJSONDriveMirror(mon, device, file, format, speed,
                                         flags);
    else
2907
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2908 2909 2910 2911
                       _("drive-mirror requires JSON monitor"));
    return ret;
}

2912 2913 2914 2915 2916 2917 2918 2919
/* Use the transaction QMP command to run atomic snapshot commands.  */
int
qemuMonitorTransaction(qemuMonitorPtr mon, virJSONValuePtr actions)
{
    int ret = -1;

    VIR_DEBUG("mon=%p, actions=%p", mon, actions);

2920
    if (mon->json)
2921
        ret = qemuMonitorJSONTransaction(mon, actions);
2922
    else
2923
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2924
                       _("transaction requires JSON monitor"));
2925 2926 2927
    return ret;
}

2928
/* Start a block-commit block job.  bandwidth is in MiB/sec.  */
2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939
int
qemuMonitorBlockCommit(qemuMonitorPtr mon, const char *device,
                       const char *top, const char *base,
                       unsigned long bandwidth)
{
    int ret = -1;
    unsigned long long speed;

    VIR_DEBUG("mon=%p, device=%s, top=%s, base=%s, bandwidth=%ld",
              mon, device, NULLSTR(top), NULLSTR(base), bandwidth);

2940 2941
    /* Convert bandwidth MiB to bytes - unfortunately the JSON QMP protocol is
     * limited to LLONG_MAX also for unsigned values */
2942
    speed = bandwidth;
2943
    if (speed > LLONG_MAX >> 20) {
2944 2945
        virReportError(VIR_ERR_OVERFLOW,
                       _("bandwidth must be less than %llu"),
2946
                       LLONG_MAX >> 20);
2947 2948 2949 2950 2951 2952 2953
        return -1;
    }
    speed <<= 20;

    if (mon->json)
        ret = qemuMonitorJSONBlockCommit(mon, device, top, base, speed);
    else
2954
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2955 2956 2957 2958
                       _("block-commit requires JSON monitor"));
    return ret;
}

2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972
/* Use the block-job-complete monitor command to pivot a block copy
 * job.  */
int
qemuMonitorDrivePivot(qemuMonitorPtr mon, const char *device,
                      const char *file, const char *format)
{
    int ret = -1;

    VIR_DEBUG("mon=%p, device=%s, file=%s, format=%s",
              mon, device, file, NULLSTR(format));

    if (mon->json)
        ret = qemuMonitorJSONDrivePivot(mon, device, file, format);
    else
2973
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
2974 2975 2976 2977
                       _("drive pivot requires JSON monitor"));
    return ret;
}

2978 2979 2980 2981
int qemuMonitorArbitraryCommand(qemuMonitorPtr mon,
                                const char *cmd,
                                char **reply,
                                bool hmp)
2982 2983 2984
{
    int ret;

2985
    VIR_DEBUG("mon=%p, cmd=%s, reply=%p, hmp=%d", mon, cmd, reply, hmp);
2986 2987

    if (mon->json)
2988
        ret = qemuMonitorJSONArbitraryCommand(mon, cmd, reply, hmp);
2989 2990 2991 2992
    else
        ret = qemuMonitorTextArbitraryCommand(mon, cmd, reply);
    return ret;
}
2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006


int qemuMonitorInjectNMI(qemuMonitorPtr mon)
{
    int ret;

    VIR_DEBUG("mon=%p", mon);

    if (mon->json)
        ret = qemuMonitorJSONInjectNMI(mon);
    else
        ret = qemuMonitorTextInjectNMI(mon);
    return ret;
}
3007

3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024
int qemuMonitorSendKey(qemuMonitorPtr mon,
                       unsigned int holdtime,
                       unsigned int *keycodes,
                       unsigned int nkeycodes)
{
    int ret;

    VIR_DEBUG("mon=%p, holdtime=%u, nkeycodes=%u",
              mon, holdtime, nkeycodes);

    if (mon->json)
        ret = qemuMonitorJSONSendKey(mon, holdtime, keycodes, nkeycodes);
    else
        ret = qemuMonitorTextSendKey(mon, holdtime, keycodes, nkeycodes);
    return ret;
}

3025 3026 3027 3028 3029 3030 3031 3032
int qemuMonitorScreendump(qemuMonitorPtr mon,
                          const char *file)
{
    int ret;

    VIR_DEBUG("mon=%p, file=%s", mon, file);

    if (!mon) {
3033 3034
        virReportError(VIR_ERR_INVALID_ARG,"%s",
                       _("monitor must not be NULL"));
3035 3036 3037 3038 3039 3040 3041 3042 3043
        return -1;
    }

    if (mon->json)
        ret = qemuMonitorJSONScreendump(mon, file);
    else
        ret = qemuMonitorTextScreendump(mon, file);
    return ret;
}
3044

3045
/* bandwidth is in MiB/sec */
3046 3047
int qemuMonitorBlockJob(qemuMonitorPtr mon,
                        const char *device,
3048
                        const char *base,
3049 3050
                        unsigned long bandwidth,
                        virDomainBlockJobInfoPtr info,
3051 3052
                        qemuMonitorBlockJobCmd mode,
                        bool modern)
3053
{
E
Eric Blake 已提交
3054
    int ret = -1;
3055
    unsigned long long speed;
3056

3057 3058 3059 3060
    VIR_DEBUG("mon=%p, device=%s, base=%s, bandwidth=%luM, info=%p, mode=%o, "
              "modern=%d", mon, device, NULLSTR(base), bandwidth, info, mode,
              modern);

3061 3062
    /* Convert bandwidth MiB to bytes - unfortunately the JSON QMP protocol is
     * limited to LLONG_MAX also for unsigned values */
3063
    speed = bandwidth;
3064
    if (speed > LLONG_MAX >> 20) {
3065 3066
        virReportError(VIR_ERR_OVERFLOW,
                       _("bandwidth must be less than %llu"),
3067
                       LLONG_MAX >> 20);
3068 3069
        return -1;
    }
3070
    speed <<= 20;
3071 3072

    if (mon->json)
3073 3074
        ret = qemuMonitorJSONBlockJob(mon, device, base, speed, info, mode,
                                      modern);
3075
    else
3076
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3077
                       _("block jobs require JSON monitor"));
3078 3079
    return ret;
}
3080

3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113
int qemuMonitorSetBlockIoThrottle(qemuMonitorPtr mon,
                                  const char *device,
                                  virDomainBlockIoTuneInfoPtr info)
{
    int ret;

    VIR_DEBUG("mon=%p, device=%p, info=%p", mon, device, info);

    if (mon->json) {
        ret = qemuMonitorJSONSetBlockIoThrottle(mon, device, info);
    } else {
        ret = qemuMonitorTextSetBlockIoThrottle(mon, device, info);
    }
    return ret;
}

int qemuMonitorGetBlockIoThrottle(qemuMonitorPtr mon,
                                  const char *device,
                                  virDomainBlockIoTuneInfoPtr reply)
{
    int ret;

    VIR_DEBUG("mon=%p, device=%p, reply=%p", mon, device, reply);

    if (mon->json) {
        ret = qemuMonitorJSONGetBlockIoThrottle(mon, device, reply);
    } else {
        ret = qemuMonitorTextGetBlockIoThrottle(mon, device, reply);
    }
    return ret;
}


3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162
int qemuMonitorVMStatusToPausedReason(const char *status)
{
    int st;

    if (!status)
        return VIR_DOMAIN_PAUSED_UNKNOWN;

    if ((st = qemuMonitorVMStatusTypeFromString(status)) < 0) {
        VIR_WARN("Qemu reported unknown VM status: '%s'", status);
        return VIR_DOMAIN_PAUSED_UNKNOWN;
    }

    switch ((qemuMonitorVMStatus) st) {
    case QEMU_MONITOR_VM_STATUS_DEBUG:
    case QEMU_MONITOR_VM_STATUS_INTERNAL_ERROR:
    case QEMU_MONITOR_VM_STATUS_RESTORE_VM:
        return VIR_DOMAIN_PAUSED_UNKNOWN;

    case QEMU_MONITOR_VM_STATUS_INMIGRATE:
    case QEMU_MONITOR_VM_STATUS_POSTMIGRATE:
    case QEMU_MONITOR_VM_STATUS_FINISH_MIGRATE:
        return VIR_DOMAIN_PAUSED_MIGRATION;

    case QEMU_MONITOR_VM_STATUS_IO_ERROR:
        return VIR_DOMAIN_PAUSED_IOERROR;

    case QEMU_MONITOR_VM_STATUS_PAUSED:
    case QEMU_MONITOR_VM_STATUS_PRELAUNCH:
        return VIR_DOMAIN_PAUSED_USER;

    case QEMU_MONITOR_VM_STATUS_RUNNING:
        VIR_WARN("Qemu reports the guest is paused but status is 'running'");
        return VIR_DOMAIN_PAUSED_UNKNOWN;

    case QEMU_MONITOR_VM_STATUS_SAVE_VM:
        return VIR_DOMAIN_PAUSED_SAVE;

    case QEMU_MONITOR_VM_STATUS_SHUTDOWN:
        return VIR_DOMAIN_PAUSED_SHUTTING_DOWN;

    case QEMU_MONITOR_VM_STATUS_WATCHDOG:
        return VIR_DOMAIN_PAUSED_WATCHDOG;

    /* unreachable from this point on */
    case QEMU_MONITOR_VM_STATUS_LAST:
        ;
    }
    return VIR_DOMAIN_PAUSED_UNKNOWN;
}
3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175


int qemuMonitorOpenGraphics(qemuMonitorPtr mon,
                            const char *protocol,
                            int fd,
                            const char *fdname,
                            bool skipauth)
{
    VIR_DEBUG("mon=%p protocol=%s fd=%d fdname=%s skipauth=%d",
              mon, protocol, fd, NULLSTR(fdname), skipauth);
    int ret;

    if (!mon) {
3176 3177
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195
        return -1;
    }

    if (qemuMonitorSendFileHandle(mon, fdname, fd) < 0)
        return -1;

    if (mon->json)
        ret = qemuMonitorJSONOpenGraphics(mon, protocol, fdname, skipauth);
    else
        ret = qemuMonitorTextOpenGraphics(mon, protocol, fdname, skipauth);

    if (ret < 0) {
        if (qemuMonitorCloseFileHandle(mon, fdname) < 0)
            VIR_WARN("failed to close device handle '%s'", fdname);
    }

    return ret;
}
3196 3197 3198 3199 3200 3201

int qemuMonitorSystemWakeup(qemuMonitorPtr mon)
{
    VIR_DEBUG("mon=%p", mon);

    if (!mon) {
3202 3203
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
3204 3205 3206 3207
        return -1;
    }

    if (!mon->json) {
3208
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3209
                       _("JSON monitor is required"));
3210 3211 3212 3213 3214
        return -1;
    }

    return qemuMonitorJSONSystemWakeup(mon);
}
3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231

int qemuMonitorGetVersion(qemuMonitorPtr mon,
                          int *major,
                          int *minor,
                          int *micro,
                          char **package)
{
    VIR_DEBUG("mon=%p major=%p minor=%p micro=%p package=%p",
              mon, major, minor, micro, package);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
3232
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3233 3234 3235 3236 3237 3238
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetVersion(mon, major, minor, micro, package);
}
3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252

int qemuMonitorGetMachines(qemuMonitorPtr mon,
                           qemuMonitorMachineInfoPtr **machines)
{
    VIR_DEBUG("mon=%p machines=%p",
              mon, machines);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
3253
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetMachines(mon, machines);
}

void qemuMonitorMachineInfoFree(qemuMonitorMachineInfoPtr machine)
{
    if (!machine)
        return;
    VIR_FREE(machine->name);
    VIR_FREE(machine->alias);
    VIR_FREE(machine);
}
3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282

int qemuMonitorGetCPUDefinitions(qemuMonitorPtr mon,
                                 char ***cpus)
{
    VIR_DEBUG("mon=%p cpus=%p",
              mon, cpus);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
3283
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3284 3285 3286 3287 3288 3289
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetCPUDefinitions(mon, cpus);
}
3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304


int qemuMonitorGetCommands(qemuMonitorPtr mon,
                           char ***commands)
{
    VIR_DEBUG("mon=%p commands=%p",
              mon, commands);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
3305
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3306 3307 3308 3309 3310 3311
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetCommands(mon, commands);
}
3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326


int qemuMonitorGetEvents(qemuMonitorPtr mon,
                         char ***events)
{
    VIR_DEBUG("mon=%p events=%p",
              mon, events);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
3327
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3328 3329 3330 3331 3332 3333
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetEvents(mon, events);
}
3334 3335


3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349
int qemuMonitorGetKVMState(qemuMonitorPtr mon,
                           bool *enabled,
                           bool *present)
{
    VIR_DEBUG("mon=%p enabled=%p present=%p",
              mon, enabled, present);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
3350
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3351 3352 3353 3354 3355 3356 3357 3358
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetKVMState(mon, enabled, present);
}


3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371
int qemuMonitorGetObjectTypes(qemuMonitorPtr mon,
                              char ***types)
{
    VIR_DEBUG("mon=%p types=%p",
              mon, types);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
3372
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3373 3374 3375 3376 3377 3378
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetObjectTypes(mon, types);
}
3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394


int qemuMonitorGetObjectProps(qemuMonitorPtr mon,
                              const char *type,
                              char ***props)
{
    VIR_DEBUG("mon=%p type=%s props=%p",
              mon, type, props);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
3395
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3396 3397 3398 3399 3400 3401
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetObjectProps(mon, type, props);
}
3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415


char *qemuMonitorGetTargetArch(qemuMonitorPtr mon)
{
    VIR_DEBUG("mon=%p",
              mon);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return NULL;
    }

    if (!mon->json) {
3416
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3417 3418 3419 3420 3421 3422
                       _("JSON monitor is required"));
        return NULL;
    }

    return qemuMonitorJSONGetTargetArch(mon);
}
3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464


/**
 * Returns 1 if @capability is supported, 0 if it's not, or -1 on error.
 */
int qemuMonitorGetMigrationCapability(qemuMonitorPtr mon,
                                      qemuMonitorMigrationCaps capability)
{
    VIR_DEBUG("mon=%p capability=%d", mon, capability);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    /* No capability is supported without JSON monitor */
    if (!mon->json)
        return 0;

    return qemuMonitorJSONGetMigrationCapability(mon, capability);
}

int qemuMonitorSetMigrationCapability(qemuMonitorPtr mon,
                                      qemuMonitorMigrationCaps capability)
{
    VIR_DEBUG("mon=%p capability=%d", mon, capability);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONSetMigrationCapability(mon, capability);
}
3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486

int qemuMonitorNBDServerStart(qemuMonitorPtr mon,
                              const char *host,
                              unsigned int port)
{
    VIR_DEBUG("mon=%p host=%s port=%u",
              mon, host, port);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONNBDServerStart(mon, host, port);
}
3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508

int qemuMonitorNBDServerAdd(qemuMonitorPtr mon,
                            const char *deviceID,
                            bool writable)
{
    VIR_DEBUG("mon=%p deviceID=%s",
              mon, deviceID);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONNBDServerAdd(mon, deviceID, writable);
}
3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527

int qemuMonitorNBDServerStop(qemuMonitorPtr mon)
{
    VIR_DEBUG("mon=%p", mon);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONNBDServerStop(mon);
}
S
Stefan Berger 已提交
3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571


int qemuMonitorGetTPMModels(qemuMonitorPtr mon,
                            char ***tpmmodels)
{
    VIR_DEBUG("mon=%p tpmmodels=%p",
              mon, tpmmodels);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetTPMModels(mon, tpmmodels);
}


int qemuMonitorGetTPMTypes(qemuMonitorPtr mon,
                           char ***tpmtypes)
{
    VIR_DEBUG("mon=%p tpmtypes=%p",
              mon, tpmtypes);

    if (!mon) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("monitor must not be NULL"));
        return -1;
    }

    if (!mon->json) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("JSON monitor is required"));
        return -1;
    }

    return qemuMonitorJSONGetTPMTypes(mon, tpmtypes);
}