uml_driver.c 71.4 KB
Newer Older
1 2 3
/*
 * uml_driver.c: core driver methods for managing UML guests
 *
4
 * Copyright (C) 2006-2011 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#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

67 68
#define VIR_FROM_THIS VIR_FROM_UML

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

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

79 80 81 82 83 84 85 86 87 88
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);

89

90 91
static int umlShutdown(void);

92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
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);
}


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

122

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

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

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


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

static struct uml_driver *uml_driver = NULL;

147 148 149 150 151 152
struct umlAutostartData {
    struct uml_driver *driver;
    virConnectPtr conn;
};

static void
153
umlAutostartDomain(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
154 155 156 157 158 159
{
    virDomainObjPtr vm = payload;
    const struct umlAutostartData *data = opaque;

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
160
        !virDomainObjIsActive(vm)) {
161
        int ret;
162
        virResetLastError();
163
        ret = umlStartVMDaemon(data->conn, data->driver, vm, false);
164 165
        virDomainAuditStart(vm, "booted", ret >= 0);
        if (ret < 0) {
166 167
            virErrorPtr err = virGetLastError();
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
168
                      vm->def->name, err ? err->message : _("unknown error"));
169 170 171 172 173 174 175
        } else {
            virDomainEventPtr event =
                virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);
            if (event)
                umlDomainEventQueue(data->driver, event);
176 177 178 179
        }
    }
    virDomainObjUnlock(vm);
}
180 181 182

static void
umlAutostartConfigs(struct uml_driver *driver) {
183 184 185 186 187
    /* 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
     */
188 189 190
    virConnectPtr conn = virConnectOpen(driver->privileged ?
                                        "uml:///system" :
                                        "uml:///session");
191
    /* Ignoring NULL conn which is mostly harmless here */
192

193 194
    struct umlAutostartData data = { driver, conn };

195
    umlDriverLock(driver);
196
    virHashForEach(driver->domains.objs, umlAutostartDomain, &data);
197
    umlDriverUnlock(driver);
198

199 200
    if (conn)
        virConnectClose(conn);
201 202 203 204
}


