qemumonitortestutils.c 26.1 KB
Newer Older
1
/*
2
 * Copyright (C) 2011-2013 Red Hat, Inc.
3 4 5 6 7 8 9 10 11 12 13 14
 *
 * 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
15
 * License along with this library.  If not, see
16 17 18 19 20 21 22 23 24 25 26
 * <http://www.gnu.org/licenses/>.
 *
 */

#include <config.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

27
#include "testutils.h"
28 29
#include "qemumonitortestutils.h"

30
#include "virthread.h"
31
#include "qemu/qemu_processpriv.h"
32
#include "qemu/qemu_monitor.h"
33
#include "qemu/qemu_agent.h"
34
#include "rpc/virnetsocket.h"
35
#include "viralloc.h"
36
#include "virlog.h"
37
#include "virerror.h"
38
#include "virstring.h"
39 40 41

#define VIR_FROM_THIS VIR_FROM_NONE

42 43
VIR_LOG_INIT("tests.qemumonitortestutils");

44
struct _qemuMonitorTestItem {
45 46 47
    qemuMonitorTestResponseCallback cb;
    void *opaque;
    virFreeCallback freecb;
48 49 50 51 52 53 54 55 56
};

struct _qemuMonitorTest {
    virMutex lock;
    virThread thread;

    bool json;
    bool quit;
    bool running;
57
    bool started;
58 59 60 61 62 63 64 65 66 67 68 69 70

    char *incoming;
    size_t incomingLength;
    size_t incomingCapacity;

    char *outgoing;
    size_t outgoingLength;
    size_t outgoingCapacity;

    virNetSocketPtr server;
    virNetSocketPtr client;

    qemuMonitorPtr mon;
71
    qemuAgentPtr agent;
72

73 74
    char *tmpdir;

75 76 77 78 79 80 81
    size_t nitems;
    qemuMonitorTestItemPtr *items;

    virDomainObjPtr vm;
};


82 83 84 85 86 87 88 89 90 91 92
static void
qemuMonitorTestItemFree(qemuMonitorTestItemPtr item)
{
    if (!item)
        return;

    if (item->freecb)
        (item->freecb)(item->opaque);

    VIR_FREE(item);
}
93

94

95
/*
E
Eric Blake 已提交
96
 * Appends data for a reply to the outgoing buffer
97
 */
98
int
99 100
qemuMonitorTestAddReponse(qemuMonitorTestPtr test,
                          const char *response)
101 102 103 104
{
    size_t want = strlen(response) + 2;
    size_t have = test->outgoingCapacity - test->outgoingLength;

105 106
    VIR_DEBUG("Adding response to monitor command: '%s", response);

107 108
    if (have < want) {
        size_t need = want - have;
109
        if (VIR_EXPAND_N(test->outgoing, test->outgoingCapacity, need) < 0)
110 111 112 113
            return -1;
    }

    want -= 2;
114 115
    memcpy(test->outgoing + test->outgoingLength, response, want);
    memcpy(test->outgoing + test->outgoingLength + want, "\r\n", 2);
116 117 118 119 120
    test->outgoingLength += want + 2;
    return 0;
}


121
int
122
qemuMonitorTestAddUnexpectedErrorResponse(qemuMonitorTestPtr test)
123
{
124
    if (test->agent || test->json) {
125 126 127 128
        return qemuMonitorTestAddReponse(test,
                                         "{ \"error\": "
                                         " { \"desc\": \"Unexpected command\", "
                                         "   \"class\": \"UnexpectedCommand\" } }");
129
    } else {
130
        return qemuMonitorTestAddReponse(test, "unexpected command");
131 132 133 134
    }
}


