uml_driver.c 72.2 KB
Newer Older
1 2 3
/*
 * uml_driver.c: core driver methods for managing UML guests
 *
4
 * Copyright (C) 2006-2012 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2006-2008 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 32 33 34 35 36 37 38 39 40 41 42 43 44
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include <sys/types.h>
#include <sys/poll.h>
#include <limits.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/utsname.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <signal.h>
#include <paths.h>
#include <pwd.h>
#include <stdio.h>
#include <sys/wait.h>
#include <sys/ioctl.h>
#include <sys/inotify.h>
45
#include <sys/un.h>
46 47 48 49 50 51 52 53 54 55 56

#include "uml_driver.h"
#include "uml_conf.h"
#include "buf.h"
#include "util.h"
#include "nodeinfo.h"
#include "stats_linux.h"
#include "capabilities.h"
#include "memory.h"
#include "uuid.h"
#include "domain_conf.h"
57
#include "domain_audit.h"
58
#include "datatypes.h"
59
#include "logging.h"
60
#include "domain_nwfilter.h"
E
Eric Blake 已提交
61
#include "virfile.h"
62
#include "fdstream.h"
63
#include "configmake.h"
64
#include "virnetdevtap.h"
65
#include "virnodesuspend.h"
66
#include "virprocess.h"
M
Martin Kletzander 已提交
67
#include "viruri.h"
68

69 70
#define VIR_FROM_THIS VIR_FROM_UML

71
/* For storing short-lived temporary files. */
72
#define TEMPDIR LOCALSTATEDIR "/cache/libvirt"
73

74 75 76 77 78 79 80
typedef struct _umlDomainObjPrivate umlDomainObjPrivate;
typedef umlDomainObjPrivate *umlDomainObjPrivatePtr;
struct _umlDomainObjPrivate {
    int monitor;
    int monitorWatch;
};

81 82 83 84 85 86 87 88 89 90
static int umlProcessAutoDestroyInit(struct uml_driver *driver);
static void umlProcessAutoDestroyRun(struct uml_driver *driver,
                                     virConnectPtr conn);
static void umlProcessAutoDestroyShutdown(struct uml_driver *driver);
static int umlProcessAutoDestroyAdd(struct uml_driver *driver,
                                    virDomainObjPtr vm,
                                    virConnectPtr conn);
static int umlProcessAutoDestroyRemove(struct uml_driver *driver,
                                       virDomainObjPtr vm);

91

92 93
static int umlShutdown(void);

94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
static void *umlDomainObjPrivateAlloc(void)
{
    umlDomainObjPrivatePtr priv;

    if (VIR_ALLOC(priv) < 0)
        return NULL;

    priv->monitor = -1;
    priv->monitorWatch = -1;

    return priv;
}

static void umlDomainObjPrivateFree(void *data)
{
    umlDomainObjPrivatePtr priv = data;

    VIR_FREE(priv);
}


115 116
static void umlDriverLock(struct uml_driver *driver)
{
117
    virMutexLock(&driver->lock);
118 119 120
}
static void umlDriverUnlock(struct uml_driver *driver)
{
121
    virMutexUnlock(&driver->lock);
122 123
}

124

125
static int umlOpenMonitor(struct uml_driver *driver,
126
                          virDomainObjPtr vm);
127
static int umlReadPidFile(struct uml_driver *driver,
128
                          virDomainObjPtr vm);
129 130
static void umlDomainEventQueue(struct uml_driver *driver,
                                virDomainEventPtr event);
131 132 133

static int umlStartVMDaemon(virConnectPtr conn,
                            struct uml_driver *driver,
134 135
                            virDomainObjPtr vm,
                            bool autoDestroy);
136

137
static void umlShutdownVMDaemon(struct uml_driver *driver,
J
Jiri Denemark 已提交
138 139
                                virDomainObjPtr vm,
                                virDomainShutoffReason reason);
140 141


142 143 144 145
static int umlMonitorCommand(const struct uml_driver *driver,
                             const virDomainObjPtr vm,
                             const char *cmd,
                             char **reply);
146 147 148

static struct uml_driver *uml_driver = NULL;

149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
static int
umlVMFilterRebuild(virConnectPtr conn ATTRIBUTE_UNUSED,
                   virHashIterator iter, void *data)
{
    virHashForEach(uml_driver->domains.objs, iter, data);

    return 0;
}

static void
umlVMDriverLock(void)
{
    umlDriverLock(uml_driver);
}

static void
umlVMDriverUnlock(void)
{
    umlDriverUnlock(uml_driver);
}

static virNWFilterCallbackDriver umlCallbackDriver = {
    .name = "UML",
    .vmFilterRebuild = umlVMFilterRebuild,
    .vmDriverLock = umlVMDriverLock,
    .vmDriverUnlock = umlVMDriverUnlock,
};

177 178 179 180 181 182
struct umlAutostartData {
    struct uml_driver *driver;
    virConnectPtr conn;
};

static void
183
umlAutostartDomain(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
184 185 186 187 188 189
{
    virDomainObjPtr vm = payload;
    const struct umlAutostartData *data = opaque;

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
190
        !virDomainObjIsActive(vm)) {
191
        int ret;
192
        virResetLastError();
193
        ret = umlStartVMDaemon(data->conn, data->driver, vm, false);
194 195
        virDomainAuditStart(vm, "booted", ret >= 0);
        if (ret < 0) {
196 197
            virErrorPtr err = virGetLastError();
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
198
                      vm->def->name, err ? err->message : _("unknown error"));
199 200 201 202 203 204 205
        } else {
            virDomainEventPtr event =
                virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);
            if (event)
                umlDomainEventQueue(data->driver, event);
206 207 208 209
        }
    }
    virDomainObjUnlock(vm);
}
210 211 212

static void
umlAutostartConfigs(struct uml_driver *driver) {
213 214 215 216 217
    /* XXX: Figure out a better way todo this. The domain
     * startup code needs a connection handle in order
     * to lookup the bridge associated with a virtual
     * network
     */
218 219 220
    virConnectPtr conn = virConnectOpen(driver->privileged ?
                                        "uml:///system" :
                                        "uml:///session");
221
    /* Ignoring NULL conn which is mostly harmless here */
222

223 224
    struct umlAutostartData data = { driver, conn };

225
    umlDriverLock(driver);
226
    virHashForEach(driver->domains.objs, umlAutostartDomain, &data);
227
    umlDriverUnlock(driver);
228

229 230
    if (conn)
        virConnectClose(conn);
231 232 233 234
}


static int
235
umlIdentifyOneChrPTY(struct uml_driver *driver,
236 237 238 239 240 241 242
                     virDomainObjPtr dom,
                     virDomainChrDefPtr def,
                     const char *dev)
{
    char *cmd;
    char *res = NULL;
    int retries = 0;
243
    if (virAsprintf(&cmd, "config %s%d", dev, def->target.port) < 0) {
244
        virReportOOMError();
245 246 247
        return -1;
    }
requery:
248
    if (umlMonitorCommand(driver, dom, cmd, &res) < 0)
249
        return -1;
250

251
    if (res && STRPREFIX(res, "pts:")) {
252 253
        VIR_FREE(def->source.data.file.path);
        if ((def->source.data.file.path = strdup(res + 4)) == NULL) {
254
            virReportOOMError();
255 256 257 258
            VIR_FREE(res);
            VIR_FREE(cmd);
            return -1;
        }
259
    } else if (!res || STRPREFIX(res, "pts")) {
260
        /* It can take a while to startup, so retry for
J
Ján Tomko 已提交
261
           up to 5 seconds */
262 263 264 265 266 267 268 269 270 271 272 273 274 275
        /* XXX should do this in a better non-blocking
           way somehow ...perhaps register a timer */
        if (retries++ < 50) {
            usleep(1000*10);
            goto requery;
        }
    }

    VIR_FREE(cmd);
    VIR_FREE(res);
    return 0;
}