static int
205
umlIdentifyOneChrPTY(struct uml_driver *driver,
206 207 208 209 210 211 212
                     virDomainObjPtr dom,
                     virDomainChrDefPtr def,
                     const char *dev)
{
    char *cmd;
    char *res = NULL;
    int retries = 0;
213
    if (virAsprintf(&cmd, "config %s%d", dev, def->target.port) < 0) {
214
        virReportOOMError();
215 216 217
        return -1;
    }
requery:
218
    if (umlMonitorCommand(driver, dom, cmd, &res) < 0)
219
        return -1;
220

221
    if (res && STRPREFIX(res, "pts:")) {
222 223
        VIR_FREE(def->source.data.file.path);
        if ((def->source.data.file.path = strdup(res + 4)) == NULL) {
224
            virReportOOMError();
225 226 227 228
            VIR_FREE(res);
            VIR_FREE(cmd);
            return -1;
        }
229
    } else if (!res || STRPREFIX(res, "pts")) {
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
        /* It can take a while to startup, so retry for
           upto 5 seconds */
        /* 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
246
umlIdentifyChrPTY(struct uml_driver *driver,
247 248 249 250
                  virDomainObjPtr dom)
{
    int i;

251 252
    for (i = 0 ; i < dom->def->nserials; i++)
        if (dom->def->consoles[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY)
253
        if (umlIdentifyOneChrPTY(driver, dom,
254
                                 dom->def->consoles[i], "con") < 0)
255 256 257
            return -1;

    for (i = 0 ; i < dom->def->nserials; i++)
258
        if (dom->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY &&
259
            umlIdentifyOneChrPTY(driver, dom,
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
                                 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;
278
    virDomainEventPtr event = NULL;
279

280
    umlDriverLock(driver);
281
    if (watch != driver->inotifyWatch)
282
        goto cleanup;
283 284 285 286 287 288

reread:
    got = read(fd, buf, sizeof(buf));
    if (got == -1) {
        if (errno == EINTR)
            goto reread;
289
        goto cleanup;
290 291 292 293 294
    }

    tmp = buf;
    while (got) {
        if (got < sizeof(struct inotify_event))
295
            goto cleanup; /* bad */
296 297 298 299 300 301

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

        if (got < e->len)
302
            goto cleanup;
303 304 305 306 307 308 309 310 311 312 313 314 315

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

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

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

        if (!dom) {
            continue;
        }

        if (e->mask & IN_DELETE) {
316
            VIR_DEBUG("Got inotify domain shutdown '%s'", name);
D
Daniel P. Berrange 已提交
317
            if (!virDomainObjIsActive(dom)) {
318
                virDomainObjUnlock(dom);
319 320 321
                continue;
            }

322
            umlShutdownVMDaemon(driver, dom, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
323
            virDomainAuditStop(dom, "shutdown");
324 325 326
            event = virDomainEventNewFromObj(dom,
                                             VIR_DOMAIN_EVENT_STOPPED,
                                             VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
327 328 329 330 331
            if (!dom->persistent) {
                virDomainRemoveInactive(&driver->domains,
                                        dom);
                dom = NULL;
            }
332
        } else if (e->mask & (IN_CREATE | IN_MODIFY)) {
333
            VIR_DEBUG("Got inotify domain startup '%s'", name);
D
Daniel P. Berrange 已提交
334
            if (virDomainObjIsActive(dom)) {
335
                virDomainObjUnlock(dom);
336 337 338
                continue;
            }

339
            if (umlReadPidFile(driver, dom) < 0) {
340
                virDomainObjUnlock(dom);
341 342 343 344
                continue;
            }

            dom->def->id = driver->nextvmid++;
J
Jiri Denemark 已提交
345 346
            virDomainObjSetState(dom, VIR_DOMAIN_RUNNING,
                                 VIR_DOMAIN_RUNNING_BOOTED);
347

348
            if (umlOpenMonitor(driver, dom) < 0) {
349
                VIR_WARN("Could not open monitor for new domain");
350
                umlShutdownVMDaemon(driver, dom,
J
Jiri Denemark 已提交
351
                                    VIR_DOMAIN_SHUTOFF_FAILED);
352
                virDomainAuditStop(dom, "failed");
353 354 355
                event = virDomainEventNewFromObj(dom,
                                                 VIR_DOMAIN_EVENT_STOPPED,
                                                 VIR_DOMAIN_EVENT_STOPPED_FAILED);
356 357 358 359 360
                if (!dom->persistent) {
                    virDomainRemoveInactive(&driver->domains,
                                            dom);
                    dom = NULL;
                }
361
            } else if (umlIdentifyChrPTY(driver, dom) < 0) {
362
                VIR_WARN("Could not identify character devices for new domain");
363
                umlShutdownVMDaemon(driver, dom,
J
Jiri Denemark 已提交
364
                                    VIR_DOMAIN_SHUTOFF_FAILED);
365
                virDomainAuditStop(dom, "failed");
366 367 368
                event = virDomainEventNewFromObj(dom,
                                                 VIR_DOMAIN_EVENT_STOPPED,
                                                 VIR_DOMAIN_EVENT_STOPPED_FAILED);
369 370 371 372 373
                if (!dom->persistent) {
                    virDomainRemoveInactive(&driver->domains,
                                            dom);
                    dom = NULL;
                }
374
            }
375
        }
376 377
        if (dom)
            virDomainObjUnlock(dom);
378
    }
379 380

cleanup:
381 382
    if (event)
        umlDomainEventQueue(driver, event);
383
    umlDriverUnlock(driver);
384 385 386 387 388 389 390 391
}

/**
 * umlStartup:
 *
 * Initialization function for the Uml daemon
 */
static int
392 393
umlStartup(int privileged)
{
394 395
    uid_t uid = geteuid();
    char *base = NULL;
396
    char *userdir = NULL;
397 398 399 400

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

401 402
    uml_driver->privileged = privileged;

403 404 405 406
    if (virMutexInit(&uml_driver->lock) < 0) {
        VIR_FREE(uml_driver);
        return -1;
    }
407 408
    umlDriverLock(uml_driver);

409 410
    /* Don't have a dom0 so start from 1 */
    uml_driver->nextvmid = 1;
411
    uml_driver->inotifyWatch = -1;
412

413 414 415
    if (virDomainObjListInit(&uml_driver->domains) < 0)
        goto error;

416
    uml_driver->domainEventState = virDomainEventStateNew();
417 418 419
    if (!uml_driver->domainEventState)
        goto error;

420
    userdir = virGetUserDirectory(uid);
421
    if (!userdir)
422
        goto error;
423

424
    if (privileged) {
425
        if (virAsprintf(&uml_driver->logDir,
426
                        "%s/log/libvirt/uml", LOCALSTATEDIR) == -1)
427 428
            goto out_of_memory;

429
        if ((base = strdup (SYSCONFDIR "/libvirt")) == NULL)
430
            goto out_of_memory;
431 432

        if (virAsprintf(&uml_driver->monitorDir,
433
                        "%s/run/libvirt/uml-guest", LOCALSTATEDIR) == -1)
434
            goto out_of_memory;
435
    } else {
436

437
        if (virAsprintf(&uml_driver->logDir,
438
                        "%s/.libvirt/uml/log", userdir) == -1)
439 440
            goto out_of_memory;

441
        if (virAsprintf(&base, "%s/.libvirt", userdir) == -1)
442 443
            goto out_of_memory;

444 445 446 447
        if (virAsprintf(&uml_driver->monitorDir,
                        "%s/.uml", userdir) == -1)
            goto out_of_memory;
    }
448 449 450 451

    /* Configuration paths are either ~/.libvirt/uml/... (session) or
     * /etc/libvirt/uml/... (system).
     */
452
    if (virAsprintf(&uml_driver->configDir, "%s/uml", base) == -1)
453 454
        goto out_of_memory;

455
    if (virAsprintf(&uml_driver->autostartDir, "%s/uml/autostart", base) == -1)
456 457 458 459 460 461 462
        goto out_of_memory;

    VIR_FREE(base);

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

463 464
    uml_driver->caps->privateDataAllocFunc = umlDomainObjPrivateAlloc;
    uml_driver->caps->privateDataFreeFunc = umlDomainObjPrivateFree;
465 466

    if ((uml_driver->inotifyFD = inotify_init()) < 0) {
467
        VIR_ERROR(_("cannot initialize inotify"));
468
        goto error;
469 470
    }

471
    if (virFileMakePath(uml_driver->monitorDir) < 0) {
472
        char ebuf[1024];
D
Daniel Veillard 已提交
473
        VIR_ERROR(_("Failed to create monitor directory %s: %s"),
474
               uml_driver->monitorDir, virStrerror(errno, ebuf, sizeof ebuf));
475
        goto error;
476 477
    }

478
    VIR_INFO("Adding inotify watch on %s", uml_driver->monitorDir);
479 480 481
    if (inotify_add_watch(uml_driver->inotifyFD,
                          uml_driver->monitorDir,
                          IN_CREATE | IN_MODIFY | IN_DELETE) < 0) {
482
        goto error;
483 484
    }

485 486
    if ((uml_driver->inotifyWatch =
         virEventAddHandle(uml_driver->inotifyFD, POLLIN,
487 488
                           umlInotifyEvent, uml_driver, NULL)) < 0)
        goto error;
489

490 491 492
    if (umlProcessAutoDestroyInit(uml_driver) < 0)
        goto error;

493
    if (virDomainLoadAllConfigs(uml_driver->caps,
494 495 496
                                &uml_driver->domains,
                                uml_driver->configDir,
                                uml_driver->autostartDir,
M
Matthias Bolte 已提交
497 498
                                0, 1 << VIR_DOMAIN_VIRT_UML,
                                NULL, NULL) < 0)
499 500
        goto error;

501 502
    umlDriverUnlock(uml_driver);

503 504
    umlAutostartConfigs(uml_driver);

505 506
    VIR_FREE(userdir);

507 508
    return 0;

509
out_of_memory:
510
    VIR_ERROR(_("umlStartup: out of memory"));
511 512

error:
513
    VIR_FREE(userdir);
514
    VIR_FREE(base);
515 516
    umlDriverUnlock(uml_driver);
    umlShutdown();
517 518 519
    return -1;
}

520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
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);
    }
}


535 536 537 538 539 540 541 542 543 544 545
/**
 * 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;

546
    umlDriverLock(uml_driver);
547
    virDomainLoadAllConfigs(uml_driver->caps,
548 549 550
                            &uml_driver->domains,
                            uml_driver->configDir,
                            uml_driver->autostartDir,
M
Matthias Bolte 已提交
551
                            0, 1 << VIR_DOMAIN_VIRT_UML,
552 553
                            umlNotifyLoadDomain, uml_driver);
    umlDriverUnlock(uml_driver);
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569

    umlAutostartConfigs(uml_driver);

    return 0;
}

/**
 * umlActive:
 *
 * Checks if the Uml daemon is active, i.e. has an active domain or
 * an active network
 *
 * Returns 1 if active, 0 otherwise
 */
static int
umlActive(void) {
570
    int active = 0;
571 572 573 574

    if (!uml_driver)
        return 0;

575
    umlDriverLock(uml_driver);
576
    active = virDomainObjListNumOfDomains(&uml_driver->domains, 1);
577
    umlDriverUnlock(uml_driver);
578

579
    return active;
580 581
}