135 136 137 138 139 140 141 142 143 144 145 146 147 148
int ATTRIBUTE_FMT_PRINTF(2, 3)
qemuMonitorReportError(qemuMonitorTestPtr test, const char *errmsg, ...)
{
    va_list msgargs;
    char *msg = NULL;
    char *jsonmsg = NULL;
    int ret = -1;

    va_start(msgargs, errmsg);

    if (virVasprintf(&msg, errmsg, msgargs) < 0)
        goto cleanup;

    if (test->agent || test->json) {
149 150 151 152 153 154
        char *tmp = msg;
        msg = qemuMonitorEscapeArg(tmp);
        VIR_FREE(tmp);
        if (!msg)
            goto cleanup;

155 156 157 158 159 160 161 162 163 164 165 166
        if (virAsprintf(&jsonmsg, "{ \"error\": "
                                  " { \"desc\": \"%s\", "
                                  "   \"class\": \"UnexpectedCommand\" } }",
                                  msg) < 0)
            goto cleanup;
    } else {
        if (virAsprintf(&jsonmsg, "error: '%s'", msg) < 0)
            goto cleanup;
    }

    ret = qemuMonitorTestAddReponse(test, jsonmsg);

167
 cleanup:
168 169 170 171 172 173 174
    va_end(msgargs);
    VIR_FREE(msg);
    VIR_FREE(jsonmsg);
    return ret;
}


175
static int
176 177
qemuMonitorTestProcessCommand(qemuMonitorTestPtr test,
                              const char *cmdstr)
178
{
179
    int ret;
180

181 182
    VIR_DEBUG("Processing string from monitor handler: '%s", cmdstr);

183 184
    if (test->nitems == 0) {
        return qemuMonitorTestAddUnexpectedErrorResponse(test);
185
    } else {
186 187 188 189 190
        qemuMonitorTestItemPtr item = test->items[0];
        ret = (item->cb)(test, item, cmdstr);
        qemuMonitorTestItemFree(item);
        if (VIR_DELETE_ELEMENT(test->items, 0, test->nitems) < 0)
            return -1;
191 192 193 194 195
    }

    return ret;
}

196

197 198 199
/*
 * Handles read/write of monitor data on the monitor server side
 */
200 201 202 203
static void
qemuMonitorTestIO(virNetSocketPtr sock,
                  int events,
                  void *opaque)
204 205 206 207 208
{
    qemuMonitorTestPtr test = opaque;
    bool err = false;

    virMutexLock(&test->lock);
209 210 211 212
    if (test->quit) {
        virMutexUnlock(&test->lock);
        return;
    }
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
    if (events & VIR_EVENT_HANDLE_WRITABLE) {
        ssize_t ret;
        if ((ret = virNetSocketWrite(sock,
                                     test->outgoing,
                                     test->outgoingLength)) < 0) {
            err = true;
            goto cleanup;
        }

        memmove(test->outgoing,
                test->outgoing + ret,
                test->outgoingLength - ret);
        test->outgoingLength -= ret;

        if ((test->outgoingCapacity - test->outgoingLength) > 1024)
            VIR_SHRINK_N(test->outgoing, test->outgoingCapacity, 1024);
    }

    if (events & VIR_EVENT_HANDLE_READABLE) {
        ssize_t ret, used;
        char *t1, *t2;

        if ((test->incomingCapacity - test->incomingLength) < 1024) {
            if (VIR_EXPAND_N(test->incoming, test->incomingCapacity, 1024) < 0) {
                err = true;
                goto cleanup;
            }
        }

        if ((ret = virNetSocketRead(sock,
                                    test->incoming + test->incomingLength,
                                    (test->incomingCapacity - test->incomingLength) - 1)) < 0) {
            err = true;
            goto cleanup;
        }
        test->incomingLength += ret;
        test->incoming[test->incomingLength] = '\0';

        /* Look to see if we've got a complete line, and
         * if so, handle that command
         */
        t1 = test->incoming;
255 256
        while ((t2 = strstr(t1, "\n")) ||
                (!test->json && (t2 = strstr(t1, "\r")))) {
257 258 259 260 261 262 263
            *t2 = '\0';

            if (qemuMonitorTestProcessCommand(test, t1) < 0) {
                err = true;
                goto cleanup;
            }

264
            t1 = t2 + 1;
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
        }
        used = t1 - test->incoming;
        memmove(test->incoming, t1, test->incomingLength - used);
        test->incomingLength -= used;
        if ((test->incomingCapacity - test->incomingLength) > 1024) {
            VIR_SHRINK_N(test->incoming,
                         test->incomingCapacity,
                         1024);
        }
    }

    if (events & (VIR_EVENT_HANDLE_HANGUP |
                  VIR_EVENT_HANDLE_ERROR))
        err = true;

280
 cleanup:
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
    if (err) {
        virNetSocketRemoveIOCallback(sock);
        virNetSocketClose(sock);
        virObjectUnref(test->client);
        test->client = NULL;
    } else {
        events = VIR_EVENT_HANDLE_READABLE;

        if (test->outgoingLength)
            events |= VIR_EVENT_HANDLE_WRITABLE;

        virNetSocketUpdateIOCallback(sock, events);
    }
    virMutexUnlock(&test->lock);
}


