qemumonitortestutils.c 15.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 27 28
 * <http://www.gnu.org/licenses/>.
 *
 */

#include <config.h>

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

#include "qemumonitortestutils.h"

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

#define VIR_FROM_THIS VIR_FROM_NONE

struct _qemuMonitorTestItem {
40 41 42
    qemuMonitorTestResponseCallback cb;
    void *opaque;
    virFreeCallback freecb;
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
};

struct _qemuMonitorTest {
    virMutex lock;
    virThread thread;

    bool json;
    bool quit;
    bool running;

    char *incoming;
    size_t incomingLength;
    size_t incomingCapacity;

    char *outgoing;
    size_t outgoingLength;
    size_t outgoingCapacity;

    virNetSocketPtr server;
    virNetSocketPtr client;

    qemuMonitorPtr mon;

66 67
    char *tmpdir;

68 69 70 71 72 73 74
    size_t nitems;
    qemuMonitorTestItemPtr *items;

    virDomainObjPtr vm;
};


75 76 77 78 79 80 81 82 83 84 85
static void
qemuMonitorTestItemFree(qemuMonitorTestItemPtr item)
{
    if (!item)
        return;

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

    VIR_FREE(item);
}
86

87

88
/*
E
Eric Blake 已提交
89
 * Appends data for a reply to the outgoing buffer
90
 */
91
int
92 93
qemuMonitorTestAddReponse(qemuMonitorTestPtr test,
                          const char *response)
94 95 96 97 98 99
{
    size_t want = strlen(response) + 2;
    size_t have = test->outgoingCapacity - test->outgoingLength;

    if (have < want) {
        size_t need = want - have;
100
        if (VIR_EXPAND_N(test->outgoing, test->outgoingCapacity, need) < 0)
101 102 103 104
            return -1;
    }

    want -= 2;
105 106
    memcpy(test->outgoing + test->outgoingLength, response, want);
    memcpy(test->outgoing + test->outgoingLength + want, "\r\n", 2);
107 108 109 110 111
    test->outgoingLength += want + 2;
    return 0;
}


112
static int
113
qemuMonitorTestAddUnexpectedErrorResponse(qemuMonitorTestPtr test)
114
{
115 116 117 118 119
    if (test->json) {
        return qemuMonitorTestAddReponse(test,
                                         "{ \"error\": "
                                         " { \"desc\": \"Unexpected command\", "
                                         "   \"class\": \"UnexpectedCommand\" } }");
120
    } else {
121
        return qemuMonitorTestAddReponse(test, "unexpected command");
122 123 124 125
    }
}


126
static int
127 128
qemuMonitorTestProcessCommand(qemuMonitorTestPtr test,
                              const char *cmdstr)
129
{
130
    int ret;
131

132 133
    if (test->nitems == 0) {
        return qemuMonitorTestAddUnexpectedErrorResponse(test);
134
    } else {
135 136 137 138 139
        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;
140 141 142 143 144
    }

    return ret;
}

145

146 147 148
/*
 * Handles read/write of monitor data on the monitor server side
 */
149 150 151 152
static void
qemuMonitorTestIO(virNetSocketPtr sock,
                  int events,
                  void *opaque)
153 154 155 156 157
{
    qemuMonitorTestPtr test = opaque;
    bool err = false;

    virMutexLock(&test->lock);
158 159 160 161
    if (test->quit) {
        virMutexUnlock(&test->lock);
        return;
    }
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
    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;
204
        while ((t2 = strstr(t1, "\n"))) {
205 206 207 208 209 210 211
            *t2 = '\0';

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

212
            t1 = t2 + 1;
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
        }
        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;

cleanup:
    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);
}


246 247
static void
qemuMonitorTestWorker(void *opaque)
248 249 250 251 252 253 254 255 256
{
    qemuMonitorTestPtr test = opaque;

    virMutexLock(&test->lock);

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

        if (virEventRunDefaultImpl() < 0) {
257
            virMutexLock(&test->lock);
258 259 260 261 262 263 264 265 266 267 268 269 270
            test->quit = true;
            break;
        }

        virMutexLock(&test->lock);
    }

    test->running = false;

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

271