582
static void
583
umlShutdownOneVM(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
584 585 586 587 588
{
    virDomainObjPtr dom = payload;
    struct uml_driver *driver = opaque;

    virDomainObjLock(dom);
589
    if (virDomainObjIsActive(dom)) {
590
        umlShutdownVMDaemon(driver, dom, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
591 592
        virDomainAuditStop(dom, "shutdown");
    }
593 594 595
    virDomainObjUnlock(dom);
}

596 597 598 599 600 601 602 603 604 605
/**
 * umlShutdown:
 *
 * Shutdown the Uml daemon, it will stop all active domains and networks
 */
static int
umlShutdown(void) {
    if (!uml_driver)
        return -1;

606
    umlDriverLock(uml_driver);
607 608
    if (uml_driver->inotifyWatch != -1)
        virEventRemoveHandle(uml_driver->inotifyWatch);
609
    VIR_FORCE_CLOSE(uml_driver->inotifyFD);
610 611
    virCapabilitiesFree(uml_driver->caps);

612 613 614
    /* shutdown active VMs
     * XXX allow them to stay around & reconnect */
    virHashForEach(uml_driver->domains.objs, umlShutdownOneVM, uml_driver);
615

616
    virDomainObjListDeinit(&uml_driver->domains);
617

618 619
    virDomainEventStateFree(uml_driver->domainEventState);

620 621 622 623 624
    VIR_FREE(uml_driver->logDir);
    VIR_FREE(uml_driver->configDir);
    VIR_FREE(uml_driver->autostartDir);
    VIR_FREE(uml_driver->monitorDir);

625 626
    umlProcessAutoDestroyShutdown(uml_driver);

627
    umlDriverUnlock(uml_driver);
628
    virMutexDestroy(&uml_driver->lock);
629 630 631 632 633 634
    VIR_FREE(uml_driver);

    return 0;
}


635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 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
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;
}


733
static int umlReadPidFile(struct uml_driver *driver,
734 735 736 737 738 739 740 741
                          virDomainObjPtr vm)
{
    int rc = -1;
    FILE *file;
    char *pidfile = NULL;
    int retries = 0;

    vm->pid = -1;
742 743
    if (virAsprintf(&pidfile, "%s/%s/pid",
                    driver->monitorDir, vm->def->name) < 0) {
744
        virReportOOMError();
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
        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;
760
        VIR_FORCE_FCLOSE(file);
761 762 763
        goto cleanup;
    }

764
    if (VIR_FCLOSE(file) < 0)
765 766 767 768 769 770
        goto cleanup;

    rc = 0;

 cleanup:
    if (rc != 0)
771
        virReportSystemError(errno,
772 773
                             _("failed to read pid: %s"),
                             pidfile);
774 775 776 777
    VIR_FREE(pidfile);
    return rc;
}

778
static int umlMonitorAddress(const struct uml_driver *driver,
779 780 781
                             virDomainObjPtr vm,
                             struct sockaddr_un *addr) {
    char *sockname;
C
Chris Lalancette 已提交
782
    int retval = 0;
783

784 785
    if (virAsprintf(&sockname, "%s/%s/mconsole",
                    driver->monitorDir, vm->def->name) < 0) {
786
        virReportOOMError();
787 788 789 790 791
        return -1;
    }

    memset(addr, 0, sizeof *addr);
    addr->sun_family = AF_UNIX;
C
Chris Lalancette 已提交
792
    if (virStrcpyStatic(addr->sun_path, sockname) == NULL) {
793
        umlReportError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
794 795 796
                       _("Unix path %s too long for destination"), sockname);
        retval = -1;
    }
797
    VIR_FREE(sockname);
C
Chris Lalancette 已提交
798
    return retval;
799 800
}

801
static int umlOpenMonitor(struct uml_driver *driver,
802 803 804 805
                          virDomainObjPtr vm) {
    struct sockaddr_un addr;
    struct stat sb;
    int retries = 0;
806
    umlDomainObjPrivatePtr priv = vm->privateData;
807

808
    if (umlMonitorAddress(driver, vm, &addr) < 0)
809 810
        return -1;

811
    VIR_DEBUG("Dest address for monitor is '%s'", addr.sun_path);
812 813 814
restat:
    if (stat(addr.sun_path, &sb) < 0) {
        if (errno == ENOENT &&
815
            retries++ < 50) {
816 817 818 819 820 821
            usleep(1000 * 100);
            goto restat;
        }
        return -1;
    }

822
    if ((priv->monitor = socket(PF_UNIX, SOCK_DGRAM, 0)) < 0) {
823
        virReportSystemError(errno,
824
                             "%s", _("cannot open socket"));
825 826 827 828
        return -1;
    }

    memset(addr.sun_path, 0, sizeof addr.sun_path);
E
Eric Blake 已提交
829 830
    snprintf(addr.sun_path + 1, sizeof(addr.sun_path) - 1,
             "libvirt-uml-%u", vm->pid);
831
    VIR_DEBUG("Reply address for monitor is '%s'", addr.sun_path+1);
832
    if (bind(priv->monitor, (struct sockaddr *)&addr, sizeof addr) < 0) {
833
        virReportSystemError(errno,
834
                             "%s", _("cannot bind socket"));
835
        VIR_FORCE_CLOSE(priv->monitor);
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
        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];
};


862
static int umlMonitorCommand(const struct uml_driver *driver,
863 864 865 866 867 868 869 870 871 872
                             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;
873
    umlDomainObjPrivatePtr priv = vm->privateData;
874

875 876
    VIR_DEBUG("Run command '%s'", cmd);

877 878
    *reply = NULL;

879
    if (umlMonitorAddress(driver, vm, &addr) < 0)
880 881 882 883 884 885 886
        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)) {
887
        virReportSystemError(EINVAL,
888 889
                             _("cannot send too long command %s (%d bytes)"),
                             cmd, req.length);
890 891
        return -1;
    }
C
Chris Lalancette 已提交
892
    if (virStrcpyStatic(req.data, cmd) == NULL) {
893
        umlReportError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
894 895 896
                       _("Command %s too long for destination"), cmd);
        return -1;
    }
897