298 299
static void
qemuMonitorTestWorker(void *opaque)
300 301 302 303 304 305 306 307 308
{
    qemuMonitorTestPtr test = opaque;

    virMutexLock(&test->lock);

    while (!test->quit) {
        virMutexUnlock(&test->lock);

        if (virEventRunDefaultImpl() < 0) {
309
            virMutexLock(&test->lock);
310 311 312 313 314 315 316 317 318 319 320 321 322
            test->quit = true;
            break;
        }

        virMutexLock(&test->lock);
    }

    test->running = false;

    virMutexUnlock(&test->lock);
    return;
}

323

324
static void
325 326
qemuMonitorTestFreeTimer(int timer ATTRIBUTE_UNUSED,
                         void *opaque ATTRIBUTE_UNUSED)
327 328 329 330 331
{
    /* nothing to be done here */
}


332 333
void
qemuMonitorTestFree(qemuMonitorTestPtr test)
334 335
{
    size_t i;
336
    int timer = -1;
337 338 339 340 341 342 343

    if (!test)
        return;

    virMutexLock(&test->lock);
    if (test->running) {
        test->quit = true;
344 345
        /* HACK: Add a dummy timeout to break event loop */
        timer = virEventAddTimeout(0, qemuMonitorTestFreeTimer, NULL, NULL);
346 347 348 349 350 351 352 353 354 355 356
    }
    virMutexUnlock(&test->lock);

    if (test->client) {
        virNetSocketRemoveIOCallback(test->client);
        virNetSocketClose(test->client);
        virObjectUnref(test->client);
    }

    virObjectUnref(test->server);
    if (test->mon) {
357
        virObjectUnlock(test->mon);
358 359 360
        qemuMonitorClose(test->mon);
    }

361 362 363 364 365
    if (test->agent) {
        virObjectUnlock(test->agent);
        qemuAgentClose(test->agent);
    }

366 367
    virObjectUnref(test->vm);

368
    if (test->started)
369
        virThreadJoin(&test->thread);
370

371 372 373
    if (timer != -1)
        virEventRemoveTimeout(timer);

374 375 376
    VIR_FREE(test->incoming);
    VIR_FREE(test->outgoing);

377
    for (i = 0; i < test->nitems; i++)
378 379 380
        qemuMonitorTestItemFree(test->items[i]);
    VIR_FREE(test->items);

381 382 383 384 385
    if (test->tmpdir && rmdir(test->tmpdir) < 0)
        VIR_WARN("Failed to remove tempdir: %s", strerror(errno));

    VIR_FREE(test->tmpdir);

386 387 388 389 390 391
    virMutexDestroy(&test->lock);
    VIR_FREE(test);
}


int
392 393 394 395
qemuMonitorTestAddHandler(qemuMonitorTestPtr test,
                          qemuMonitorTestResponseCallback cb,
                          void *opaque,
                          virFreeCallback freecb)