static int
276
umlIdentifyChrPTY(struct uml_driver *driver,
277 278 279 280
                  virDomainObjPtr dom)
{
    int i;

281
    for (i = 0 ; i < dom->def->nconsoles; i++)
282
        if (dom->def->consoles[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY)
283
        if (umlIdentifyOneChrPTY(driver, dom,
284
                                 dom->def->consoles[i], "con") < 0)
285 286 287
            return -1;

    for (i = 0 ; i < dom->def->nserials; i++)
288
        if (dom->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY &&
289
            umlIdentifyOneChrPTY(driver, dom,
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
                                 dom->def->serials[i], "ssl") < 0)
            return -1;

    return 0;
}

static void
umlInotifyEvent(int watch,
                int fd,
                int events ATTRIBUTE_UNUSED,
                void *data)
{
    char buf[1024];
    struct inotify_event *e;
    int got;
    char *tmp, *name;
    struct uml_driver *driver = data;
    virDomainObjPtr dom;
308
    virDomainEventPtr event = NULL;
309

310
    umlDriverLock(driver);
311
    if (watch != driver->inotifyWatch)
312
        goto cleanup;
313 314 315 316 317 318

reread:
    got = read(fd, buf, sizeof(buf));
    if (got == -1) {
        if (errno == EINTR)
            goto reread;
319
        goto cleanup;
320 321 322 323 324
    }

    tmp = buf;
    while (got) {
        if (got < sizeof(struct inotify_event))
325
            goto cleanup; /* bad */
326 327 328 329 330 331

        e = (struct inotify_event *)tmp;
        tmp += sizeof(struct inotify_event);
        got -= sizeof(struct inotify_event);

        if (got < e->len)
332
            goto cleanup;
333 334 335 336 337 338 339 340 341 342 343 344 345

        tmp += e->len;
        got -= e->len;

        name = (char *)&(e->name);

        dom = virDomainFindByName(&driver->domains, name);

        if (!dom) {
            continue;
        }

        if (e->mask & IN_DELETE) {
346
            VIR_DEBUG("Got inotify domain shutdown '%s'", name);
D
Daniel P. Berrange 已提交
347
            if (!virDomainObjIsActive(dom)) {
348
                virDomainObjUnlock(dom);
349 350 351
                continue;
            }

352
            umlShutdownVMDaemon(driver, dom, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
353
            virDomainAuditStop(dom, "shutdown");
354 355 356
            event = virDomainEventNewFromObj(dom,
                                             VIR_DOMAIN_EVENT_STOPPED,
                                             VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
357 358 359 360 361
            if (!dom->persistent) {
                virDomainRemoveInactive(&driver->domains,
                                        dom);
                dom = NULL;
            }
362
        } else if (e->mask & (IN_CREATE | IN_MODIFY)) {
363
            VIR_DEBUG("Got inotify domain startup '%s'", name);
D
Daniel P. Berrange 已提交
364
            if (virDomainObjIsActive(dom)) {
365
                virDomainObjUnlock(dom);
366 367 368
                continue;
            }

369
            if (umlReadPidFile(driver, dom) < 0) {
370
                virDomainObjUnlock(dom);
371 372 373 374
                continue;
            }

            dom->def->id = driver->nextvmid++;
375 376 377 378 379

            if (!driver->nactive && driver->inhibitCallback)
                driver->inhibitCallback(true, driver->inhibitOpaque);
            driver->nactive++;

J
Jiri Denemark 已提交
380 381
            virDomainObjSetState(dom, VIR_DOMAIN_RUNNING,
                                 VIR_DOMAIN_RUNNING_BOOTED);
382

383
            if (umlOpenMonitor(driver, dom) < 0) {
384
                VIR_WARN("Could not open monitor for new domain");
385
                umlShutdownVMDaemon(driver, dom,
J
Jiri Denemark 已提交
386
                                    VIR_DOMAIN_SHUTOFF_FAILED);
387
                virDomainAuditStop(dom, "failed");
388 389 390
                event = virDomainEventNewFromObj(dom,
                                                 VIR_DOMAIN_EVENT_STOPPED,
                                                 VIR_DOMAIN_EVENT_STOPPED_FAILED);
391 392 393 394 395
                if (!dom->persistent) {
                    virDomainRemoveInactive(&driver->domains,
                                            dom);
                    dom = NULL;
                }
396
            } else if (umlIdentifyChrPTY(driver, dom) < 0) {
397
                VIR_WARN("Could not identify character devices for new domain");
398
                umlShutdownVMDaemon(driver, dom,
J
Jiri Denemark 已提交
399
                                    VIR_DOMAIN_SHUTOFF_FAILED);
400
                virDomainAuditStop(dom, "failed");
401 402 403
                event = virDomainEventNewFromObj(dom,
                                                 VIR_DOMAIN_EVENT_STOPPED,
                                                 VIR_DOMAIN_EVENT_STOPPED_FAILED);
404 405 406 407 408
                if (!dom->persistent) {
                    virDomainRemoveInactive(&driver->domains,
                                            dom);
                    dom = NULL;
                }
409
            }
410
        }
411 412
        if (dom)
            virDomainObjUnlock(dom);
413
    }
414 415

cleanup:
416 417
    if (event)
        umlDomainEventQueue(driver, event);
418
    umlDriverUnlock(driver);
419 420 421 422 423 424 425 426
}

/**
 * umlStartup:
 *
 * Initialization function for the Uml daemon
 */
static int
427 428 429
umlStartup(bool privileged,
           virStateInhibitCallback callback,
           void *opaque)
430
{
431
    char *base = NULL;
432
    char *userdir = NULL;
433 434 435 436

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

437
    uml_driver->privileged = privileged;
438 439
    uml_driver->inhibitCallback = callback;
    uml_driver->inhibitOpaque = opaque;
440

441 442 443 444
    if (virMutexInit(&uml_driver->lock) < 0) {
        VIR_FREE(uml_driver);
        return -1;
    }
445 446
    umlDriverLock(uml_driver);

447 448
    /* Don't have a dom0 so start from 1 */
    uml_driver->nextvmid = 1;
449
    uml_driver->inotifyWatch = -1;
450

451 452 453
    if (virDomainObjListInit(&uml_driver->domains) < 0)
        goto error;

454
    uml_driver->domainEventState = virDomainEventStateNew();
455 456 457
    if (!uml_driver->domainEventState)
        goto error;

458
    userdir = virGetUserDirectory();
459
    if (!userdir)
460
        goto error;
461

462
    if (privileged) {
463
        if (virAsprintf(&uml_driver->logDir,
464
                        "%s/log/libvirt/uml", LOCALSTATEDIR) == -1)
465 466
            goto out_of_memory;

467
        if ((base = strdup(SYSCONFDIR "/libvirt")) == NULL)
468
            goto out_of_memory;
469 470

        if (virAsprintf(&uml_driver->monitorDir,
471
                        "%s/run/libvirt/uml-guest", LOCALSTATEDIR) == -1)
472
            goto out_of_memory;
473
    } else {
474
        base = virGetUserConfigDirectory();
475 476
        if (!base)
            goto error;
477

478
        if (virAsprintf(&uml_driver->logDir,
479
                        "%s/uml/log", base) == -1)
480 481
            goto out_of_memory;

482 483 484 485
        if (virAsprintf(&uml_driver->monitorDir,
                        "%s/.uml", userdir) == -1)
            goto out_of_memory;
    }
486

487
    /* Configuration paths are either $XDG_CONFIG_HOME/libvirt/uml/... (session) or
488 489
     * /etc/libvirt/uml/... (system).
     */
490
    if (virAsprintf(&uml_driver->configDir, "%s/uml", base) == -1)
491 492
        goto out_of_memory;

493
    if (virAsprintf(&uml_driver->autostartDir, "%s/uml/autostart", base) == -1)
494 495 496 497 498 499 500
        goto out_of_memory;

    VIR_FREE(base);

    if ((uml_driver->caps = umlCapsInit()) == NULL)
        goto out_of_memory;

501 502
    uml_driver->caps->privateDataAllocFunc = umlDomainObjPrivateAlloc;
    uml_driver->caps->privateDataFreeFunc = umlDomainObjPrivateFree;
503 504

    if ((uml_driver->inotifyFD = inotify_init()) < 0) {
505
        VIR_ERROR(_("cannot initialize inotify"));
506
        goto error;
507 508
    }

509
    if (virFileMakePath(uml_driver->monitorDir) < 0) {
510
        char ebuf[1024];
D
Daniel Veillard 已提交
511
        VIR_ERROR(_("Failed to create monitor directory %s: %s"),
512
                  uml_driver->monitorDir, virStrerror(errno, ebuf, sizeof(ebuf)));
513
        goto error;
514 515
    }

516
    VIR_INFO("Adding inotify watch on %s", uml_driver->monitorDir);
517 518 519
    if (inotify_add_watch(uml_driver->inotifyFD,
                          uml_driver->monitorDir,
                          IN_CREATE | IN_MODIFY | IN_DELETE) < 0) {
520
        goto error;
521 522
    }

523 524
    if ((uml_driver->inotifyWatch =
         virEventAddHandle(uml_driver->inotifyFD, POLLIN,
525 526
                           umlInotifyEvent, uml_driver, NULL)) < 0)
        goto error;
527

528 529 530
    if (umlProcessAutoDestroyInit(uml_driver) < 0)
        goto error;

531
    if (virDomainLoadAllConfigs(uml_driver->caps,
532 533 534
                                &uml_driver->domains,
                                uml_driver->configDir,
                                uml_driver->autostartDir,
M
Matthias Bolte 已提交
535 536
                                0, 1 << VIR_DOMAIN_VIRT_UML,
                                NULL, NULL) < 0)
537 538
        goto error;

539 540
    umlDriverUnlock(uml_driver);

541 542
    umlAutostartConfigs(uml_driver);

543 544
    VIR_FREE(userdir);

545
    virNWFilterRegisterCallbackDriver(&umlCallbackDriver);
546 547
    return 0;

548
out_of_memory:
549
    VIR_ERROR(_("umlStartup: out of memory"));
550 551

error:
552
    VIR_FREE(userdir);
553
    VIR_FREE(base);
554 555
    umlDriverUnlock(uml_driver);
    umlShutdown();
556 557 558
    return -1;
}

559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
static void umlNotifyLoadDomain(virDomainObjPtr vm, int newVM, void *opaque)
{
    struct uml_driver *driver = opaque;

    if (newVM) {
        virDomainEventPtr event =
            virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_DEFINED,
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED);
        if (event)
            umlDomainEventQueue(driver, event);
    }
}


574 575 576 577 578 579 580 581 582 583 584
/**
 * umlReload:
 *
 * Function to restart the Uml daemon, it will recheck the configuration
 * files and update its state and the networking
 */
static int
umlReload(void) {
    if (!uml_driver)
        return 0;

585
    umlDriverLock(uml_driver);
586
    virDomainLoadAllConfigs(uml_driver->caps,
587 588 589
                            &uml_driver->domains,
                            uml_driver->configDir,
                            uml_driver->autostartDir,
M
Matthias Bolte 已提交
590
                            0, 1 << VIR_DOMAIN_VIRT_UML,
591 592
                            umlNotifyLoadDomain, uml_driver);
    umlDriverUnlock(uml_driver);
593 594 595 596 597

    return 0;
}


598
static void
599
umlShutdownOneVM(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
600 601 602 603 604
{
    virDomainObjPtr dom = payload;
    struct uml_driver *driver = opaque;

    virDomainObjLock(dom);
605
    if (virDomainObjIsActive(dom)) {
606
        umlShutdownVMDaemon(driver, dom, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
607 608
        virDomainAuditStop(dom, "shutdown");
    }
609 610 611
    virDomainObjUnlock(dom);
}

612 613 614 615 616 617 618 619 620 621
/**
 * umlShutdown:
 *
 * Shutdown the Uml daemon, it will stop all active domains and networks
 */
static int
umlShutdown(void) {
    if (!uml_driver)
        return -1;

622
    umlDriverLock(uml_driver);
623
    virNWFilterRegisterCallbackDriver(&umlCallbackDriver);
624 625
    if (uml_driver->inotifyWatch != -1)
        virEventRemoveHandle(uml_driver->inotifyWatch);
626
    VIR_FORCE_CLOSE(uml_driver->inotifyFD);
627 628
    virCapabilitiesFree(uml_driver->caps);

629 630 631
    /* shutdown active VMs
     * XXX allow them to stay around & reconnect */
    virHashForEach(uml_driver->domains.objs, umlShutdownOneVM, uml_driver);
632

633
    virDomainObjListDeinit(&uml_driver->domains);
634

635 636
    virDomainEventStateFree(uml_driver->domainEventState);

637 638 639 640 641
    VIR_FREE(uml_driver->logDir);
    VIR_FREE(uml_driver->configDir);
    VIR_FREE(uml_driver->autostartDir);
    VIR_FREE(uml_driver->monitorDir);

642 643
    umlProcessAutoDestroyShutdown(uml_driver);

644
    umlDriverUnlock(uml_driver);
645
    virMutexDestroy(&uml_driver->lock);
646 647 648 649 650 651
    VIR_FREE(uml_driver);

    return 0;
}


652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 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 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
static int umlProcessAutoDestroyInit(struct uml_driver *driver)
{
    if (!(driver->autodestroy = virHashCreate(5, NULL)))
        return -1;

    return 0;
}

struct umlProcessAutoDestroyData {
    struct uml_driver *driver;
    virConnectPtr conn;
};

static void umlProcessAutoDestroyDom(void *payload,
                                     const void *name,
                                     void *opaque)
{
    struct umlProcessAutoDestroyData *data = opaque;
    virConnectPtr conn = payload;
    const char *uuidstr = name;
    unsigned char uuid[VIR_UUID_BUFLEN];
    virDomainObjPtr dom;
    virDomainEventPtr event = NULL;

    VIR_DEBUG("conn=%p uuidstr=%s thisconn=%p", conn, uuidstr, data->conn);

    if (data->conn != conn)
        return;

    if (virUUIDParse(uuidstr, uuid) < 0) {
        VIR_WARN("Failed to parse %s", uuidstr);
        return;
    }

    if (!(dom = virDomainFindByUUID(&data->driver->domains,
                                    uuid))) {
        VIR_DEBUG("No domain object to kill");
        return;
    }

    VIR_DEBUG("Killing domain");
    umlShutdownVMDaemon(data->driver, dom, VIR_DOMAIN_SHUTOFF_DESTROYED);
    virDomainAuditStop(dom, "destroyed");
    event = virDomainEventNewFromObj(dom,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);

    if (dom && !dom->persistent)
        virDomainRemoveInactive(&data->driver->domains, dom);

    if (dom)
        virDomainObjUnlock(dom);
    if (event)
        umlDomainEventQueue(data->driver, event);
    virHashRemoveEntry(data->driver->autodestroy, uuidstr);
}

/*
 * Precondition: driver is locked
 */
static void umlProcessAutoDestroyRun(struct uml_driver *driver, virConnectPtr conn)
{
    struct umlProcessAutoDestroyData data = {
        driver, conn
    };
    VIR_DEBUG("conn=%p", conn);
    virHashForEach(driver->autodestroy, umlProcessAutoDestroyDom, &data);
}

static void umlProcessAutoDestroyShutdown(struct uml_driver *driver)
{
    virHashFree(driver->autodestroy);
}

static int umlProcessAutoDestroyAdd(struct uml_driver *driver,
                                    virDomainObjPtr vm,
                                    virConnectPtr conn)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];
    virUUIDFormat(vm->def->uuid, uuidstr);
    VIR_DEBUG("vm=%s uuid=%s conn=%p", vm->def->name, uuidstr, conn);
    if (virHashAddEntry(driver->autodestroy, uuidstr, conn) < 0)
        return -1;
    return 0;
}

static int umlProcessAutoDestroyRemove(struct uml_driver *driver,
                                       virDomainObjPtr vm)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];
    virUUIDFormat(vm->def->uuid, uuidstr);
    VIR_DEBUG("vm=%s uuid=%s", vm->def->name, uuidstr);
    if (virHashRemoveEntry(driver->autodestroy, uuidstr) < 0)
        return -1;
    return 0;
}