898
    if (sendto(priv->monitor, &req, sizeof req, 0,
899
               (struct sockaddr *)&addr, sizeof addr) != (sizeof req)) {
900
        virReportSystemError(errno,
901 902
                             _("cannot send command %s"),
                             cmd);
903 904 905 906
        return -1;
    }

    do {
E
Eric Blake 已提交
907
        ssize_t nbytes;
908
        addrlen = sizeof(addr);
E
Eric Blake 已提交
909
        nbytes = recvfrom(priv->monitor, &res, sizeof res, 0,
910
                          (struct sockaddr *)&addr, &addrlen);
E
Eric Blake 已提交
911 912 913
        if (nbytes < 0) {
            if (errno == EAGAIN || errno == EINTR)
                continue;
914
            virReportSystemError(errno, _("cannot read reply %s"), cmd);
915 916
            goto error;
        }
917 918 919
        /* 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) {
920 921 922
            virReportSystemError(0, _("incomplete reply %s"), cmd);
            goto error;
        }
923 924

        if (VIR_REALLOC_N(retdata, retlen + res.length) < 0) {
925
            virReportOOMError();
926 927 928 929 930 931 932 933 934 935 936
            goto error;
        }
        memcpy(retdata + retlen, res.data, res.length);
        retlen += res.length - 1;
        retdata[retlen] = '\0';

        if (res.error)
            ret = -1;

    } while (res.extra);

937 938
    VIR_DEBUG("Command reply is '%s'", NULLSTR(retdata));

939 940 941 942
    if (ret < 0)
        VIR_FREE(retdata);
    else
        *reply = retdata;
943 944 945 946 947 948 949 950 951

    return ret;

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


952
static void umlCleanupTapDevices(virDomainObjPtr vm) {
953 954 955 956 957 958 959 960 961
    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;

962
        ignore_value(virNetDevTapDelete(def->ifname));
963 964 965
    }
}

966 967
static int umlStartVMDaemon(virConnectPtr conn,
                            struct uml_driver *driver,
968 969
                            virDomainObjPtr vm,
                            bool autoDestroy) {
970
    int ret = -1;
971 972
    char *logfile;
    int logfd = -1;
973
    umlDomainObjPrivatePtr priv = vm->privateData;
D
Daniel P. Berrange 已提交
974
    virCommandPtr cmd = NULL;
975
    size_t i;
976

D
Daniel P. Berrange 已提交
977
    if (virDomainObjIsActive(vm)) {
978
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
979
                       _("VM is already active"));
980 981 982 983
        return -1;
    }

    if (!vm->def->os.kernel) {
984 985
        umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("no kernel specified"));
986 987 988 989 990 991
        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 已提交
992
    if (!virFileIsExecutable(vm->def->os.kernel)) {
993
        virReportSystemError(errno,
994 995
                             _("Cannot find UML kernel %s"),
                             vm->def->os.kernel);
996 997 998
        return -1;
    }

999
    if (virFileMakePath(driver->logDir) < 0) {
1000
        virReportSystemError(errno,
1001 1002
                             _("cannot create log directory %s"),
                             driver->logDir);
1003 1004 1005
        return -1;
    }

1006 1007
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1008
        virReportOOMError();
1009 1010 1011 1012 1013
        return -1;
    }

    if ((logfd = open(logfile, O_CREAT | O_TRUNC | O_WRONLY,
                      S_IRUSR | S_IWUSR)) < 0) {
1014
        virReportSystemError(errno,
1015 1016
                             _("failed to create logfile %s"),
                             logfile);
1017 1018 1019 1020 1021
        VIR_FREE(logfile);
        return -1;
    }
    VIR_FREE(logfile);

E
Eric Blake 已提交
1022 1023 1024
    if (virSetCloseExec(logfd) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to set VM logfile close-on-exec flag"));
1025
        VIR_FORCE_CLOSE(logfd);
1026 1027 1028
        return -1;
    }

1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
    /* 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;
    }

1039 1040
    if (!(cmd = umlBuildCommandLine(conn, driver, vm)))
        goto cleanup;
1041

1042 1043 1044 1045 1046 1047 1048 1049
    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 已提交
1050
    virCommandWriteArgLog(cmd, logfd);
1051

1052
    priv->monitor = -1;
1053

D
Daniel P. Berrange 已提交
1054 1055 1056 1057 1058 1059
    virCommandClearCaps(cmd);
    virCommandSetOutputFD(cmd, &logfd);
    virCommandSetErrorFD(cmd, &logfd);
    virCommandDaemonize(cmd);

    ret = virCommandRun(cmd, NULL);
1060 1061
    if (ret < 0)
        goto cleanup;
1062

1063
    if (autoDestroy &&
1064
        (ret = umlProcessAutoDestroyAdd(driver, vm, conn)) < 0)
1065 1066
        goto cleanup;

1067
    ret = virDomainObjSetDefTransient(driver->caps, vm, false);
1068
cleanup:
1069
    VIR_FORCE_CLOSE(logfd);
D
Daniel P. Berrange 已提交
1070
    virCommandFree(cmd);
1071

1072 1073
    if (ret < 0) {
        virDomainConfVMNWFilterTeardown(vm);
1074
        umlCleanupTapDevices(vm);
1075 1076 1077 1078 1079 1080
        if (vm->newDef) {
            virDomainDefFree(vm->def);
            vm->def = vm->newDef;
            vm->def->id = -1;
            vm->newDef = NULL;
        }
1081 1082
    }

1083 1084
    /* NB we don't mark it running here - we do that async
       with inotify */
1085 1086 1087
    /* XXX what if someone else tries to start it again
       before we get the inotification ? Sounds like
       trouble.... */
1088
    /* XXX this is bad for events too. must fix this better */
1089 1090 1091 1092

    return ret;
}

1093
static void umlShutdownVMDaemon(struct uml_driver *driver,
J
Jiri Denemark 已提交
1094 1095
                                virDomainObjPtr vm,
                                virDomainShutoffReason reason)
1096 1097
{
    int ret;
1098 1099
    umlDomainObjPrivatePtr priv = vm->privateData;

D
Daniel P. Berrange 已提交
1100
    if (!virDomainObjIsActive(vm))
1101 1102
        return;

1103
    virKillProcess(vm->pid, SIGTERM);
1104

1105
    VIR_FORCE_CLOSE(priv->monitor);
1106 1107

    if ((ret = waitpid(vm->pid, NULL, 0)) != vm->pid) {
1108
        VIR_WARN("Got unexpected pid %d != %d",
1109 1110 1111 1112 1113
               ret, vm->pid);
    }

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

1116
    virDomainConfVMNWFilterTeardown(vm);
1117 1118 1119 1120
    umlCleanupTapDevices(vm);

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

1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }
}


static virDrvOpenStatus umlOpen(virConnectPtr conn,
                                virConnectAuthPtr auth ATTRIBUTE_UNUSED,
E
Eric Blake 已提交
1133 1134 1135 1136
                                unsigned int flags)
{
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

1137 1138 1139
    if (conn->uri == NULL) {
        if (uml_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
1140

1141
        conn->uri = xmlParseURI(uml_driver->privileged ?
1142 1143 1144
                                "uml:///system" :
                                "uml:///session");
        if (!conn->uri) {
1145
            virReportOOMError();
1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
            return VIR_DRV_OPEN_ERROR;
        }
    } else {
        if (conn->uri->scheme == NULL ||
            STRNEQ (conn->uri->scheme, "uml"))
            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;
1156 1157


1158
        /* Check path and tell them correct path if they made a mistake */
1159
        if (uml_driver->privileged) {
1160
            if (STRNEQ (conn->uri->path, "/system") &&
1161
                STRNEQ (conn->uri->path, "/session")) {
1162
                umlReportError(VIR_ERR_INTERNAL_ERROR,
1163 1164 1165 1166 1167 1168
                               _("unexpected UML URI path '%s', try uml:///system"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
        } else {
            if (STRNEQ (conn->uri->path, "/session")) {
1169
                umlReportError(VIR_ERR_INTERNAL_ERROR,
1170 1171 1172 1173
                               _("unexpected UML URI path '%s', try uml:///session"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
1174
        }
1175 1176 1177

        /* URI was good, but driver isn't active */
        if (uml_driver == NULL) {
1178
            umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
1179
                           _("uml state driver is not active"));
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
            return VIR_DRV_OPEN_ERROR;
        }
    }

    conn->privateData = uml_driver;

    return VIR_DRV_OPEN_SUCCESS;
}

static int umlClose(virConnectPtr conn) {
1190 1191 1192
    struct uml_driver *driver = conn->privateData;

    umlDriverLock(driver);
1193 1194
    virDomainEventStateDeregisterConn(conn,
                                      driver->domainEventState);
1195
    umlProcessAutoDestroyRun(driver, conn);
1196
    umlDriverUnlock(driver);
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207

    conn->privateData = NULL;

    return 0;
}

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


1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
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;
}


1222 1223 1224 1225 1226 1227
static int umlIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return 1;
}


1228 1229 1230 1231
static char *umlGetCapabilities(virConnectPtr conn) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
    char *xml;

1232
    umlDriverLock(driver);
1233
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
1234
        virReportOOMError();
1235
    umlDriverUnlock(driver);
1236 1237 1238 1239 1240 1241

    return xml;
}



1242 1243 1244
static int umlGetProcessInfo(unsigned long long *cpuTime, int pid)
{
    char *proc;
1245 1246 1247
    FILE *pidinfo;
    unsigned long long usertime, systime;

1248
    if (virAsprintf(&proc, "/proc/%d/stat", pid) < 0) {
1249 1250 1251 1252 1253 1254
        return -1;
    }

    if (!(pidinfo = fopen(proc, "r"))) {
        /* VM probably shut down, so fake 0 */
        *cpuTime = 0;
1255
        VIR_FREE(proc);
1256 1257 1258
        return 0;
    }

1259 1260
    VIR_FREE(proc);

1261 1262
    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");
1263
        VIR_FORCE_FCLOSE(pidinfo);
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
        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);

1276
    VIR_FORCE_FCLOSE(pidinfo);
1277 1278 1279 1280 1281 1282 1283 1284

    return 0;
}


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

1288
    umlDriverLock(driver);
1289
    vm = virDomainFindByID(&driver->domains, id);
1290 1291
    umlDriverUnlock(driver);

1292
    if (!vm) {
1293
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1294
        goto cleanup;
1295 1296 1297 1298
    }

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

cleanup:
1301 1302
    if (vm)
        virDomainObjUnlock(vm);
1303 1304
    return dom;
}
1305

1306 1307 1308
static virDomainPtr umlDomainLookupByUUID(virConnectPtr conn,
                                            const unsigned char *uuid) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1309 1310
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1311

1312
    umlDriverLock(driver);
1313
    vm = virDomainFindByUUID(&driver->domains, uuid);
1314 1315
    umlDriverUnlock(driver);

1316
    if (!vm) {
1317
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1318
        goto cleanup;
1319 1320 1321 1322
    }

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

cleanup:
1325 1326
    if (vm)
        virDomainObjUnlock(vm);
1327 1328
    return dom;
}
1329