396 397 398 399
{
    qemuMonitorTestItemPtr item;

    if (VIR_ALLOC(item) < 0)
400
        goto error;
401

402 403 404
    item->cb = cb;
    item->freecb = freecb;
    item->opaque = opaque;
405 406

    virMutexLock(&test->lock);
407
    if (VIR_APPEND_ELEMENT(test->items, test->nitems, item) < 0) {
408
        virMutexUnlock(&test->lock);
409
        goto error;
410 411 412 413 414
    }
    virMutexUnlock(&test->lock);

    return 0;

415
 error:
416 417 418
    if (freecb)
        (freecb)(opaque);
    VIR_FREE(item);
419 420 421
    return -1;
}

422 423 424 425 426 427 428
void *
qemuMonitorTestItemGetPrivateData(qemuMonitorTestItemPtr item)
{
    return item ? item->opaque : NULL;
}


429 430 431 432 433
typedef struct _qemuMonitorTestCommandArgs qemuMonitorTestCommandArgs;
typedef qemuMonitorTestCommandArgs *qemuMonitorTestCommandArgsPtr;
struct _qemuMonitorTestCommandArgs {
    char *argname;
    char *argval;
434 435 436
};


437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
struct qemuMonitorTestHandlerData {
    char *command_name;
    char *response;
    size_t nargs;
    qemuMonitorTestCommandArgsPtr args;
};

static void
qemuMonitorTestHandlerDataFree(void *opaque)
{
    struct qemuMonitorTestHandlerData *data = opaque;
    size_t i;

    if (!data)
        return;

    for (i = 0; i < data->nargs; i++) {
        VIR_FREE(data->args[i].argname);
        VIR_FREE(data->args[i].argval);
    }

    VIR_FREE(data->command_name);
    VIR_FREE(data->response);
    VIR_FREE(data->args);
    VIR_FREE(data);
}

464 465 466 467 468
static int
qemuMonitorTestProcessCommandDefault(qemuMonitorTestPtr test,
                                     qemuMonitorTestItemPtr item,
                                     const char *cmdstr)
{
469
    struct qemuMonitorTestHandlerData *data = item->opaque;
470 471 472 473 474 475
    virJSONValuePtr val = NULL;
    char *cmdcopy = NULL;
    const char *cmdname;
    char *tmp;
    int ret = -1;

476
    if (test->agent || test->json) {
477 478 479 480
        if (!(val = virJSONValueFromString(cmdstr)))
            return -1;

        if (!(cmdname = virJSONValueObjectGetString(val, "execute"))) {
481
            ret = qemuMonitorReportError(test, "Missing command name in %s", cmdstr);
482 483 484 485 486 487 488 489 490
            goto cleanup;
        }
    } else {
        if (VIR_STRDUP(cmdcopy, cmdstr) < 0)
            return -1;

        cmdname = cmdcopy;

        if (!(tmp = strchr(cmdcopy, ' '))) {
491 492 493
            ret = qemuMonitorReportError(test,
                                         "Cannot find command name in '%s'",
                                         cmdstr);
494 495 496 497 498
            goto cleanup;
        }
        *tmp = '\0';
    }

499
    if (data->command_name && STRNEQ(data->command_name, cmdname))
500 501 502 503
        ret = qemuMonitorTestAddUnexpectedErrorResponse(test);
    else
        ret = qemuMonitorTestAddReponse(test, data->response);

504
 cleanup:
505 506 507 508 509 510 511 512 513 514 515
    VIR_FREE(cmdcopy);
    virJSONValueFree(val);
    return ret;
}


int
qemuMonitorTestAddItem(qemuMonitorTestPtr test,
                       const char *command_name,
                       const char *response)
{
516
    struct qemuMonitorTestHandlerData *data;
517 518 519 520

    if (VIR_ALLOC(data) < 0)
        return -1;

521 522 523 524 525
    if (VIR_STRDUP(data->command_name, command_name) < 0 ||
        VIR_STRDUP(data->response, response) < 0) {
        qemuMonitorTestHandlerDataFree(data);
        return -1;
    }
526 527 528

    return qemuMonitorTestAddHandler(test,
                                     qemuMonitorTestProcessCommandDefault,
529
                                     data, qemuMonitorTestHandlerDataFree);
530 531
}