750
static int umlReadPidFile(struct uml_driver *driver,
751 752 753 754 755 756 757 758
                          virDomainObjPtr vm)
{
    int rc = -1;
    FILE *file;
    char *pidfile = NULL;
    int retries = 0;

    vm->pid = -1;
759 760
    if (virAsprintf(&pidfile, "%s/%s/pid",
                    driver->monitorDir, vm->def->name) < 0) {
761
        virReportOOMError();
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
        return -1;
    }

reopen:
    if (!(file = fopen(pidfile, "r"))) {
        if (errno == ENOENT &&
            retries++ < 50) {
            usleep(1000 * 100);
            goto reopen;
        }
        goto cleanup;
    }

    if (fscanf(file, "%d", &vm->pid) != 1) {
        errno = EINVAL;
777
        VIR_FORCE_FCLOSE(file);
778 779 780
        goto cleanup;
    }

781
    if (VIR_FCLOSE(file) < 0)
782 783 784 785 786 787
        goto cleanup;

    rc = 0;

 cleanup:
    if (rc != 0)
788
        virReportSystemError(errno,
789 790
                             _("failed to read pid: %s"),
                             pidfile);
791 792 793 794
    VIR_FREE(pidfile);
    return rc;
}

795
static int umlMonitorAddress(const struct uml_driver *driver,
796 797 798
                             virDomainObjPtr vm,
                             struct sockaddr_un *addr) {
    char *sockname;
C
Chris Lalancette 已提交
799
    int retval = 0;
800

801 802
    if (virAsprintf(&sockname, "%s/%s/mconsole",
                    driver->monitorDir, vm->def->name) < 0) {
803
        virReportOOMError();
804 805 806
        return -1;
    }

807
    memset(addr, 0, sizeof(*addr));
808
    addr->sun_family = AF_UNIX;
C
Chris Lalancette 已提交
809
    if (virStrcpyStatic(addr->sun_path, sockname) == NULL) {
810
        virReportError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
811 812 813
                       _("Unix path %s too long for destination"), sockname);
        retval = -1;
    }
814
    VIR_FREE(sockname);
C
Chris Lalancette 已提交
815
    return retval;
816 817
}

818
static int umlOpenMonitor(struct uml_driver *driver,
819 820 821 822
                          virDomainObjPtr vm) {
    struct sockaddr_un addr;
    struct stat sb;
    int retries = 0;
823
    umlDomainObjPrivatePtr priv = vm->privateData;
824

825
    if (umlMonitorAddress(driver, vm, &addr) < 0)
826 827
        return -1;

828
    VIR_DEBUG("Dest address for monitor is '%s'", addr.sun_path);
829 830 831
restat:
    if (stat(addr.sun_path, &sb) < 0) {
        if (errno == ENOENT &&
832
            retries++ < 50) {
833 834 835 836 837 838
            usleep(1000 * 100);
            goto restat;
        }
        return -1;
    }

839
    if ((priv->monitor = socket(PF_UNIX, SOCK_DGRAM, 0)) < 0) {
840
        virReportSystemError(errno,
841
                             "%s", _("cannot open socket"));
842 843 844
        return -1;
    }

845
    memset(addr.sun_path, 0, sizeof(addr.sun_path));
E
Eric Blake 已提交
846 847
    snprintf(addr.sun_path + 1, sizeof(addr.sun_path) - 1,
             "libvirt-uml-%u", vm->pid);
848
    VIR_DEBUG("Reply address for monitor is '%s'", addr.sun_path+1);
849
    if (bind(priv->monitor, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
850
        virReportSystemError(errno,
851
                             "%s", _("cannot bind socket"));
852
        VIR_FORCE_CLOSE(priv->monitor);
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878
        return -1;
    }

    return 0;
}


#define MONITOR_MAGIC 0xcafebabe
#define MONITOR_BUFLEN 512
#define MONITOR_VERSION 2

struct monitor_request {
    uint32_t magic;
    uint32_t version;
    uint32_t length;
    char data[MONITOR_BUFLEN];
};

struct monitor_response {
    uint32_t error;
    uint32_t extra;
    uint32_t length;
    char data[MONITOR_BUFLEN];
};


879
static int umlMonitorCommand(const struct uml_driver *driver,
880 881 882 883 884 885 886 887 888 889
                             const virDomainObjPtr vm,
                             const char *cmd,
                             char **reply)
{
    struct monitor_request req;
    struct monitor_response res;
    char *retdata = NULL;
    int retlen = 0, ret = 0;
    struct sockaddr_un addr;
    unsigned int addrlen;
890
    umlDomainObjPrivatePtr priv = vm->privateData;
891

892 893
    VIR_DEBUG("Run command '%s'", cmd);

894 895
    *reply = NULL;

896
    if (umlMonitorAddress(driver, vm, &addr) < 0)
897 898 899 900 901 902 903
        return -1;

    memset(&req, 0, sizeof(req));
    req.magic = MONITOR_MAGIC;
    req.version = MONITOR_VERSION;
    req.length = strlen(cmd);
    if (req.length > (MONITOR_BUFLEN-1)) {
904
        virReportSystemError(EINVAL,
905 906
                             _("cannot send too long command %s (%d bytes)"),
                             cmd, req.length);
907 908
        return -1;
    }
C
Chris Lalancette 已提交
909
    if (virStrcpyStatic(req.data, cmd) == NULL) {
910
        virReportError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
911 912 913
                       _("Command %s too long for destination"), cmd);
        return -1;
    }
914

915 916
    if (sendto(priv->monitor, &req, sizeof(req), 0,
               (struct sockaddr *)&addr, sizeof(addr)) != sizeof(req)) {
917
        virReportSystemError(errno,
918 919
                             _("cannot send command %s"),
                             cmd);
920 921 922 923
        return -1;
    }

    do {
E
Eric Blake 已提交
924
        ssize_t nbytes;
925
        addrlen = sizeof(addr);
926
        nbytes = recvfrom(priv->monitor, &res, sizeof(res), 0,
927
                          (struct sockaddr *)&addr, &addrlen);
E
Eric Blake 已提交
928 929 930
        if (nbytes < 0) {
            if (errno == EAGAIN || errno == EINTR)
                continue;
931
            virReportSystemError(errno, _("cannot read reply %s"), cmd);
932 933
            goto error;
        }
934 935 936
        /* Ensure res.length is safe to read before validating its value.  */
        if (nbytes < offsetof(struct monitor_request, data) ||
            nbytes < offsetof(struct monitor_request, data) + res.length) {
937 938 939
            virReportSystemError(0, _("incomplete reply %s"), cmd);
            goto error;
        }
940 941

        if (VIR_REALLOC_N(retdata, retlen + res.length) < 0) {
942
            virReportOOMError();
943 944 945 946 947 948 949 950 951 952 953
            goto error;
        }
        memcpy(retdata + retlen, res.data, res.length);
        retlen += res.length - 1;
        retdata[retlen] = '\0';

        if (res.error)
            ret = -1;

    } while (res.extra);

954 955
    VIR_DEBUG("Command reply is '%s'", NULLSTR(retdata));

956 957 958 959
    if (ret < 0)
        VIR_FREE(retdata);
    else
        *reply = retdata;
960 961 962 963 964 965 966 967 968

    return ret;

error:
    VIR_FREE(retdata);
    return -1;
}