1330 1331 1332
static virDomainPtr umlDomainLookupByName(virConnectPtr conn,
                                            const char *name) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1333 1334
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1335

1336
    umlDriverLock(driver);
1337
    vm = virDomainFindByName(&driver->domains, name);
1338 1339
    umlDriverUnlock(driver);

1340
    if (!vm) {
1341
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1342
        goto cleanup;
1343 1344 1345 1346
    }

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

cleanup:
1349 1350
    if (vm)
        virDomainObjUnlock(vm);
1351 1352 1353
    return dom;
}

1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364

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) {
1365
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
        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) {
1387
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
        goto cleanup;
    }
    ret = obj->persistent;

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

1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
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) {
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
        goto cleanup;
    }
    ret = obj->updated;

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

1419
static int umlGetVersion(virConnectPtr conn, unsigned long *version) {
1420
    struct uml_driver *driver = conn->privateData;
1421
    struct utsname ut;
1422
    int ret = -1;
1423

1424
    umlDriverLock(driver);
1425 1426 1427 1428

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

1429
        if (virParseVersionString(ut.release, &driver->umlVersion, true) < 0) {
1430
            umlReportError(VIR_ERR_INTERNAL_ERROR,
1431 1432 1433
                           _("cannot parse version %s"), ut.release);
            goto cleanup;
        }
1434 1435
    }

1436 1437 1438 1439 1440 1441
    *version = driver->umlVersion;
    ret = 0;

cleanup:
    umlDriverUnlock(driver);
    return ret;
1442 1443 1444
}

static int umlListDomains(virConnectPtr conn, int *ids, int nids) {
1445
    struct uml_driver *driver = conn->privateData;
1446
    int n;
1447

1448
    umlDriverLock(driver);
1449
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
1450
    umlDriverUnlock(driver);
1451

1452
    return n;
1453 1454
}
static int umlNumDomains(virConnectPtr conn) {
1455
    struct uml_driver *driver = conn->privateData;
1456
    int n;
1457

1458
    umlDriverLock(driver);
1459
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
1460
    umlDriverUnlock(driver);
1461 1462 1463 1464

    return n;
}
static virDomainPtr umlDomainCreate(virConnectPtr conn, const char *xml,
1465
                                      unsigned int flags) {
1466
    struct uml_driver *driver = conn->privateData;
1467
    virDomainDefPtr def;
1468
    virDomainObjPtr vm = NULL;
1469
    virDomainPtr dom = NULL;
1470
    virDomainEventPtr event = NULL;
1471

1472
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, NULL);
1473

1474
    umlDriverLock(driver);
1475
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
1476
                                        1 << VIR_DOMAIN_VIRT_UML,
1477
                                        VIR_DOMAIN_XML_INACTIVE)))
1478
        goto cleanup;
1479

1480
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
1481
        goto cleanup;
1482

1483
    if (!(vm = virDomainAssignDef(driver->caps,
1484
                                  &driver->domains,
1485
                                  def, false)))
1486 1487
        goto cleanup;
    def = NULL;
1488

1489 1490
    if (umlStartVMDaemon(conn, driver, vm,
                         (flags & VIR_DOMAIN_START_AUTODESTROY)) < 0) {
1491
        virDomainAuditStart(vm, "booted", false);
1492 1493
        virDomainRemoveInactive(&driver->domains,
                                vm);
1494 1495
        vm = NULL;
        goto cleanup;
1496
    }
1497
    virDomainAuditStart(vm, "booted", true);
1498 1499 1500
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);
1501 1502 1503

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1504 1505 1506

cleanup:
    virDomainDefFree(def);
1507 1508
    if (vm)
        virDomainObjUnlock(vm);
1509 1510
    if (event)
        umlDomainEventQueue(driver, event);
1511
    umlDriverUnlock(driver);
1512 1513 1514 1515 1516
    return dom;
}


static int umlDomainShutdown(virDomainPtr dom) {
1517 1518
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1519
    char *info = NULL;
1520
    int ret = -1;
1521

1522
    umlDriverLock(driver);
1523
    vm = virDomainFindByID(&driver->domains, dom->id);
1524
    umlDriverUnlock(driver);
1525
    if (!vm) {
1526
        umlReportError(VIR_ERR_NO_DOMAIN,
1527
                       _("no domain with matching id %d"), dom->id);
1528
        goto cleanup;
1529 1530 1531 1532
    }

#if 0
    if (umlMonitorCommand(driver, vm, "system_powerdown", &info) < 0) {
1533 1534
        umlReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("shutdown operation failed"));
1535
        goto cleanup;
1536
    }
1537
    ret = 0;
1538 1539
#endif

1540 1541
cleanup:
    VIR_FREE(info);
1542 1543
    if (vm)
        virDomainObjUnlock(vm);
1544
    return ret;
1545 1546 1547
}