532

533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
static int
qemuMonitorTestProcessGuestAgentSync(qemuMonitorTestPtr test,
                                     qemuMonitorTestItemPtr item ATTRIBUTE_UNUSED,
                                     const char *cmdstr)
{
    virJSONValuePtr val = NULL;
    virJSONValuePtr args;
    unsigned long long id;
    const char *cmdname;
    char *retmsg = NULL;
    int ret = -1;

    if (!(val = virJSONValueFromString(cmdstr)))
        return -1;

    if (!(cmdname = virJSONValueObjectGetString(val, "execute"))) {
549
        ret = qemuMonitorReportError(test, "Missing guest-sync command name");
550 551 552 553 554 555 556 557 558
        goto cleanup;
    }

    if (STRNEQ(cmdname, "guest-sync")) {
        ret = qemuMonitorTestAddUnexpectedErrorResponse(test);
        goto cleanup;
    }

    if (!(args = virJSONValueObjectGet(val, "arguments"))) {
559
        ret = qemuMonitorReportError(test, "Missing arguments for guest-sync");
560 561 562 563
        goto cleanup;
    }

    if (virJSONValueObjectGetNumberUlong(args, "id", &id)) {
564
        ret = qemuMonitorReportError(test, "Missing id for guest sync");
565 566 567 568 569 570 571 572 573
        goto cleanup;
    }

    if (virAsprintf(&retmsg, "{\"return\":%llu}", id) < 0)
        goto cleanup;


    ret = qemuMonitorTestAddReponse(test, retmsg);

574
 cleanup:
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
    virJSONValueFree(val);
    VIR_FREE(retmsg);
    return ret;
}


int
qemuMonitorTestAddAgentSyncResponse(qemuMonitorTestPtr test)
{
    if (!test->agent) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       "This test is not an agent test");
        return -1;
    }

    return qemuMonitorTestAddHandler(test,
                                     qemuMonitorTestProcessGuestAgentSync,
                                     NULL, NULL);
}


596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
static int
qemuMonitorTestProcessCommandWithArgs(qemuMonitorTestPtr test,
                                      qemuMonitorTestItemPtr item,
                                      const char *cmdstr)
{
    struct qemuMonitorTestHandlerData *data = item->opaque;
    virJSONValuePtr val = NULL;
    virJSONValuePtr args;
    virJSONValuePtr argobj;
    char *argstr = NULL;
    const char *cmdname;
    size_t i;
    int ret = -1;

    if (!(val = virJSONValueFromString(cmdstr)))
        return -1;

    if (!(cmdname = virJSONValueObjectGetString(val, "execute"))) {
        ret = qemuMonitorReportError(test, "Missing command name in %s", cmdstr);
        goto cleanup;
    }

618 619
    if (data->command_name &&
        STRNEQ(data->command_name, cmdname)) {
620 621 622 623 624 625 626
        ret = qemuMonitorTestAddUnexpectedErrorResponse(test);
        goto cleanup;
    }

    if (!(args = virJSONValueObjectGet(val, "arguments"))) {
        ret = qemuMonitorReportError(test,
                                     "Missing arguments section for command '%s'",
627
                                     NULLSTR(data->command_name));
628 629 630 631 632 633 634 635 636
        goto cleanup;
    }

    /* validate the args */
    for (i = 0; i < data->nargs; i++) {
        qemuMonitorTestCommandArgsPtr arg = &data->args[i];
        if (!(argobj = virJSONValueObjectGet(args, arg->argname))) {
            ret = qemuMonitorReportError(test,
                                         "Missing argument '%s' for command '%s'",
637 638
                                         arg->argname,
                                         NULLSTR(data->command_name));
639 640 641 642 643 644 645 646 647 648 649 650 651
            goto cleanup;
        }

        /* convert the argument to string */
        if (!(argstr = virJSONValueToString(argobj, false)))
            goto cleanup;

        /* verify that the argument value is expected */
        if (STRNEQ(argstr, arg->argval)) {
            ret = qemuMonitorReportError(test,
                                         "Invalid value of argument '%s' "
                                         "of command '%s': "
                                         "expected '%s' got '%s'",
652 653
                                         arg->argname,
                                         NULLSTR(data->command_name),
654 655 656 657 658 659 660 661 662 663
                                         arg->argval, argstr);
            goto cleanup;
        }

        VIR_FREE(argstr);
    }

    /* arguments checked out, return the response */
    ret = qemuMonitorTestAddReponse(test, data->response);

664
 cleanup:
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
    VIR_FREE(argstr);
    virJSONValueFree(val);
    return ret;
}