969
static void umlCleanupTapDevices(virDomainObjPtr vm) {
970 971 972 973 974 975 976 977 978
    int i;

    for (i = 0 ; i < vm->def->nnets ; i++) {
        virDomainNetDefPtr def = vm->def->nets[i];

        if (def->type != VIR_DOMAIN_NET_TYPE_BRIDGE &&
            def->type != VIR_DOMAIN_NET_TYPE_NETWORK)
            continue;

979
        ignore_value(virNetDevTapDelete(def->ifname));
980 981 982
    }
}

983 984
static int umlStartVMDaemon(virConnectPtr conn,
                            struct uml_driver *driver,
985 986
                            virDomainObjPtr vm,
                            bool autoDestroy) {
987
    int ret = -1;
988 989
    char *logfile;
    int logfd = -1;
990
    umlDomainObjPrivatePtr priv = vm->privateData;
D
Daniel P. Berrange 已提交
991
    virCommandPtr cmd = NULL;
992
    size_t i;
993

D
Daniel P. Berrange 已提交
994
    if (virDomainObjIsActive(vm)) {
995
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
996
                       _("VM is already active"));
997 998 999 1000
        return -1;
    }

    if (!vm->def->os.kernel) {
1001
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
1002
                       _("no kernel specified"));
1003 1004 1005 1006 1007 1008
        return -1;
    }
    /* Make sure the binary we are about to try exec'ing exists.
     * Technically we could catch the exec() failure, but that's
     * in a sub-process so its hard to feed back a useful error
     */
E
Eric Blake 已提交
1009
    if (!virFileIsExecutable(vm->def->os.kernel)) {
1010
        virReportSystemError(errno,
1011 1012
                             _("Cannot find UML kernel %s"),
                             vm->def->os.kernel);
1013 1014 1015
        return -1;
    }

1016
    if (virFileMakePath(driver->logDir) < 0) {
1017
        virReportSystemError(errno,
1018 1019
                             _("cannot create log directory %s"),
                             driver->logDir);
1020 1021 1022
        return -1;
    }

1023 1024
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1025
        virReportOOMError();
1026 1027 1028 1029 1030
        return -1;
    }

    if ((logfd = open(logfile, O_CREAT | O_TRUNC | O_WRONLY,
                      S_IRUSR | S_IWUSR)) < 0) {
1031
        virReportSystemError(errno,
1032 1033
                             _("failed to create logfile %s"),
                             logfile);
1034 1035 1036 1037 1038
        VIR_FREE(logfile);
        return -1;
    }
    VIR_FREE(logfile);

E
Eric Blake 已提交
1039 1040 1041
    if (virSetCloseExec(logfd) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to set VM logfile close-on-exec flag"));
1042
        VIR_FORCE_CLOSE(logfd);
1043 1044 1045
        return -1;
    }

1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
    /* Do this upfront, so any part of the startup process can add
     * runtime state to vm->def that won't be persisted. This let's us
     * report implicit runtime defaults in the XML, like vnc listen/socket
     */
    VIR_DEBUG("Setting current domain def as transient");
    if (virDomainObjSetDefTransient(driver->caps, vm, true) < 0) {
        VIR_FORCE_CLOSE(logfd);
        return -1;
    }

1056 1057
    if (!(cmd = umlBuildCommandLine(conn, driver, vm)))
        goto cleanup;
1058

1059 1060 1061 1062 1063 1064 1065 1066
    for (i = 0 ; i < vm->def->nconsoles ; i++) {
        VIR_FREE(vm->def->consoles[i]->info.alias);
        if (virAsprintf(&vm->def->consoles[i]->info.alias, "console%zu", i) < 0) {
            virReportOOMError();
            goto cleanup;
        }
    }

D
Daniel P. Berrange 已提交
1067
    virCommandWriteArgLog(cmd, logfd);
1068

1069
    priv->monitor = -1;
1070

D
Daniel P. Berrange 已提交
1071 1072 1073 1074 1075 1076
    virCommandClearCaps(cmd);
    virCommandSetOutputFD(cmd, &logfd);
    virCommandSetErrorFD(cmd, &logfd);
    virCommandDaemonize(cmd);

    ret = virCommandRun(cmd, NULL);
1077 1078
    if (ret < 0)
        goto cleanup;
1079

1080
    if (autoDestroy &&
1081
        (ret = umlProcessAutoDestroyAdd(driver, vm, conn)) < 0)
1082 1083
        goto cleanup;

1084
    ret = virDomainObjSetDefTransient(driver->caps, vm, false);
1085
cleanup:
1086
    VIR_FORCE_CLOSE(logfd);
D
Daniel P. Berrange 已提交
1087
    virCommandFree(cmd);
1088

1089 1090
    if (ret < 0) {
        virDomainConfVMNWFilterTeardown(vm);
1091
        umlCleanupTapDevices(vm);
1092 1093 1094 1095 1096 1097
        if (vm->newDef) {
            virDomainDefFree(vm->def);
            vm->def = vm->newDef;
            vm->def->id = -1;
            vm->newDef = NULL;
        }
1098 1099
    }

1100 1101
    /* NB we don't mark it running here - we do that async
       with inotify */
1102 1103 1104
    /* XXX what if someone else tries to start it again
       before we get the inotification ? Sounds like
       trouble.... */
1105
    /* XXX this is bad for events too. must fix this better */
1106 1107 1108 1109

    return ret;
}

1110
static void umlShutdownVMDaemon(struct uml_driver *driver,
J
Jiri Denemark 已提交
1111 1112
                                virDomainObjPtr vm,
                                virDomainShutoffReason reason)
1113 1114
{
    int ret;
1115 1116
    umlDomainObjPrivatePtr priv = vm->privateData;

D
Daniel P. Berrange 已提交
1117
    if (!virDomainObjIsActive(vm))
1118 1119
        return;

1120
    virProcessKill(vm->pid, SIGTERM);
1121

1122
    VIR_FORCE_CLOSE(priv->monitor);
1123 1124

    if ((ret = waitpid(vm->pid, NULL, 0)) != vm->pid) {
1125
        VIR_WARN("Got unexpected pid %d != %d",
1126 1127 1128 1129 1130
               ret, vm->pid);
    }

    vm->pid = -1;
    vm->def->id = -1;
J
Jiri Denemark 已提交
1131
    virDomainObjSetState(vm, VIR_DOMAIN_SHUTOFF, reason);
1132

1133
    virDomainConfVMNWFilterTeardown(vm);
1134 1135 1136 1137
    umlCleanupTapDevices(vm);

    /* Stop autodestroy in case guest is restarted */
    umlProcessAutoDestroyRemove(driver, vm);
1138

1139 1140 1141 1142 1143 1144
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }
1145 1146 1147 1148

    driver->nactive--;
    if (!driver->nactive && driver->inhibitCallback)
        driver->inhibitCallback(false, driver->inhibitOpaque);
1149 1150 1151 1152 1153
}