1548 1549 1550 1551
static int
umlDomainDestroyFlags(virDomainPtr dom,
                      unsigned int flags)
{
1552 1553
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1554
    virDomainEventPtr event = NULL;
1555
    int ret = -1;
1556

1557 1558
    virCheckFlags(0, -1);

1559
    umlDriverLock(driver);
1560
    vm = virDomainFindByID(&driver->domains, dom->id);
1561
    if (!vm) {
1562
        umlReportError(VIR_ERR_NO_DOMAIN,
1563
                       _("no domain with matching id %d"), dom->id);
1564
        goto cleanup;
1565 1566
    }

1567
    umlShutdownVMDaemon(driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
1568
    virDomainAuditStop(vm, "destroyed");
1569 1570 1571
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1572
    if (!vm->persistent) {
1573 1574
        virDomainRemoveInactive(&driver->domains,
                                vm);
1575 1576 1577
        vm = NULL;
    }
    ret = 0;
1578

1579
cleanup:
1580 1581
    if (vm)
        virDomainObjUnlock(vm);
1582 1583
    if (event)
        umlDomainEventQueue(driver, event);
1584
    umlDriverUnlock(driver);
1585
    return ret;
1586 1587 1588
}


1589 1590 1591 1592 1593 1594
static int umlDomainDestroy(virDomainPtr dom)
{
    return umlDomainDestroyFlags(dom, 0);
}


1595
static char *umlDomainGetOSType(virDomainPtr dom) {
1596 1597 1598
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *type = NULL;
1599

1600
    umlDriverLock(driver);
1601
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1602
    umlDriverUnlock(driver);
1603
    if (!vm) {
1604
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1605
                       _("no domain with matching uuid"));
1606
        goto cleanup;
1607 1608
    }

1609
    if (!(type = strdup(vm->def->os.type)))
1610
        virReportOOMError();
1611 1612

cleanup:
1613 1614
    if (vm)
        virDomainObjUnlock(vm);
1615 1616 1617 1618 1619
    return type;
}

/* Returns max memory in kb, 0 if error */
static unsigned long umlDomainGetMaxMemory(virDomainPtr dom) {
1620 1621 1622
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    unsigned long ret = 0;
1623

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

1628 1629 1630 1631
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
1632
        umlReportError(VIR_ERR_NO_DOMAIN,
1633 1634
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
1635
    }
1636
    ret = vm->def->mem.max_balloon;
1637

1638
cleanup:
1639 1640
    if (vm)
        virDomainObjUnlock(vm);
1641
    return ret;
1642 1643 1644
}

static int umlDomainSetMaxMemory(virDomainPtr dom, unsigned long newmax) {
1645 1646 1647
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1648

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

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

        virUUIDFormat(dom->uuid, uuidstr);
1657
        umlReportError(VIR_ERR_NO_DOMAIN,
1658
                       _("no domain with matching uuid '%s'"), uuidstr);
1659
        goto cleanup;
1660 1661
    }

1662
    if (newmax < vm->def->mem.cur_balloon) {
1663 1664
        umlReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("cannot set max memory lower than current memory"));
1665
        goto cleanup;
1666 1667
    }

1668
    vm->def->mem.max_balloon = newmax;
1669 1670 1671
    ret = 0;

cleanup:
1672 1673
    if (vm)
        virDomainObjUnlock(vm);
1674
    return ret;
1675 1676 1677
}

static int umlDomainSetMemory(virDomainPtr dom, unsigned long newmem) {
1678 1679 1680
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1681

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

1686 1687 1688 1689
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
1690
        umlReportError(VIR_ERR_NO_DOMAIN,
1691
                       _("no domain with matching uuid '%s'"), uuidstr);
1692
        goto cleanup;
1693 1694
    }

D
Daniel P. Berrange 已提交
1695
    if (virDomainObjIsActive(vm)) {
1696
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
1697
                       _("cannot set memory of an active domain"));
1698
        goto cleanup;
1699 1700
    }

1701
    if (newmem > vm->def->mem.max_balloon) {
1702 1703
        umlReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("cannot set memory higher than max memory"));
1704
        goto cleanup;
1705 1706
    }

1707
    vm->def->mem.cur_balloon = newmem;
1708 1709 1710
    ret = 0;

cleanup:
1711 1712
    if (vm)
        virDomainObjUnlock(vm);
1713
    return ret;
1714 1715 1716 1717
}

static int umlDomainGetInfo(virDomainPtr dom,
                              virDomainInfoPtr info) {
1718 1719 1720 1721
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

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

1726
    if (!vm) {
1727
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1728
                       _("no domain with matching uuid"));
1729
        goto cleanup;
1730 1731
    }

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

D
Daniel P. Berrange 已提交
1734
    if (!virDomainObjIsActive(vm)) {
1735 1736 1737
        info->cpuTime = 0;
    } else {
        if (umlGetProcessInfo(&(info->cpuTime), vm->pid) < 0) {
1738 1739
            umlReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("cannot read cputime for domain"));
1740
            goto cleanup;
1741 1742 1743
        }
    }

1744 1745
    info->maxMem = vm->def->mem.max_balloon;
    info->memory = vm->def->mem.cur_balloon;
1746
    info->nrVirtCpu = vm->def->vcpus;
1747 1748 1749
    ret = 0;

cleanup:
1750 1751
    if (vm)
        virDomainObjUnlock(vm);
1752
    return ret;
1753 1754 1755
}


1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777
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) {
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
                       _("no domain with matching uuid"));
        goto cleanup;
    }

J
Jiri Denemark 已提交
1778
    *state = virDomainObjGetState(vm, reason);
1779 1780 1781 1782 1783 1784 1785 1786 1787
    ret = 0;

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


1788
static char *umlDomainGetXMLDesc(virDomainPtr dom,
E
Eric Blake 已提交
1789 1790
                                 unsigned int flags)
{
1791 1792 1793 1794
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;

1795
    /* Flags checked by virDomainDefFormat */
E
Eric Blake 已提交
1796

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

1801
    if (!vm) {
1802
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1803
                       _("no domain with matching uuid"));
1804
        goto cleanup;
1805 1806
    }

1807
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) && vm->newDef ?
1808 1809 1810 1811
                             vm->newDef : vm->def,
                             flags);

cleanup:
1812 1813
    if (vm)
        virDomainObjUnlock(vm);
1814
    return ret;
1815 1816 1817 1818 1819
}


static int umlListDefinedDomains(virConnectPtr conn,
                            char **const names, int nnames) {
1820
    struct uml_driver *driver = conn->privateData;
1821
    int n;
1822

1823
    umlDriverLock(driver);
1824
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
1825
    umlDriverUnlock(driver);
1826

1827
    return n;
1828 1829 1830
}

static int umlNumDefinedDomains(virConnectPtr conn) {
1831
    struct uml_driver *driver = conn->privateData;
1832
    int n;
1833

1834
    umlDriverLock(driver);
1835
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
1836
    umlDriverUnlock(driver);
1837 1838 1839 1840 1841

    return n;
}


1842
static int umlDomainStartWithFlags(virDomainPtr dom, unsigned int flags) {
1843 1844
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1845
    virDomainEventPtr event = NULL;
1846
    int ret = -1;
1847

1848
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, -1);
1849

1850
    umlDriverLock(driver);
1851
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1852

1853
    if (!vm) {
1854
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1855
                       _("no domain with matching uuid"));
1856
        goto cleanup;
1857 1858
    }

1859 1860
    ret = umlStartVMDaemon(dom->conn, driver, vm,
                           (flags & VIR_DOMAIN_START_AUTODESTROY));