/* this allows to add a responder that is able to check
 * a (shallow) structure of arguments for a command */
int
qemuMonitorTestAddItemParams(qemuMonitorTestPtr test,
                             const char *cmdname,
                             const char *response,
                             ...)
{
    struct qemuMonitorTestHandlerData *data;
    const char *argname;
    const char *argval;
    va_list args;

    va_start(args, response);

    if (VIR_ALLOC(data) < 0)
687
        goto error;
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716

    if (VIR_STRDUP(data->command_name, cmdname) < 0 ||
        VIR_STRDUP(data->response, response) < 0)
        goto error;

    while ((argname = va_arg(args, char *))) {
        size_t i;
        if (!(argval = va_arg(args, char *))) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "Missing argument value for argument '%s'",
                           argname);
            goto error;
        }

        i = data->nargs;
        if (VIR_EXPAND_N(data->args, data->nargs, 1))
            goto error;

        if (VIR_STRDUP(data->args[i].argname, argname) < 0 ||
            VIR_STRDUP(data->args[i].argval, argval) < 0)
            goto error;
    }

    va_end(args);

    return qemuMonitorTestAddHandler(test,
                                     qemuMonitorTestProcessCommandWithArgs,
                                     data, qemuMonitorTestHandlerDataFree);

717
 error:
718 719 720 721 722 723
    va_end(args);
    qemuMonitorTestHandlerDataFree(data);
    return -1;
}


724 725
static void
qemuMonitorTestEOFNotify(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
726 727
                         virDomainObjPtr vm ATTRIBUTE_UNUSED,
                         void *opaque ATTRIBUTE_UNUSED)
728 729 730
{
}

731 732 733

static void
qemuMonitorTestErrorNotify(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
734 735
                           virDomainObjPtr vm ATTRIBUTE_UNUSED,
                           void *opaque ATTRIBUTE_UNUSED)
736 737 738 739
{
}


740
static qemuMonitorCallbacks qemuMonitorTestCallbacks = {
741 742
    .eofNotify = qemuMonitorTestEOFNotify,
    .errorNotify = qemuMonitorTestErrorNotify,
743
    .domainDeviceDeleted = qemuProcessHandleDeviceDeleted,
744 745
};

746

747 748 749 750 751 752 753 754 755 756 757 758 759
static void
qemuMonitorTestAgentNotify(qemuAgentPtr agent ATTRIBUTE_UNUSED,
                           virDomainObjPtr vm ATTRIBUTE_UNUSED)
{
}


static qemuAgentCallbacks qemuMonitorTestAgentCallbacks = {
    .eofNotify = qemuMonitorTestAgentNotify,
    .errorNotify = qemuMonitorTestAgentNotify,
};


760 761
static qemuMonitorTestPtr
qemuMonitorCommonTestNew(virDomainXMLOptionPtr xmlopt,
762
                         virDomainObjPtr vm,
763
                         virDomainChrSourceDefPtr src)