272
static void
273 274
qemuMonitorTestFreeTimer(int timer ATTRIBUTE_UNUSED,
                         void *opaque ATTRIBUTE_UNUSED)
275 276 277 278 279
{
    /* nothing to be done here */
}


280 281
void
qemuMonitorTestFree(qemuMonitorTestPtr test)
282 283
{
    size_t i;
284
    int timer = -1;
285 286 287 288 289 290 291

    if (!test)
        return;

    virMutexLock(&test->lock);
    if (test->running) {
        test->quit = true;
292 293
        /* HACK: Add a dummy timeout to break event loop */
        timer = virEventAddTimeout(0, qemuMonitorTestFreeTimer, NULL, NULL);
294 295 296 297 298 299 300 301 302 303 304
    }
    virMutexUnlock(&test->lock);

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

    virObjectUnref(test->server);
    if (test->mon) {
305
        virObjectUnlock(test->mon);
306 307 308 309 310
        qemuMonitorClose(test->mon);
    }

    virObjectUnref(test->vm);

311 312
    if (test->running)
        virThreadJoin(&test->thread);
313

314 315 316
    if (timer != -1)
        virEventRemoveTimeout(timer);

317 318 319
    VIR_FREE(test->incoming);
    VIR_FREE(test->outgoing);

320
    for (i = 0; i < test->nitems; i++)
321 322 323
        qemuMonitorTestItemFree(test->items[i]);
    VIR_FREE(test->items);

324 325 326 327 328
    if (test->tmpdir && rmdir(test->tmpdir) < 0)
        VIR_WARN("Failed to remove tempdir: %s", strerror(errno));

    VIR_FREE(test->tmpdir);

329 330 331 332 333 334
    virMutexDestroy(&test->lock);
    VIR_FREE(test);
}


int
335 336 337 338
qemuMonitorTestAddHandler(qemuMonitorTestPtr test,
                          qemuMonitorTestResponseCallback cb,
                          void *opaque,
                          virFreeCallback freecb)
339 340 341 342
{
    qemuMonitorTestItemPtr item;

    if (VIR_ALLOC(item) < 0)
343
        goto error;
344

345 346 347
    item->cb = cb;
    item->freecb = freecb;
    item->opaque = opaque;
348 349

    virMutexLock(&test->lock);
350
    if (VIR_APPEND_ELEMENT(test->items, test->nitems, item) < 0) {
351
        virMutexUnlock(&test->lock);
352
        goto error;
353 354 355 356 357
    }
    virMutexUnlock(&test->lock);

    return 0;

358
error:
359 360 361
    if (freecb)
        (freecb)(opaque);
    VIR_FREE(item);
362 363 364
    return -1;
}

365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
void *
qemuMonitorTestItemGetPrivateData(qemuMonitorTestItemPtr item)
{
    return item ? item->opaque : NULL;
}


struct qemuMonitorTestDefaultHandlerData {
    const char *command_name;
    const char *response;
};


static int
qemuMonitorTestProcessCommandDefault(qemuMonitorTestPtr test,
                                     qemuMonitorTestItemPtr item,
                                     const char *cmdstr)
{
    struct qemuMonitorTestDefaultHandlerData *data = item->opaque;
    virJSONValuePtr val = NULL;
    char *cmdcopy = NULL;
    const char *cmdname;
    char *tmp;
    int ret = -1;

    if (test->json) {
        if (!(val = virJSONValueFromString(cmdstr)))
            return -1;

        if (!(cmdname = virJSONValueObjectGetString(val, "execute"))) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "Missing command name in %s", cmdstr);
            goto cleanup;
        }
    } else {
        if (VIR_STRDUP(cmdcopy, cmdstr) < 0)
            return -1;

        cmdname = cmdcopy;

        if (!(tmp = strchr(cmdcopy, ' '))) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "Cannot find command name in '%s'", cmdstr);
            goto cleanup;
        }
        *tmp = '\0';
    }

    if (STRNEQ(data->command_name, cmdname))
        ret = qemuMonitorTestAddUnexpectedErrorResponse(test);
    else
        ret = qemuMonitorTestAddReponse(test, data->response);

cleanup:
    VIR_FREE(cmdcopy);
    virJSONValueFree(val);
    return ret;
}