1861
    virDomainAuditStart(vm, "booted", ret >= 0);
1862 1863 1864 1865
    if (ret == 0)
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);
1866 1867

cleanup:
1868 1869
    if (vm)
        virDomainObjUnlock(vm);
1870 1871
    if (event)
        umlDomainEventQueue(driver, event);
1872
    umlDriverUnlock(driver);
1873
    return ret;
1874 1875
}

1876 1877 1878
static int umlDomainStart(virDomainPtr dom) {
    return umlDomainStartWithFlags(dom, 0);
}
1879 1880

static virDomainPtr umlDomainDefine(virConnectPtr conn, const char *xml) {
1881
    struct uml_driver *driver = conn->privateData;
1882
    virDomainDefPtr def;
1883
    virDomainObjPtr vm = NULL;
1884
    virDomainPtr dom = NULL;
1885

1886
    umlDriverLock(driver);
1887
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
1888
                                        1 << VIR_DOMAIN_VIRT_UML,
1889
                                        VIR_DOMAIN_XML_INACTIVE)))
1890
        goto cleanup;
1891

1892 1893 1894
    if (virDomainObjIsDuplicate(&driver->domains, def, 0) < 0)
        goto cleanup;

1895
    if (!(vm = virDomainAssignDef(driver->caps,
1896
                                  &driver->domains,
1897
                                  def, false)))
1898 1899
        goto cleanup;
    def = NULL;
1900 1901
    vm->persistent = 1;

1902
    if (virDomainSaveConfig(driver->configDir,
1903 1904 1905
                            vm->newDef ? vm->newDef : vm->def) < 0) {
        virDomainRemoveInactive(&driver->domains,
                                vm);
1906
        vm = NULL;
1907
        goto cleanup;
1908 1909 1910 1911
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1912 1913 1914

cleanup:
    virDomainDefFree(def);
1915 1916 1917
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1918 1919 1920
    return dom;
}

1921 1922 1923
static int umlDomainUndefineFlags(virDomainPtr dom,
                                  unsigned int flags)
{
1924 1925 1926
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1927

1928 1929
    virCheckFlags(0, -1);

1930
    umlDriverLock(driver);
1931
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1932
    if (!vm) {
1933
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1934
                       _("no domain with matching uuid"));
1935
        goto cleanup;
1936 1937 1938
    }

    if (!vm->persistent) {
1939
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
1940
                       _("cannot undefine transient domain"));
1941
        goto cleanup;
1942 1943
    }

1944
    if (virDomainDeleteConfig(driver->configDir, driver->autostartDir, vm) < 0)
1945
        goto cleanup;
1946

1947 1948 1949 1950 1951 1952 1953
    if (virDomainObjIsActive(vm)) {
        vm->persistent = 0;
    } else {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }

1954
    ret = 0;
1955

1956
cleanup:
1957 1958 1959
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1960
    return ret;
1961 1962 1963
}


1964 1965 1966 1967 1968
static int umlDomainUndefine(virDomainPtr dom)
{
    return umlDomainUndefineFlags(dom, 0);
}

1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 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 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076
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)) {
            umlReportError(VIR_ERR_OPERATION_FAILED,
                           _("target %s already exists"), disk->dst);
            return -1;
        }
    }

    if (!disk->src) {
        umlReportError(VIR_ERR_INTERNAL_ERROR,
                       "%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);
        umlReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
        umlReportError(VIR_ERR_OPERATION_INVALID,
                       "%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 {
            umlReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("disk bus '%s' cannot be hotplugged."),
                           virDomainDiskBusTypeToString(dev->data.disk->bus));
        }
    } else {
        umlReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("device type '%s' cannot be attached"),
                       virDomainDeviceTypeToString(dev->type));
        goto cleanup;
    }

cleanup:

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


2077 2078 2079 2080 2081 2082 2083
static int
umlDomainAttachDeviceFlags(virDomainPtr dom,
                           const char *xml,
                           unsigned int flags)
{
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_AFFECT_CONFIG, -1);

2084
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 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 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188
        umlReportError(VIR_ERR_OPERATION_INVALID,
                       "%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) {
        umlReportError(VIR_ERR_OPERATION_FAILED,
                       _("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);
        umlReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
        umlReportError(VIR_ERR_OPERATION_INVALID,
                       "%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 {
            umlReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("This type of disk cannot be hot unplugged"));
        }
    } else {
        umlReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       "%s", _("This type of device cannot be hot unplugged"));
    }

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


2189 2190 2191 2192 2193 2194 2195
static int
umlDomainDetachDeviceFlags(virDomainPtr dom,
                           const char *xml,
                           unsigned int flags)
{
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_AFFECT_CONFIG, -1);

2196
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
2197 2198 2199 2200 2201 2202 2203 2204
        umlReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("cannot modify the persistent configuration of a domain"));
        return -1;
    }

    return umlDomainDetachDevice(dom, xml);
}

2205 2206 2207

static int umlDomainGetAutostart(virDomainPtr dom,
                            int *autostart) {
2208 2209 2210
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
2211

2212
    umlDriverLock(driver);
2213
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
2214

2215
    if (!vm) {
2216
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
2217
                       _("no domain with matching uuid"));
2218
        goto cleanup;
2219 2220 2221
    }

    *autostart = vm->autostart;
2222
    ret = 0;
2223

2224
cleanup:
2225 2226
    if (vm)
        virDomainObjUnlock(vm);
2227
    umlDriverUnlock(driver);
2228
    return ret;
2229 2230 2231 2232
}

static int umlDomainSetAutostart(virDomainPtr dom,
                                   int autostart) {
2233
    struct uml_driver *driver = dom->conn->privateData;
2234
    virDomainObjPtr vm;
2235 2236 2237
    char *configFile = NULL, *autostartLink = NULL;
    int ret = -1;

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

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

    if (!vm->persistent) {
2248
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
2249
                       _("cannot set autostart for transient domain"));
2250
        goto cleanup;
2251 2252 2253 2254
    }

    autostart = (autostart != 0);

2255
    if (vm->autostart != autostart) {
2256
        if ((configFile = virDomainConfigFile(driver->configDir, vm->def->name)) == NULL)
2257
            goto cleanup;
2258
        if ((autostartLink = virDomainConfigFile(driver->autostartDir, vm->def->name)) == NULL)
2259
            goto cleanup;
2260

2261
        if (autostart) {
2262 2263
            if (virFileMakePath(driver->autostartDir) < 0) {
                virReportSystemError(errno,
2264 2265
                                     _("cannot create autostart directory %s"),
                                     driver->autostartDir);
2266 2267
                goto cleanup;
            }
2268

2269
            if (symlink(configFile, autostartLink) < 0) {
2270
                virReportSystemError(errno,
2271 2272
                                     _("Failed to create symlink '%s to '%s'"),
                                     autostartLink, configFile);
2273 2274 2275 2276
                goto cleanup;
            }
        } else {
            if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2277
                virReportSystemError(errno,
2278 2279
                                     _("Failed to delete symlink '%s'"),
                                     autostartLink);
2280 2281
                goto cleanup;
            }
2282 2283
        }