764
{
G
Guido Günther 已提交
765
    qemuMonitorTestPtr test = NULL;
766 767
    char *path = NULL;
    char *tmpdir_template = NULL;
768

769
    if (VIR_ALLOC(test) < 0)
770
        goto error;
771 772 773 774 775 776 777 778

    if (virMutexInit(&test->lock) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       "Cannot initialize mutex");
        VIR_FREE(test);
        return NULL;
    }

779 780
    if (VIR_STRDUP(tmpdir_template, "/tmp/libvirt_XXXXXX") < 0)
        goto error;
781 782 783 784 785 786 787 788 789 790

    if (!(test->tmpdir = mkdtemp(tmpdir_template))) {
        virReportSystemError(errno, "%s",
                             "Failed to create temporary directory");
        goto error;
    }

    tmpdir_template = NULL;

    if (virAsprintf(&path, "%s/qemumonitorjsontest.sock", test->tmpdir) < 0)
791
        goto error;
792

793 794 795 796 797 798 799 800
    if (vm) {
        virObjectRef(vm);
        test->vm = vm;
    } else {
        test->vm = virDomainObjNew(xmlopt);
        if (!test->vm)
            goto error;
    }
801

802
    if (virNetSocketNewListenUNIX(path, 0700, geteuid(), getegid(),
803 804 805
                                  &test->server) < 0)
        goto error;

806 807 808 809
    memset(src, 0, sizeof(*src));
    src->type = VIR_DOMAIN_CHR_TYPE_UNIX;
    src->data.nix.path = (char *)path;
    src->data.nix.listen = false;
810
    path = NULL;
811 812 813 814

    if (virNetSocketListen(test->server, 1) < 0)
        goto error;

815
 cleanup:
816 817
    return test;

818
 error:
819
    VIR_FREE(path);
820 821 822 823 824 825 826 827 828 829 830
    VIR_FREE(tmpdir_template);
    qemuMonitorTestFree(test);
    test = NULL;
    goto cleanup;

}


static int
qemuMonitorCommonTestInit(qemuMonitorTestPtr test)
{
831 832
    int events = VIR_EVENT_HANDLE_READABLE;

833 834
    if (!test)
        return -1;
835 836 837 838

    if (virNetSocketAccept(test->server, &test->client) < 0)
        goto error;

839
    if (!test->client)
840 841
        goto error;

842 843 844
    if (test->outgoingLength > 0)
        events = VIR_EVENT_HANDLE_WRITABLE;

845
    if (virNetSocketAddIOCallback(test->client,
846
                                  events,
847 848 849 850 851 852 853 854 855 856 857 858 859
                                  qemuMonitorTestIO,
                                  test,
                                  NULL) < 0)
        goto error;

    virMutexLock(&test->lock);
    if (virThreadCreate(&test->thread,
                        true,
                        qemuMonitorTestWorker,
                        test) < 0) {
        virMutexUnlock(&test->lock);
        goto error;
    }
860
    test->started = test->running = true;
861 862
    virMutexUnlock(&test->lock);

863 864
    return 0;

865
 error:
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
    return -1;
}


#define QEMU_JSON_GREETING  "{\"QMP\":"\
                            "   {\"version\":"\
                            "       {\"qemu\":"\
                            "           {\"micro\": 1,"\
                            "            \"minor\": 0,"\
                            "            \"major\": 1"\
                            "           },"\
                            "        \"package\": \"(qemu-kvm-1.0.1)"\
                            "       \"},"\
                            "    \"capabilities\": []"\
                            "   }"\
                            "}"
/* We skip the normal handshake reply of "{\"execute\":\"qmp_capabilities\"}" */

#define QEMU_TEXT_GREETING "QEMU 1.0,1 monitor - type 'help' for more information"

qemuMonitorTestPtr
887 888
qemuMonitorTestNew(bool json,
                   virDomainXMLOptionPtr xmlopt,
889
                   virDomainObjPtr vm,
890 891
                   virQEMUDriverPtr driver,
                   const char *greeting)