static virDrvOpenStatus umlOpen(virConnectPtr conn,
                                virConnectAuthPtr auth ATTRIBUTE_UNUSED,
E
Eric Blake 已提交
1154 1155 1156 1157
                                unsigned int flags)
{
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

1158 1159 1160
    if (conn->uri == NULL) {
        if (uml_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
1161

1162 1163 1164
        if (!(conn->uri = virURIParse(uml_driver->privileged ?
                                      "uml:///system" :
                                      "uml:///session")))
1165 1166 1167
            return VIR_DRV_OPEN_ERROR;
    } else {
        if (conn->uri->scheme == NULL ||
1168
            STRNEQ(conn->uri->scheme, "uml"))
1169 1170 1171 1172 1173
            return VIR_DRV_OPEN_DECLINED;

        /* Allow remote driver to deal with URIs with hostname server */
        if (conn->uri->server != NULL)
            return VIR_DRV_OPEN_DECLINED;
1174 1175


1176
        /* Check path and tell them correct path if they made a mistake */
1177
        if (uml_driver->privileged) {
1178 1179
            if (STRNEQ(conn->uri->path, "/system") &&
                STRNEQ(conn->uri->path, "/session")) {
1180
                virReportError(VIR_ERR_INTERNAL_ERROR,
1181 1182 1183 1184 1185
                               _("unexpected UML URI path '%s', try uml:///system"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
        } else {
1186
            if (STRNEQ(conn->uri->path, "/session")) {
1187
                virReportError(VIR_ERR_INTERNAL_ERROR,
1188 1189 1190 1191
                               _("unexpected UML URI path '%s', try uml:///session"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
1192
        }
1193 1194 1195

        /* URI was good, but driver isn't active */
        if (uml_driver == NULL) {
1196
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
1197
                           _("uml state driver is not active"));
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
            return VIR_DRV_OPEN_ERROR;
        }
    }

    conn->privateData = uml_driver;

    return VIR_DRV_OPEN_SUCCESS;
}

static int umlClose(virConnectPtr conn) {
1208 1209 1210
    struct uml_driver *driver = conn->privateData;

    umlDriverLock(driver);
1211
    umlProcessAutoDestroyRun(driver, conn);
1212
    umlDriverUnlock(driver);
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223

    conn->privateData = NULL;

    return 0;
}

static const char *umlGetType(virConnectPtr conn ATTRIBUTE_UNUSED) {
    return "UML";
}


1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
static int umlIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* Trivially secure, since always inside the daemon */
    return 1;
}


static int umlIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* Not encrypted, but remote driver takes care of that */
    return 0;
}


1238 1239 1240 1241 1242 1243
static int umlIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return 1;
}


1244 1245 1246 1247
static char *umlGetCapabilities(virConnectPtr conn) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
    char *xml;

1248
    umlDriverLock(driver);
1249
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
1250
        virReportOOMError();
1251
    umlDriverUnlock(driver);
1252 1253 1254 1255 1256 1257

    return xml;
}



1258
static int umlGetProcessInfo(unsigned long long *cpuTime, pid_t pid)
1259 1260
{
    char *proc;
1261 1262 1263
    FILE *pidinfo;
    unsigned long long usertime, systime;

1264
    if (virAsprintf(&proc, "/proc/%lld/stat", (long long) pid) < 0) {
1265 1266 1267 1268 1269 1270
        return -1;
    }

    if (!(pidinfo = fopen(proc, "r"))) {
        /* VM probably shut down, so fake 0 */
        *cpuTime = 0;
1271
        VIR_FREE(proc);
1272 1273 1274
        return 0;
    }

1275 1276
    VIR_FREE(proc);

1277 1278
    if (fscanf(pidinfo, "%*d %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %llu %llu", &usertime, &systime) != 2) {
        umlDebug("not enough arg");
1279
        VIR_FORCE_FCLOSE(pidinfo);
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
        return -1;
    }

    /* We got jiffies
     * We want nanoseconds
     * _SC_CLK_TCK is jiffies per second
     * So calulate thus....
     */
    *cpuTime = 1000ull * 1000ull * 1000ull * (usertime + systime) / (unsigned long long)sysconf(_SC_CLK_TCK);

    umlDebug("Got %llu %llu %llu", usertime, systime, *cpuTime);

1292
    VIR_FORCE_FCLOSE(pidinfo);
1293 1294 1295 1296 1297 1298 1299 1300

    return 0;
}


static virDomainPtr umlDomainLookupByID(virConnectPtr conn,
                                          int id) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1301 1302
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1303

1304
    umlDriverLock(driver);
1305
    vm = virDomainFindByID(&driver->domains, id);
1306 1307
    umlDriverUnlock(driver);

1308
    if (!vm) {
1309
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
1310
        goto cleanup;
1311 1312 1313 1314
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1315 1316

cleanup:
1317 1318
    if (vm)
        virDomainObjUnlock(vm);
1319 1320
    return dom;
}
1321

1322 1323 1324
static virDomainPtr umlDomainLookupByUUID(virConnectPtr conn,
                                            const unsigned char *uuid) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1325 1326
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1327

1328
    umlDriverLock(driver);
1329
    vm = virDomainFindByUUID(&driver->domains, uuid);
1330 1331
    umlDriverUnlock(driver);

1332
    if (!vm) {
1333
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
1334
        goto cleanup;
1335 1336 1337 1338
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1339 1340

cleanup:
1341 1342
    if (vm)
        virDomainObjUnlock(vm);
1343 1344
    return dom;
}
1345

1346 1347 1348
static virDomainPtr umlDomainLookupByName(virConnectPtr conn,
                                            const char *name) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1349 1350
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1351

1352
    umlDriverLock(driver);
1353
    vm = virDomainFindByName(&driver->domains, name);
1354 1355
    umlDriverUnlock(driver);

1356
    if (!vm) {
1357
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
1358
        goto cleanup;
1359 1360 1361 1362
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1363 1364

cleanup:
1365 1366
    if (vm)
        virDomainObjUnlock(vm);
1367 1368 1369
    return dom;
}

1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380

static int umlDomainIsActive(virDomainPtr dom)
{
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr obj;
    int ret = -1;

    umlDriverLock(driver);
    obj = virDomainFindByUUID(&driver->domains, dom->uuid);
    umlDriverUnlock(driver);
    if (!obj) {
1381
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
        goto cleanup;
    }
    ret = virDomainObjIsActive(obj);

cleanup:
    if (obj)
        virDomainObjUnlock(obj);
    return ret;
}


static int umlDomainIsPersistent(virDomainPtr dom)
{
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr obj;
    int ret = -1;

    umlDriverLock(driver);
    obj = virDomainFindByUUID(&driver->domains, dom->uuid);
    umlDriverUnlock(driver);
    if (!obj) {
1403
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
        goto cleanup;
    }
    ret = obj->persistent;

cleanup:
    if (obj)
        virDomainObjUnlock(obj);
    return ret;
}

1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
static int umlDomainIsUpdated(virDomainPtr dom)
{
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr obj;
    int ret = -1;

    umlDriverLock(driver);
    obj = virDomainFindByUUID(&driver->domains, dom->uuid);
    umlDriverUnlock(driver);
    if (!obj) {
1424
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
1425 1426 1427 1428 1429 1430 1431 1432 1433
        goto cleanup;
    }
    ret = obj->updated;

cleanup:
    if (obj)
        virDomainObjUnlock(obj);
    return ret;
}
1434

1435
static int umlGetVersion(virConnectPtr conn, unsigned long *version) {
1436
    struct uml_driver *driver = conn->privateData;
1437
    struct utsname ut;
1438
    int ret = -1;
1439

1440
    umlDriverLock(driver);
1441 1442 1443 1444

    if (driver->umlVersion == 0) {
        uname(&ut);

1445
        if (virParseVersionString(ut.release, &driver->umlVersion, true) < 0) {
1446
            virReportError(VIR_ERR_INTERNAL_ERROR,
1447 1448 1449
                           _("cannot parse version %s"), ut.release);
            goto cleanup;
        }
1450 1451
    }

1452 1453 1454 1455 1456 1457
    *version = driver->umlVersion;
    ret = 0;

cleanup:
    umlDriverUnlock(driver);
    return ret;
1458 1459 1460
}

static int umlListDomains(virConnectPtr conn, int *ids, int nids) {
1461
    struct uml_driver *driver = conn->privateData;
1462
    int n;
1463

1464
    umlDriverLock(driver);
1465
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
1466
    umlDriverUnlock(driver);
1467

1468
    return n;
1469 1470
}
static int umlNumDomains(virConnectPtr conn) {
1471
    struct uml_driver *driver = conn->privateData;
1472
    int n;
1473

1474
    umlDriverLock(driver);
1475
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
1476
    umlDriverUnlock(driver);
1477 1478 1479 1480

    return n;
}
static virDomainPtr umlDomainCreate(virConnectPtr conn, const char *xml,
1481
                                      unsigned int flags) {
1482
    struct uml_driver *driver = conn->privateData;
1483
    virDomainDefPtr def;
1484
    virDomainObjPtr vm = NULL;
1485
    virDomainPtr dom = NULL;
1486
    virDomainEventPtr event = NULL;
1487

1488
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, NULL);
1489

1490
    umlDriverLock(driver);
1491
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
1492
                                        1 << VIR_DOMAIN_VIRT_UML,
1493
                                        VIR_DOMAIN_XML_INACTIVE)))
1494
        goto cleanup;
1495

1496
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
1497
        goto cleanup;
1498

1499
    if (!(vm = virDomainAssignDef(driver->caps,
1500
                                  &driver->domains,
1501
                                  def, false)))
1502 1503
        goto cleanup;
    def = NULL;
1504

1505 1506
    if (umlStartVMDaemon(conn, driver, vm,
                         (flags & VIR_DOMAIN_START_AUTODESTROY)) < 0) {
1507
        virDomainAuditStart(vm, "booted", false);
1508 1509
        virDomainRemoveInactive(&driver->domains,
                                vm);
1510 1511
        vm = NULL;
        goto cleanup;
1512
    }
1513
    virDomainAuditStart(vm, "booted", true);
1514 1515 1516
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);
1517 1518 1519

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1520 1521 1522

cleanup:
    virDomainDefFree(def);
1523 1524
    if (vm)
        virDomainObjUnlock(vm);
1525 1526
    if (event)
        umlDomainEventQueue(driver, event);
1527
    umlDriverUnlock(driver);
1528 1529 1530 1531
    return dom;
}


1532 1533
static int umlDomainShutdownFlags(virDomainPtr dom,
                                  unsigned int flags) {
1534 1535
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1536
    char *info = NULL;
1537
    int ret = -1;
1538

1539 1540
    virCheckFlags(0, -1);

1541
    umlDriverLock(driver);
1542
    vm = virDomainFindByID(&driver->domains, dom->id);
1543
    umlDriverUnlock(driver);
1544
    if (!vm) {
1545
        virReportError(VIR_ERR_NO_DOMAIN,
1546
                       _("no domain with matching id %d"), dom->id);
1547
        goto cleanup;
1548 1549 1550 1551
    }

#if 0
    if (umlMonitorCommand(driver, vm, "system_powerdown", &info) < 0) {
1552
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
1553
                       _("shutdown operation failed"));
1554
        goto cleanup;
1555
    }
1556
    ret = 0;
1557 1558
#endif

1559 1560
cleanup:
    VIR_FREE(info);
1561 1562
    if (vm)
        virDomainObjUnlock(vm);
1563
    return ret;
1564 1565
}

1566 1567 1568 1569 1570
static int
umlDomainShutdown(virDomainPtr dom)
{
    return umlDomainShutdownFlags(dom, 0);
}
1571

1572 1573 1574 1575
static int
umlDomainDestroyFlags(virDomainPtr dom,
                      unsigned int flags)
{
1576 1577
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1578
    virDomainEventPtr event = NULL;
1579
    int ret = -1;
1580

1581 1582
    virCheckFlags(0, -1);

1583
    umlDriverLock(driver);
1584
    vm = virDomainFindByID(&driver->domains, dom->id);
1585
    if (!vm) {
1586
        virReportError(VIR_ERR_NO_DOMAIN,
1587
                       _("no domain with matching id %d"), dom->id);
1588
        goto cleanup;
1589 1590
    }

1591
    umlShutdownVMDaemon(driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
1592
    virDomainAuditStop(vm, "destroyed");
1593 1594 1595
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1596
    if (!vm->persistent) {
1597 1598
        virDomainRemoveInactive(&driver->domains,
                                vm);
1599 1600 1601
        vm = NULL;
    }
    ret = 0;
1602

1603
cleanup:
1604 1605
    if (vm)
        virDomainObjUnlock(vm);
1606 1607
    if (event)
        umlDomainEventQueue(driver, event);
1608
    umlDriverUnlock(driver);
1609
    return ret;
1610 1611 1612
}


1613 1614 1615 1616 1617 1618
static int umlDomainDestroy(virDomainPtr dom)
{
    return umlDomainDestroyFlags(dom, 0);
}


1619
static char *umlDomainGetOSType(virDomainPtr dom) {
1620 1621 1622
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *type = NULL;
1623

1624
    umlDriverLock(driver);
1625
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1626
    umlDriverUnlock(driver);
1627
    if (!vm) {
1628
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
1629
                       _("no domain with matching uuid"));
1630
        goto cleanup;
1631 1632
    }

1633
    if (!(type = strdup(vm->def->os.type)))
1634
        virReportOOMError();
1635 1636

cleanup:
1637 1638
    if (vm)
        virDomainObjUnlock(vm);
1639 1640 1641 1642
    return type;
}