2284
        vm->autostart = autostart;
2285 2286 2287 2288 2289 2290
    }
    ret = 0;

cleanup:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
2291 2292
    if (vm)
        virDomainObjUnlock(vm);
2293
    umlDriverUnlock(driver);
2294 2295 2296 2297 2298
    return ret;
}


static int
2299 2300 2301 2302
umlDomainBlockPeek(virDomainPtr dom,
                   const char *path,
                   unsigned long long offset, size_t size,
                   void *buffer,
E
Eric Blake 已提交
2303
                   unsigned int flags)
2304
{
2305 2306
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
2307 2308
    int fd = -1, ret = -1;
    const char *actual;
2309

E
Eric Blake 已提交
2310 2311
    virCheckFlags(0, -1);

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

2316
    if (!vm) {
2317
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
2318
                       _("no domain with matching uuid"));
2319
        goto cleanup;
2320 2321 2322
    }

    if (!path || path[0] == '\0') {
2323 2324
        umlReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("NULL or empty path"));
2325
        goto cleanup;
2326 2327 2328
    }

    /* Check the path belongs to this domain. */
2329 2330 2331 2332
    if (!(actual = virDomainDiskPathByName(vm->def, path))) {
        umlReportError(VIR_ERR_INVALID_ARG,
                       _("invalid path '%s'"), path);
        goto cleanup;
2333
    }
2334
    path = actual;
2335

2336 2337 2338 2339 2340 2341 2342
    /* 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;
    }
2343

2344 2345 2346 2347 2348 2349 2350 2351 2352
    /* 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;
2353 2354
    }

2355 2356
    ret = 0;

2357
cleanup:
2358
    VIR_FORCE_CLOSE(fd);
2359 2360
    if (vm)
        virDomainObjUnlock(vm);
2361 2362 2363 2364
    return ret;
}


2365 2366
static int
umlDomainOpenConsole(virDomainPtr dom,
2367
                     const char *dev_name,
2368 2369 2370 2371 2372 2373 2374 2375
                     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;
2376
    size_t i;
2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394

    virCheckFlags(0, -1);

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

    if (!virDomainObjIsActive(vm)) {
        umlReportError(VIR_ERR_OPERATION_INVALID,
                        "%s", _("domain is not running"));
        goto cleanup;
    }

2395
    if (dev_name) {
2396 2397 2398 2399 2400 2401 2402
        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;
            }
        }
2403
    } else {
2404 2405
        if (vm->def->nconsoles)
            chr = vm->def->consoles[0];
2406 2407 2408 2409 2410 2411
        else if (vm->def->nserials)
            chr = vm->def->serials[0];
    }

    if (!chr) {
        umlReportError(VIR_ERR_INTERNAL_ERROR,
2412 2413
                       _("cannot find console device '%s'"),
                       dev_name ? dev_name : _("default"));
2414 2415 2416
        goto cleanup;
    }

2417
    if (chr->source.type != VIR_DOMAIN_CHR_TYPE_PTY) {
2418
        umlReportError(VIR_ERR_INTERNAL_ERROR,
2419
                        _("character device %s is not using a PTY"), dev_name);
2420 2421 2422
        goto cleanup;
    }

2423
    if (virFDStreamOpenFile(st, chr->source.data.file.path,
E
Eric Blake 已提交
2424
                            0, 0, O_RDWR) < 0)
2425 2426 2427 2428 2429 2430 2431 2432 2433 2434
        goto cleanup;

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

2435

2436 2437 2438 2439 2440 2441 2442 2443 2444 2445
static int
umlDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
{
    struct uml_driver *driver = conn->privateData;
    int ret;

    umlDriverLock(driver);
2446 2447 2448
    ret = virDomainEventStateRegister(conn,
                                      driver->domainEventState,
                                      callback, opaque, freecb);
2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481
    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);
2482 2483 2484 2485
    if (virDomainEventStateRegisterID(conn,
                                      driver->domainEventState,
                                      dom, eventID,
                                      callback, opaque, freecb, &ret) < 0)
2486
        ret = -1;
2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500
    umlDriverUnlock(driver);

    return ret;
}


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

    umlDriverLock(driver);
2501 2502 2503
    ret = virDomainEventStateDeregisterID(conn,
                                          driver->domainEventState,
                                          callbackID);
2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518
    umlDriverUnlock(driver);

    return ret;
}


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



2519
static virDriver umlDriver = {
2520 2521
    .no = VIR_DRV_UML,
    .name = "UML",
2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536
    .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 */
    .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 */
    .domainDestroy = umlDomainDestroy, /* 0.5.0 */
2537
    .domainDestroyFlags = umlDomainDestroyFlags, /* 0.9.4 */
2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550
    .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 */
2551
    .domainUndefineFlags = umlDomainUndefineFlags, /* 0.9.4 */
2552 2553 2554 2555 2556 2557 2558
    .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 */
2559
    .nodeGetCPUStats = nodeGetCPUStats, /* 0.9.3 */
2560
    .nodeGetMemoryStats = nodeGetMemoryStats, /* 0.9.3 */
2561 2562
    .nodeGetCellsFreeMemory = nodeGetCellsFreeMemory, /* 0.5.0 */
    .nodeGetFreeMemory = nodeGetFreeMemory, /* 0.5.0 */
2563 2564
    .domainEventRegister = umlDomainEventRegister, /* 0.9.4 */
    .domainEventDeregister = umlDomainEventDeregister, /* 0.9.4 */
2565 2566 2567 2568 2569
    .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 */
2570 2571
    .domainEventRegisterAny = umlDomainEventRegisterAny, /* 0.9.4 */
    .domainEventDeregisterAny = umlDomainEventDeregisterAny, /* 0.9.4 */
2572
    .domainOpenConsole = umlDomainOpenConsole, /* 0.8.6 */
2573
    .isAlive = umlIsAlive, /* 0.9.8 */
2574
    .nodeSuspendForDuration = nodeSuspendForDuration, /* 0.9.8 */
2575 2576
};

2577 2578 2579 2580 2581 2582 2583 2584
static int
umlVMFilterRebuild(virConnectPtr conn ATTRIBUTE_UNUSED,
                   virHashIterator iter, void *data)
{
    virHashForEach(uml_driver->domains.objs, iter, data);

    return 0;
}
2585 2586

static virStateDriver umlStateDriver = {
2587
    .name = "UML",
2588 2589 2590 2591 2592 2593
    .initialize = umlStartup,
    .cleanup = umlShutdown,
    .reload = umlReload,
    .active = umlActive,
};

2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605
static void
umlVMDriverLock(void)
{
    umlDriverLock(uml_driver);
}

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

2606 2607 2608
static virNWFilterCallbackDriver umlCallbackDriver = {
    .name = "UML",
    .vmFilterRebuild = umlVMFilterRebuild,
2609 2610
    .vmDriverLock = umlVMDriverLock,
    .vmDriverUnlock = umlVMDriverUnlock,
2611 2612
};

2613 2614 2615
int umlRegister(void) {
    virRegisterDriver(&umlDriver);
    virRegisterStateDriver(&umlStateDriver);
2616
    virNWFilterRegisterCallbackDriver(&umlCallbackDriver);
2617 2618
    return 0;
}