int
qemuMonitorTestAddItem(qemuMonitorTestPtr test,
                       const char *command_name,
                       const char *response)
{
    struct qemuMonitorTestDefaultHandlerData *data;

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

    data->command_name = command_name;
    data->response = response;

    return qemuMonitorTestAddHandler(test,
                                     qemuMonitorTestProcessCommandDefault,
                                     data,
                                     free);
}

444

445 446 447
static void
qemuMonitorTestEOFNotify(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                         virDomainObjPtr vm ATTRIBUTE_UNUSED)
448 449 450
{
}

451 452 453 454

static void
qemuMonitorTestErrorNotify(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                           virDomainObjPtr vm ATTRIBUTE_UNUSED)
455 456 457 458
{
}


459
static qemuMonitorCallbacks qemuMonitorTestCallbacks = {
460 461 462 463
    .eofNotify = qemuMonitorTestEOFNotify,
    .errorNotify = qemuMonitorTestErrorNotify,
};

464

465 466 467
static qemuMonitorTestPtr
qemuMonitorCommonTestNew(virDomainXMLOptionPtr xmlopt,
                         virDomainChrSourceDefPtr src)
468
{
G
Guido Günther 已提交
469
    qemuMonitorTestPtr test = NULL;
470 471
    char *path = NULL;
    char *tmpdir_template = NULL;
472

473
    if (VIR_ALLOC(test) < 0)
474
        goto error;
475 476 477 478 479 480 481 482

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

483 484
    if (VIR_STRDUP(tmpdir_template, "/tmp/libvirt_XXXXXX") < 0)
        goto error;
485 486 487 488 489 490 491 492 493 494

    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)
495
        goto error;
496

497
    if (!(test->vm = virDomainObjNew(xmlopt)))
498 499
        goto error;

500
    if (virNetSocketNewListenUNIX(path, 0700, getuid(), getgid(),
501 502 503
                                  &test->server) < 0)
        goto error;

504 505 506 507
    memset(src, 0, sizeof(*src));
    src->type = VIR_DOMAIN_CHR_TYPE_UNIX;
    src->data.nix.path = (char *)path;
    src->data.nix.listen = false;
508 509 510 511

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

512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
cleanup:
    return test;

error:
    VIR_FREE(tmpdir_template);
    qemuMonitorTestFree(test);
    test = NULL;
    goto cleanup;

}


static int
qemuMonitorCommonTestInit(qemuMonitorTestPtr test)
{
527 528
    int events = VIR_EVENT_HANDLE_READABLE;

529 530
    if (!test)
        return -1;
531 532 533 534

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

535
    if (!test->client)
536 537
        goto error;

538 539 540
    if (test->outgoingLength > 0)
        events = VIR_EVENT_HANDLE_WRITABLE;

541
    if (virNetSocketAddIOCallback(test->client,
542
                                  events,
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
                                  qemuMonitorTestIO,
                                  test,
                                  NULL) < 0)
        goto error;

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

559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
    return 0;

error:
    qemuMonitorTestFree(test);
    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
qemuMonitorTestNew(bool json, virDomainXMLOptionPtr xmlopt)
{
    qemuMonitorTestPtr test = NULL;
    virDomainChrSourceDef src;

    if (!(test = qemuMonitorCommonTestNew(xmlopt, &src)))
        goto error;

    test->json = json;
    if (!(test->mon = qemuMonitorOpen(test->vm,
                                      &src,
                                      json,
596
                                      &qemuMonitorTestCallbacks)))
597 598 599 600 601 602 603 604 605 606 607 608 609 610
        goto error;

    virObjectLock(test->mon);

    if (qemuMonitorTestAddReponse(test, json ?
                                  QEMU_JSON_GREETING :
                                  QEMU_TEXT_GREETING) < 0)
        goto error;

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

    virDomainChrSourceDefClear(&src);

611 612 613 614
    return test;

error:
    qemuMonitorTestFree(test);
615
    return NULL;
616 617
}

618 619 620

qemuMonitorPtr
qemuMonitorTestGetMonitor(qemuMonitorTestPtr test)
621 622 623
{
    return test->mon;
}