/* Returns max memory in kb, 0 if error */
1643 1644 1645
static unsigned long long
umlDomainGetMaxMemory(virDomainPtr dom)
{
1646 1647
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1648
    unsigned long long ret = 0;
1649

1650
    umlDriverLock(driver);
1651
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1652 1653
    umlDriverUnlock(driver);

1654 1655 1656 1657
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
1658
        virReportError(VIR_ERR_NO_DOMAIN,
1659 1660
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
1661
    }
1662
    ret = vm->def->mem.max_balloon;
1663

1664
cleanup:
1665 1666
    if (vm)
        virDomainObjUnlock(vm);
1667
    return ret;
1668 1669 1670
}

static int umlDomainSetMaxMemory(virDomainPtr dom, unsigned long newmax) {
1671 1672 1673
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1674

1675
    umlDriverLock(driver);
1676
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1677 1678
    umlDriverUnlock(driver);

1679 1680 1681 1682
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
1683
        virReportError(VIR_ERR_NO_DOMAIN,
1684
                       _("no domain with matching uuid '%s'"), uuidstr);
1685
        goto cleanup;
1686 1687
    }

1688
    if (newmax < vm->def->mem.cur_balloon) {
1689
        virReportError(VIR_ERR_INVALID_ARG, "%s",
1690
                       _("cannot set max memory lower than current memory"));
1691
        goto cleanup;
1692 1693
    }

1694
    vm->def->mem.max_balloon = newmax;
1695 1696 1697
    ret = 0;

cleanup:
1698 1699
    if (vm)
        virDomainObjUnlock(vm);
1700
    return ret;
1701 1702 1703
}

static int umlDomainSetMemory(virDomainPtr dom, unsigned long newmem) {
1704 1705 1706
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1707

1708
    umlDriverLock(driver);
1709
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1710 1711
    umlDriverUnlock(driver);

1712 1713 1714 1715
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
1716
        virReportError(VIR_ERR_NO_DOMAIN,
1717
                       _("no domain with matching uuid '%s'"), uuidstr);
1718
        goto cleanup;
1719 1720
    }

D
Daniel P. Berrange 已提交
1721
    if (virDomainObjIsActive(vm)) {
1722
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
1723
                       _("cannot set memory of an active domain"));
1724
        goto cleanup;
1725 1726
    }

1727
    if (newmem > vm->def->mem.max_balloon) {
1728
        virReportError(VIR_ERR_INVALID_ARG, "%s",
1729
                       _("cannot set memory higher than max memory"));
1730
        goto cleanup;
1731 1732
    }

1733
    vm->def->mem.cur_balloon = newmem;
1734 1735 1736
    ret = 0;

cleanup:
1737 1738
    if (vm)
        virDomainObjUnlock(vm);
1739
    return ret;
1740 1741 1742 1743
}

static int umlDomainGetInfo(virDomainPtr dom,
                              virDomainInfoPtr info) {
1744 1745 1746 1747
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

1748
    umlDriverLock(driver);
1749
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1750 1751
    umlDriverUnlock(driver);

1752
    if (!vm) {
1753
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
1754
                       _("no domain with matching uuid"));
1755
        goto cleanup;
1756 1757
    }

J
Jiri Denemark 已提交
1758
    info->state = virDomainObjGetState(vm, NULL);
1759

D
Daniel P. Berrange 已提交
1760
    if (!virDomainObjIsActive(vm)) {
1761 1762 1763
        info->cpuTime = 0;
    } else {
        if (umlGetProcessInfo(&(info->cpuTime), vm->pid) < 0) {
1764
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
1765
                           _("cannot read cputime for domain"));
1766
            goto cleanup;
1767 1768 1769
        }
    }

1770 1771
    info->maxMem = vm->def->mem.max_balloon;
    info->memory = vm->def->mem.cur_balloon;
1772
    info->nrVirtCpu = vm->def->vcpus;
1773 1774 1775
    ret = 0;

cleanup:
1776 1777
    if (vm)
        virDomainObjUnlock(vm);
1778
    return ret;
1779 1780 1781
}


1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
static int
umlDomainGetState(virDomainPtr dom,
                  int *state,
                  int *reason,
                  unsigned int flags)
{
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

    virCheckFlags(0, -1);

    umlDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    umlDriverUnlock(driver);

    if (!vm) {
1799
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
1800 1801 1802 1803
                       _("no domain with matching uuid"));
        goto cleanup;
    }

J
Jiri Denemark 已提交
1804
    *state = virDomainObjGetState(vm, reason);
1805 1806 1807 1808 1809 1810 1811 1812 1813
    ret = 0;

cleanup:
    if (vm)
        virDomainObjUnlock(vm);
    return ret;
}


1814
static char *umlDomainGetXMLDesc(virDomainPtr dom,
E
Eric Blake 已提交
1815 1816
                                 unsigned int flags)
{
1817 1818 1819 1820
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;

1821
    /* Flags checked by virDomainDefFormat */
E
Eric Blake 已提交
1822

1823
    umlDriverLock(driver);
1824
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1825 1826
    umlDriverUnlock(driver);

1827
    if (!vm) {
1828
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
1829
                       _("no domain with matching uuid"));
1830
        goto cleanup;
1831 1832
    }

1833
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) && vm->newDef ?
1834 1835 1836 1837
                             vm->newDef : vm->def,
                             flags);

cleanup:
1838 1839
    if (vm)
        virDomainObjUnlock(vm);
1840
    return ret;
1841 1842 1843 1844 1845
}


static int umlListDefinedDomains(virConnectPtr conn,
                            char **const names, int nnames) {
1846
    struct uml_driver *driver = conn->privateData;
1847
    int n;
1848

1849
    umlDriverLock(driver);
1850
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
1851
    umlDriverUnlock(driver);
1852

1853
    return n;
1854 1855 1856
}

static int umlNumDefinedDomains(virConnectPtr conn) {
1857
    struct uml_driver *driver = conn->privateData;
1858
    int n;
1859

1860
    umlDriverLock(driver);
1861
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
1862
    umlDriverUnlock(driver);
1863 1864 1865 1866 1867

    return n;
}


1868
static int umlDomainStartWithFlags(virDomainPtr dom, unsigned int flags) {
1869 1870
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1871
    virDomainEventPtr event = NULL;
1872
    int ret = -1;
1873

1874
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, -1);
1875

1876
    umlDriverLock(driver);
1877
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1878

1879
    if (!vm) {
1880
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
1881
                       _("no domain with matching uuid"));
1882
        goto cleanup;
1883 1884
    }

1885 1886
    ret = umlStartVMDaemon(dom->conn, driver, vm,
                           (flags & VIR_DOMAIN_START_AUTODESTROY));
1887
    virDomainAuditStart(vm, "booted", ret >= 0);
1888 1889 1890 1891
    if (ret == 0)
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);
1892 1893

cleanup:
1894 1895
    if (vm)
        virDomainObjUnlock(vm);
1896 1897
    if (event)
        umlDomainEventQueue(driver, event);
1898
    umlDriverUnlock(driver);
1899
    return ret;
1900 1901
}

1902 1903 1904
static int umlDomainStart(virDomainPtr dom) {
    return umlDomainStartWithFlags(dom, 0);
}
1905 1906

static virDomainPtr umlDomainDefine(virConnectPtr conn, const char *xml) {
1907
    struct uml_driver *driver = conn->privateData;
1908
    virDomainDefPtr def;
1909
    virDomainObjPtr vm = NULL;
1910
    virDomainPtr dom = NULL;
1911

1912
    umlDriverLock(driver);
1913
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
1914
                                        1 << VIR_DOMAIN_VIRT_UML,
1915
                                        VIR_DOMAIN_XML_INACTIVE)))
1916
        goto cleanup;
1917

1918 1919 1920
    if (virDomainObjIsDuplicate(&driver->domains, def, 0) < 0)
        goto cleanup;

1921
    if (!(vm = virDomainAssignDef(driver->caps,
1922
                                  &driver->domains,
1923
                                  def, false)))
1924 1925
        goto cleanup;
    def = NULL;
1926 1927
    vm->persistent = 1;

1928
    if (virDomainSaveConfig(driver->configDir,
1929 1930 1931
                            vm->newDef ? vm->newDef : vm->def) < 0) {
        virDomainRemoveInactive(&driver->domains,
                                vm);
1932
        vm = NULL;
1933
        goto cleanup;
1934 1935 1936 1937
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1938 1939 1940

cleanup:
    virDomainDefFree(def);
1941 1942 1943
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1944 1945 1946
    return dom;
}

1947 1948 1949
static int umlDomainUndefineFlags(virDomainPtr dom,
                                  unsigned int flags)
{
1950 1951 1952
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1953

1954 1955
    virCheckFlags(0, -1);

1956
    umlDriverLock(driver);
1957
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1958
    if (!vm) {
1959
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
1960
                       _("no domain with matching uuid"));
1961
        goto cleanup;
1962 1963 1964
    }

    if (!vm->persistent) {
1965
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
1966
                       _("cannot undefine transient domain"));
1967
        goto cleanup;
1968 1969
    }

1970
    if (virDomainDeleteConfig(driver->configDir, driver->autostartDir, vm) < 0)
1971
        goto cleanup;
1972

1973 1974 1975 1976 1977 1978 1979
    if (virDomainObjIsActive(vm)) {
        vm->persistent = 0;
    } else {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }

1980
    ret = 0;
1981

1982
cleanup:
1983 1984 1985
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1986
    return ret;
1987 1988 1989
}


1990 1991 1992 1993 1994
static int umlDomainUndefine(virDomainPtr dom)
{
    return umlDomainUndefineFlags(dom, 0);
}

1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
static int umlDomainAttachUmlDisk(struct uml_driver *driver,
                                  virDomainObjPtr vm,
                                  virDomainDiskDefPtr disk)
{
    int i;
    char *cmd = NULL;
    char *reply = NULL;

    for (i = 0 ; i < vm->def->ndisks ; i++) {
        if (STREQ(vm->def->disks[i]->dst, disk->dst)) {
2005
            virReportError(VIR_ERR_OPERATION_FAILED,
2006 2007 2008 2009 2010 2011
                           _("target %s already exists"), disk->dst);
            return -1;
        }
    }

    if (!disk->src) {
2012
        virReportError(VIR_ERR_INTERNAL_ERROR,
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058
                       "%s", _("disk source path is missing"));
        goto error;
    }

    if (virAsprintf(&cmd, "config %s=%s", disk->dst, disk->src) < 0) {
        virReportOOMError();
        return -1;
    }

    if (umlMonitorCommand(driver, vm, cmd, &reply) < 0)
        goto error;

    if (VIR_REALLOC_N(vm->def->disks, vm->def->ndisks+1) < 0) {
        virReportOOMError();
        goto error;
    }

    virDomainDiskInsertPreAlloced(vm->def, disk);

    VIR_FREE(reply);
    VIR_FREE(cmd);

    return 0;

error:

    VIR_FREE(reply);
    VIR_FREE(cmd);

    return -1;
}