892 893 894 895
{
    qemuMonitorTestPtr test = NULL;
    virDomainChrSourceDef src;

896 897
    memset(&src, 0, sizeof(src));

898
    if (!(test = qemuMonitorCommonTestNew(xmlopt, vm, &src)))
899 900 901 902 903 904
        goto error;

    test->json = json;
    if (!(test->mon = qemuMonitorOpen(test->vm,
                                      &src,
                                      json,
905
                                      &qemuMonitorTestCallbacks,
906
                                      driver)))
907 908 909 910
        goto error;

    virObjectLock(test->mon);

911 912 913 914
    if (!greeting)
        greeting = json ? QEMU_JSON_GREETING : QEMU_TEXT_GREETING;

    if (qemuMonitorTestAddReponse(test, greeting) < 0)
915 916 917 918 919 920 921
        goto error;

    if (qemuMonitorCommonTestInit(test) < 0)
        goto error;

    virDomainChrSourceDefClear(&src);

922 923
    return test;

924
 error:
925 926 927 928 929
    virDomainChrSourceDefClear(&src);
    qemuMonitorTestFree(test);
    return NULL;
}

930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

qemuMonitorTestPtr
qemuMonitorTestNewFromFile(const char *fileName,
                           virDomainXMLOptionPtr xmlopt)
{
    qemuMonitorTestPtr test = NULL;
    char *json = NULL;
    char *tmp;
    char *singleReply;

    if (virTestLoadFile(fileName, &json) < 0)
        goto cleanup;

    /* Our JSON parser expects replies to be separated by a newline character.
     * Hence we must preprocess the file a bit. */
    tmp = singleReply = json;
    while ((tmp = strchr(tmp, '\n'))) {
        /* It is safe to touch tmp[1] since all strings ends with '\0'. */
        bool eof = !tmp[1];

        if (*(tmp + 1) != '\n') {
            *tmp = ' ';
            tmp++;
        } else {
            /* Cut off a single reply. */
            *(tmp + 1) = '\0';

            if (test) {
                if (qemuMonitorTestAddItem(test, NULL, singleReply) < 0)
                    goto error;
            } else {
                /* Create new mocked monitor with our greeting */
                if (!(test = qemuMonitorTestNew(true, xmlopt, NULL, NULL, singleReply)))
                    goto error;
            }

            if (!eof) {
                /* Move the @tmp and @singleReply. */
                tmp += 2;
                singleReply = tmp;
            }
        }

        if (eof)
            break;
    }

    if (test && qemuMonitorTestAddItem(test, NULL, singleReply) < 0)
        goto error;

 cleanup:
    VIR_FREE(json);
    return test;

 error:
    qemuMonitorTestFree(test);
    test = NULL;
    goto cleanup;
}


991 992 993 994 995 996
qemuMonitorTestPtr
qemuMonitorTestNewAgent(virDomainXMLOptionPtr xmlopt)
{
    qemuMonitorTestPtr test = NULL;
    virDomainChrSourceDef src;

997 998
    memset(&src, 0, sizeof(src));

999
    if (!(test = qemuMonitorCommonTestNew(xmlopt, NULL, &src)))
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
        goto error;

    if (!(test->agent = qemuAgentOpen(test->vm,
                                      &src,
                                      &qemuMonitorTestAgentCallbacks)))
        goto error;

    virObjectLock(test->agent);

    if (qemuMonitorCommonTestInit(test) < 0)
        goto error;

    virDomainChrSourceDefClear(&src);

    return test;

1016
 error:
1017
    virDomainChrSourceDefClear(&src);
1018
    qemuMonitorTestFree(test);
1019
    return NULL;
1020 1021
}

1022 1023 1024

qemuMonitorPtr
qemuMonitorTestGetMonitor(qemuMonitorTestPtr test)
1025 1026 1027
{
    return test->mon;
}
1028 1029 1030 1031 1032 1033 1034


qemuAgentPtr
qemuMonitorTestGetAgent(qemuMonitorTestPtr test)
{
    return test->agent;
}