static int umlDomainAttachDevice(virDomainPtr dom, const char *xml)
{
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    virDomainDeviceDefPtr dev = NULL;
    int ret = -1;

    umlDriverLock(driver);

    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2059
        virReportError(VIR_ERR_NO_DOMAIN,
2060 2061 2062 2063 2064
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2065
        virReportError(VIR_ERR_OPERATION_INVALID,
2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081
                       "%s", _("cannot attach device on inactive domain"));
        goto cleanup;
    }

    dev = virDomainDeviceDefParse(driver->caps, vm->def, xml,
                                  VIR_DOMAIN_XML_INACTIVE);

    if (dev == NULL)
        goto cleanup;

    if (dev->type == VIR_DOMAIN_DEVICE_DISK) {
        if (dev->data.disk->bus == VIR_DOMAIN_DISK_BUS_UML) {
            ret = umlDomainAttachUmlDisk(driver, vm, dev->data.disk);
            if (ret == 0)
                dev->data.disk = NULL;
        } else {
2082
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
2083 2084 2085 2086
                           _("disk bus '%s' cannot be hotplugged."),
                           virDomainDiskBusTypeToString(dev->data.disk->bus));
        }
    } else {
2087
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102
                       _("device type '%s' cannot be attached"),
                       virDomainDeviceTypeToString(dev->type));
        goto cleanup;
    }

cleanup:

    virDomainDeviceDefFree(dev);
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
    return ret;
}


2103 2104 2105 2106 2107 2108 2109
static int
umlDomainAttachDeviceFlags(virDomainPtr dom,
                           const char *xml,
                           unsigned int flags)
{
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_AFFECT_CONFIG, -1);

2110
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
2111
        virReportError(VIR_ERR_OPERATION_INVALID,
2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135
                       "%s", _("cannot modify the persistent configuration of a domain"));
        return -1;
    }

    return umlDomainAttachDevice(dom, xml);
}


static int umlDomainDetachUmlDisk(struct uml_driver *driver,
                                  virDomainObjPtr vm,
                                  virDomainDeviceDefPtr dev)
{
    int i, ret = -1;
    virDomainDiskDefPtr detach = NULL;
    char *cmd;
    char *reply;

    for (i = 0 ; i < vm->def->ndisks ; i++) {
        if (STREQ(vm->def->disks[i]->dst, dev->data.disk->dst)) {
            break;
        }
    }

    if (i == vm->def->ndisks) {
2136
        virReportError(VIR_ERR_OPERATION_FAILED,
2137 2138 2139 2140 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 2172 2173 2174 2175 2176
                       _("disk %s not found"), dev->data.disk->dst);
        return -1;
    }

    detach = vm->def->disks[i];

    if (virAsprintf(&cmd, "remove %s", detach->dst) < 0) {
        virReportOOMError();
        return -1;
    }

    if (umlMonitorCommand(driver, vm, cmd, &reply) < 0)
        goto cleanup;

    virDomainDiskRemove(vm->def, i);

    virDomainDiskDefFree(detach);

    ret = 0;

    VIR_FREE(reply);

cleanup:
    VIR_FREE(cmd);

    return ret;
}


static int umlDomainDetachDevice(virDomainPtr dom, const char *xml) {
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    virDomainDeviceDefPtr dev = NULL;
    int ret = -1;

    umlDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2177
        virReportError(VIR_ERR_NO_DOMAIN,
2178 2179 2180 2181 2182
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2183
        virReportError(VIR_ERR_OPERATION_INVALID,
2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197
                       "%s", _("cannot detach device on inactive domain"));
        goto cleanup;
    }

    dev = virDomainDeviceDefParse(driver->caps, vm->def, xml,
                                  VIR_DOMAIN_XML_INACTIVE);
    if (dev == NULL)
        goto cleanup;

    if (dev->type == VIR_DOMAIN_DEVICE_DISK &&
        dev->data.disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
        if (dev->data.disk->bus == VIR_DOMAIN_DISK_BUS_UML)
            ret = umlDomainDetachUmlDisk(driver, vm, dev);
        else {
2198
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2199 2200 2201
                           _("This type of disk cannot be hot unplugged"));
        }
    } else {
2202
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214
                       "%s", _("This type of device cannot be hot unplugged"));
    }

cleanup:
    virDomainDeviceDefFree(dev);
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
    return ret;
}


2215 2216 2217 2218 2219 2220 2221
static int
umlDomainDetachDeviceFlags(virDomainPtr dom,
                           const char *xml,
                           unsigned int flags)
{
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_AFFECT_CONFIG, -1);

2222
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
2223
        virReportError(VIR_ERR_OPERATION_INVALID,
2224 2225 2226 2227 2228 2229 2230
                       "%s", _("cannot modify the persistent configuration of a domain"));
        return -1;
    }

    return umlDomainDetachDevice(dom, xml);
}

2231 2232 2233

static int umlDomainGetAutostart(virDomainPtr dom,
                            int *autostart) {
2234 2235 2236
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
2237

2238
    umlDriverLock(driver);
2239
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
2240

2241
    if (!vm) {
2242
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
2243
                       _("no domain with matching uuid"));
2244
        goto cleanup;
2245 2246 2247
    }

    *autostart = vm->autostart;
2248
    ret = 0;
2249

2250
cleanup:
2251 2252
    if (vm)
        virDomainObjUnlock(vm);
2253
    umlDriverUnlock(driver);
2254
    return ret;
2255 2256 2257 2258
}

static int umlDomainSetAutostart(virDomainPtr dom,
                                   int autostart) {
2259
    struct uml_driver *driver = dom->conn->privateData;
2260
    virDomainObjPtr vm;
2261 2262 2263
    char *configFile = NULL, *autostartLink = NULL;
    int ret = -1;

2264 2265 2266
    umlDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);

2267
    if (!vm) {
2268
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
2269
                       _("no domain with matching uuid"));
2270
        goto cleanup;
2271 2272 2273
    }

    if (!vm->persistent) {
2274
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
2275
                       _("cannot set autostart for transient domain"));
2276
        goto cleanup;
2277 2278 2279 2280
    }

    autostart = (autostart != 0);

2281
    if (vm->autostart != autostart) {
2282
        if ((configFile = virDomainConfigFile(driver->configDir, vm->def->name)) == NULL)
2283
            goto cleanup;
2284
        if ((autostartLink = virDomainConfigFile(driver->autostartDir, vm->def->name)) == NULL)
2285
            goto cleanup;
2286

2287
        if (autostart) {
2288 2289
            if (virFileMakePath(driver->autostartDir) < 0) {
                virReportSystemError(errno,
2290 2291
                                     _("cannot create autostart directory %s"),
                                     driver->autostartDir);
2292 2293
                goto cleanup;
            }
2294

2295
            if (symlink(configFile, autostartLink) < 0) {
2296
                virReportSystemError(errno,
2297 2298
                                     _("Failed to create symlink '%s to '%s'"),
                                     autostartLink, configFile);
2299 2300 2301 2302
                goto cleanup;
            }
        } else {
            if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2303
                virReportSystemError(errno,
2304 2305
                                     _("Failed to delete symlink '%s'"),
                                     autostartLink);
2306 2307
                goto cleanup;
            }
2308 2309
        }

2310
        vm->autostart = autostart;
2311 2312 2313 2314 2315 2316
    }
    ret = 0;

cleanup:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
2317 2318
    if (vm)
        virDomainObjUnlock(vm);
2319
    umlDriverUnlock(driver);
2320 2321 2322 2323 2324
    return ret;
}


static int
2325 2326 2327 2328
umlDomainBlockPeek(virDomainPtr dom,
                   const char *path,
                   unsigned long long offset, size_t size,
                   void *buffer,
E
Eric Blake 已提交
2329
                   unsigned int flags)
2330
{
2331 2332
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
2333 2334
    int fd = -1, ret = -1;
    const char *actual;
2335

E
Eric Blake 已提交
2336 2337
    virCheckFlags(0, -1);

2338
    umlDriverLock(driver);
2339
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
2340 2341
    umlDriverUnlock(driver);

2342
    if (!vm) {
2343
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
2344
                       _("no domain with matching uuid"));
2345
        goto cleanup;
2346 2347 2348
    }

    if (!path || path[0] == '\0') {
2349
        virReportError(VIR_ERR_INVALID_ARG, "%s",
2350
                       _("NULL or empty path"));
2351
        goto cleanup;
2352 2353 2354
    }

    /* Check the path belongs to this domain. */
2355
    if (!(actual = virDomainDiskPathByName(vm->def, path))) {
2356
        virReportError(VIR_ERR_INVALID_ARG,
2357 2358
                       _("invalid path '%s'"), path);
        goto cleanup;
2359
    }
2360
    path = actual;
2361

2362 2363 2364 2365 2366 2367 2368
    /* The path is correct, now try to open it and get its size. */
    fd = open(path, O_RDONLY);
    if (fd == -1) {
        virReportSystemError(errno,
                             _("cannot open %s"), path);
        goto cleanup;
    }
2369

2370 2371 2372 2373 2374 2375 2376 2377 2378
    /* Seek and read. */
    /* NB. Because we configure with AC_SYS_LARGEFILE, off_t should
     * be 64 bits on all platforms.
     */
    if (lseek(fd, offset, SEEK_SET) == (off_t) -1 ||
        saferead(fd, buffer, size) == (ssize_t) -1) {
        virReportSystemError(errno,
                             _("cannot read %s"), path);
        goto cleanup;
2379 2380
    }

2381 2382
    ret = 0;

2383
cleanup:
2384
    VIR_FORCE_CLOSE(fd);
2385 2386
    if (vm)
        virDomainObjUnlock(vm);
2387 2388 2389 2390
    return ret;
}


2391 2392
static int
umlDomainOpenConsole(virDomainPtr dom,
2393
                     const char *dev_name,
2394 2395 2396 2397 2398 2399 2400 2401
                     virStreamPtr st,
                     unsigned int flags)
{
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm = NULL;
    char uuidstr[VIR_UUID_STRING_BUFLEN];
    int ret = -1;
    virDomainChrDefPtr chr = NULL;
2402
    size_t i;
2403 2404 2405 2406 2407 2408 2409

    virCheckFlags(0, -1);

    umlDriverLock(driver);
    virUUIDFormat(dom->uuid, uuidstr);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    if (!vm) {
2410
        virReportError(VIR_ERR_NO_DOMAIN,
2411 2412 2413 2414 2415
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2416
        virReportError(VIR_ERR_OPERATION_INVALID,
2417 2418 2419 2420
                        "%s", _("domain is not running"));
        goto cleanup;
    }

2421
    if (dev_name) {
2422 2423 2424 2425 2426 2427 2428
        for (i = 0 ; i < vm->def->nconsoles ; i++) {
            if (vm->def->consoles[i]->info.alias &&
                STREQ(vm->def->consoles[i]->info.alias, dev_name)) {
                chr = vm->def->consoles[i];
                break;
            }
        }
2429
    } else {
2430 2431
        if (vm->def->nconsoles)
            chr = vm->def->consoles[0];
2432 2433 2434 2435 2436
        else if (vm->def->nserials)
            chr = vm->def->serials[0];
    }

    if (!chr) {
2437
        virReportError(VIR_ERR_INTERNAL_ERROR,
2438 2439
                       _("cannot find console device '%s'"),
                       dev_name ? dev_name : _("default"));
2440 2441 2442
        goto cleanup;
    }

2443
    if (chr->source.type != VIR_DOMAIN_CHR_TYPE_PTY) {
2444
        virReportError(VIR_ERR_INTERNAL_ERROR,
2445
                        _("character device %s is not using a PTY"), dev_name);
2446 2447 2448
        goto cleanup;
    }

2449
    if (virFDStreamOpenFile(st, chr->source.data.file.path,
E
Eric Blake 已提交
2450
                            0, 0, O_RDWR) < 0)
2451 2452 2453 2454 2455 2456 2457 2458 2459 2460
        goto cleanup;

    ret = 0;
cleanup:
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
    return ret;
}

2461

2462 2463 2464 2465 2466 2467 2468 2469 2470 2471
static int
umlDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
{
    struct uml_driver *driver = conn->privateData;
    int ret;

    umlDriverLock(driver);
2472 2473 2474
    ret = virDomainEventStateRegister(conn,
                                      driver->domainEventState,
                                      callback, opaque, freecb);
2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507
    umlDriverUnlock(driver);

    return ret;
}

static int
umlDomainEventDeregister(virConnectPtr conn,
                         virConnectDomainEventCallback callback)
{
    struct uml_driver *driver = conn->privateData;
    int ret;

    umlDriverLock(driver);
    ret = virDomainEventStateDeregister(conn,
                                        driver->domainEventState,
                                        callback);
    umlDriverUnlock(driver);

    return ret;
}

static int
umlDomainEventRegisterAny(virConnectPtr conn,
                          virDomainPtr dom,
                          int eventID,
                          virConnectDomainEventGenericCallback callback,
                          void *opaque,
                          virFreeCallback freecb)
{
    struct uml_driver *driver = conn->privateData;
    int ret;

    umlDriverLock(driver);
2508 2509 2510 2511
    if (virDomainEventStateRegisterID(conn,
                                      driver->domainEventState,
                                      dom, eventID,
                                      callback, opaque, freecb, &ret) < 0)
2512
        ret = -1;
2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526
    umlDriverUnlock(driver);

    return ret;
}


static int
umlDomainEventDeregisterAny(virConnectPtr conn,
                            int callbackID)
{
    struct uml_driver *driver = conn->privateData;
    int ret;

    umlDriverLock(driver);
2527 2528 2529
    ret = virDomainEventStateDeregisterID(conn,
                                          driver->domainEventState,
                                          callbackID);
2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542
    umlDriverUnlock(driver);

    return ret;
}


/* driver must be locked before calling */
static void umlDomainEventQueue(struct uml_driver *driver,
                                virDomainEventPtr event)
{
    virDomainEventStateQueue(driver->domainEventState, event);
}

2543 2544 2545 2546 2547 2548 2549
static int umlListAllDomains(virConnectPtr conn,
                             virDomainPtr **domains,
                             unsigned int flags)
{
    struct uml_driver *driver = conn->privateData;
    int ret = -1;

O
Osier Yang 已提交
2550
    virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ALL, -1);
2551 2552 2553 2554 2555 2556 2557 2558

    umlDriverLock(driver);
    ret = virDomainList(conn, driver->domains.objs, domains, flags);
    umlDriverUnlock(driver);

    return ret;
}

2559 2560


2561
static virDriver umlDriver = {
2562 2563
    .no = VIR_DRV_UML,
    .name = "UML",
2564 2565 2566 2567 2568 2569 2570 2571 2572
    .open = umlOpen, /* 0.5.0 */
    .close = umlClose, /* 0.5.0 */
    .type = umlGetType, /* 0.5.0 */
    .version = umlGetVersion, /* 0.5.0 */
    .getHostname = virGetHostname, /* 0.5.0 */
    .nodeGetInfo = nodeGetInfo, /* 0.5.0 */
    .getCapabilities = umlGetCapabilities, /* 0.5.0 */
    .listDomains = umlListDomains, /* 0.5.0 */
    .numOfDomains = umlNumDomains, /* 0.5.0 */
2573
    .listAllDomains = umlListAllDomains, /* 0.9.13 */
2574 2575 2576 2577 2578
    .domainCreateXML = umlDomainCreate, /* 0.5.0 */
    .domainLookupByID = umlDomainLookupByID, /* 0.5.0 */
    .domainLookupByUUID = umlDomainLookupByUUID, /* 0.5.0 */
    .domainLookupByName = umlDomainLookupByName, /* 0.5.0 */
    .domainShutdown = umlDomainShutdown, /* 0.5.0 */
2579
    .domainShutdownFlags = umlDomainShutdownFlags, /* 0.9.10 */
2580
    .domainDestroy = umlDomainDestroy, /* 0.5.0 */
2581
    .domainDestroyFlags = umlDomainDestroyFlags, /* 0.9.4 */
2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594
    .domainGetOSType = umlDomainGetOSType, /* 0.5.0 */
    .domainGetMaxMemory = umlDomainGetMaxMemory, /* 0.5.0 */
    .domainSetMaxMemory = umlDomainSetMaxMemory, /* 0.5.0 */
    .domainSetMemory = umlDomainSetMemory, /* 0.5.0 */
    .domainGetInfo = umlDomainGetInfo, /* 0.5.0 */
    .domainGetState = umlDomainGetState, /* 0.9.2 */
    .domainGetXMLDesc = umlDomainGetXMLDesc, /* 0.5.0 */
    .listDefinedDomains = umlListDefinedDomains, /* 0.5.0 */
    .numOfDefinedDomains = umlNumDefinedDomains, /* 0.5.0 */
    .domainCreate = umlDomainStart, /* 0.5.0 */
    .domainCreateWithFlags = umlDomainStartWithFlags, /* 0.8.2 */
    .domainDefineXML = umlDomainDefine, /* 0.5.0 */
    .domainUndefine = umlDomainUndefine, /* 0.5.0 */
2595
    .domainUndefineFlags = umlDomainUndefineFlags, /* 0.9.4 */
2596 2597 2598 2599 2600 2601 2602
    .domainAttachDevice = umlDomainAttachDevice, /* 0.8.4 */
    .domainAttachDeviceFlags = umlDomainAttachDeviceFlags, /* 0.8.4 */
    .domainDetachDevice = umlDomainDetachDevice, /* 0.8.4 */
    .domainDetachDeviceFlags = umlDomainDetachDeviceFlags, /* 0.8.4 */
    .domainGetAutostart = umlDomainGetAutostart, /* 0.5.0 */
    .domainSetAutostart = umlDomainSetAutostart, /* 0.5.0 */
    .domainBlockPeek = umlDomainBlockPeek, /* 0.5.0 */
2603
    .nodeGetCPUStats = nodeGetCPUStats, /* 0.9.3 */
2604
    .nodeGetMemoryStats = nodeGetMemoryStats, /* 0.9.3 */
2605 2606
    .nodeGetCellsFreeMemory = nodeGetCellsFreeMemory, /* 0.5.0 */
    .nodeGetFreeMemory = nodeGetFreeMemory, /* 0.5.0 */
2607
    .nodeGetCPUMap = nodeGetCPUMap, /* 1.0.0 */
2608 2609
    .domainEventRegister = umlDomainEventRegister, /* 0.9.4 */
    .domainEventDeregister = umlDomainEventDeregister, /* 0.9.4 */
2610 2611 2612 2613 2614
    .isEncrypted = umlIsEncrypted, /* 0.7.3 */
    .isSecure = umlIsSecure, /* 0.7.3 */
    .domainIsActive = umlDomainIsActive, /* 0.7.3 */
    .domainIsPersistent = umlDomainIsPersistent, /* 0.7.3 */
    .domainIsUpdated = umlDomainIsUpdated, /* 0.8.6 */
2615 2616
    .domainEventRegisterAny = umlDomainEventRegisterAny, /* 0.9.4 */
    .domainEventDeregisterAny = umlDomainEventDeregisterAny, /* 0.9.4 */
2617
    .domainOpenConsole = umlDomainOpenConsole, /* 0.8.6 */
2618
    .isAlive = umlIsAlive, /* 0.9.8 */
2619
    .nodeSuspendForDuration = nodeSuspendForDuration, /* 0.9.8 */
2620 2621
    .nodeGetMemoryParameters = nodeGetMemoryParameters, /* 0.10.2 */
    .nodeSetMemoryParameters = nodeSetMemoryParameters, /* 0.10.2 */
2622 2623 2624
};

static virStateDriver umlStateDriver = {
2625
    .name = "UML",
2626 2627 2628 2629 2630 2631 2632 2633 2634 2635
    .initialize = umlStartup,
    .cleanup = umlShutdown,
    .reload = umlReload,
};

int umlRegister(void) {
    virRegisterDriver(&umlDriver);
    virRegisterStateDriver(&umlStateDriver);
    return 0;
}