uml_driver.c 60.5 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 45
 * 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 <dirent.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>
46
#include <sys/un.h>
47 48 49 50 51 52 53 54 55 56 57 58

#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"
#include "datatypes.h"
59
#include "logging.h"
60
#include "domain_nwfilter.h"
61
#include "files.h"
62
#include "fdstream.h"
63
#include "configmake.h"
64

65 66
#define VIR_FROM_THIS VIR_FROM_UML

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

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


78 79
static int umlShutdown(void);

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
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);
}


101 102
static void umlDriverLock(struct uml_driver *driver)
{
103
    virMutexLock(&driver->lock);
104 105 106
}
static void umlDriverUnlock(struct uml_driver *driver)
{
107
    virMutexUnlock(&driver->lock);
108 109
}

110

111
static int umlOpenMonitor(struct uml_driver *driver,
112
                          virDomainObjPtr vm);
113
static int umlReadPidFile(struct uml_driver *driver,
114 115 116 117 118 119 120 121 122 123 124
                          virDomainObjPtr vm);

static int umlSetCloseExec(int fd) {
    int flags;
    if ((flags = fcntl(fd, F_GETFD)) < 0)
        goto error;
    flags |= FD_CLOEXEC;
    if ((fcntl(fd, F_SETFD, flags)) < 0)
        goto error;
    return 0;
 error:
125
    VIR_ERROR(_("Failed to set close-on-exec file descriptor flag"));
126 127 128 129 130 131 132 133 134
    return -1;
}

static int umlStartVMDaemon(virConnectPtr conn,
                            struct uml_driver *driver,
                            virDomainObjPtr vm);

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


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

static struct uml_driver *uml_driver = NULL;

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

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

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
159
        !virDomainObjIsActive(vm)) {
160 161 162 163
        virResetLastError();
        if (umlStartVMDaemon(data->conn, data->driver, vm) < 0) {
            virErrorPtr err = virGetLastError();
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
164
                      vm->def->name, err ? err->message : _("unknown error"));
165 166 167 168
        }
    }
    virDomainObjUnlock(vm);
}
169 170 171

static void
umlAutostartConfigs(struct uml_driver *driver) {
172 173 174 175 176
    /* 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
     */
177 178 179
    virConnectPtr conn = virConnectOpen(driver->privileged ?
                                        "uml:///system" :
                                        "uml:///session");
180
    /* Ignoring NULL conn which is mostly harmless here */
181

182 183 184
    struct umlAutostartData data = { driver, conn };

    virHashForEach(driver->domains.objs, umlAutostartDomain, &data);
185

186 187
    if (conn)
        virConnectClose(conn);
188 189 190 191
}


static int
192
umlIdentifyOneChrPTY(struct uml_driver *driver,
193 194 195 196 197 198 199
                     virDomainObjPtr dom,
                     virDomainChrDefPtr def,
                     const char *dev)
{
    char *cmd;
    char *res = NULL;
    int retries = 0;
200
    if (virAsprintf(&cmd, "config %s%d", dev, def->target.port) < 0) {
201
        virReportOOMError();
202 203 204
        return -1;
    }
requery:
205
    if (umlMonitorCommand(driver, dom, cmd, &res) < 0)
206
        return -1;
207

208
    if (res && STRPREFIX(res, "pts:")) {
209 210
        VIR_FREE(def->source.data.file.path);
        if ((def->source.data.file.path = strdup(res + 4)) == NULL) {
211
            virReportOOMError();
212 213 214 215
            VIR_FREE(res);
            VIR_FREE(cmd);
            return -1;
        }
216
    } else if (!res || STRPREFIX(res, "pts")) {
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
        /* 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
233
umlIdentifyChrPTY(struct uml_driver *driver,
234 235 236 237 238
                  virDomainObjPtr dom)
{
    int i;

    if (dom->def->console &&
239
        dom->def->console->source.type == VIR_DOMAIN_CHR_TYPE_PTY)
240
        if (umlIdentifyOneChrPTY(driver, dom,
241 242 243 244
                                 dom->def->console, "con") < 0)
            return -1;

    for (i = 0 ; i < dom->def->nserials; i++)
245
        if (dom->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY &&
246
            umlIdentifyOneChrPTY(driver, dom,
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
                                 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;

266
    umlDriverLock(driver);
267
    if (watch != driver->inotifyWatch)
268
        goto cleanup;
269 270 271 272 273 274

reread:
    got = read(fd, buf, sizeof(buf));
    if (got == -1) {
        if (errno == EINTR)
            goto reread;
275
        goto cleanup;
276 277 278 279 280
    }

    tmp = buf;
    while (got) {
        if (got < sizeof(struct inotify_event))
281
            goto cleanup; /* bad */
282 283 284 285 286 287

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

        if (got < e->len)
288
            goto cleanup;
289 290 291 292 293 294 295 296 297 298 299 300 301

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

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

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

        if (!dom) {
            continue;
        }

        if (e->mask & IN_DELETE) {
302
            VIR_DEBUG("Got inotify domain shutdown '%s'", name);
D
Daniel P. Berrange 已提交
303
            if (!virDomainObjIsActive(dom)) {
304
                virDomainObjUnlock(dom);
305 306 307
                continue;
            }

J
Jiri Denemark 已提交
308
            umlShutdownVMDaemon(NULL, driver, dom, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
309
        } else if (e->mask & (IN_CREATE | IN_MODIFY)) {
310
            VIR_DEBUG("Got inotify domain startup '%s'", name);
D
Daniel P. Berrange 已提交
311
            if (virDomainObjIsActive(dom)) {
312
                virDomainObjUnlock(dom);
313 314 315
                continue;
            }

316
            if (umlReadPidFile(driver, dom) < 0) {
317
                virDomainObjUnlock(dom);
318 319 320 321
                continue;
            }

            dom->def->id = driver->nextvmid++;
J
Jiri Denemark 已提交
322 323
            virDomainObjSetState(dom, VIR_DOMAIN_RUNNING,
                                 VIR_DOMAIN_RUNNING_BOOTED);
324

325
            if (umlOpenMonitor(driver, dom) < 0) {
326
                VIR_WARN("Could not open monitor for new domain");
J
Jiri Denemark 已提交
327 328
                umlShutdownVMDaemon(NULL, driver, dom,
                                    VIR_DOMAIN_SHUTOFF_FAILED);
329
            } else if (umlIdentifyChrPTY(driver, dom) < 0) {
330
                VIR_WARN("Could not identify charater devices for new domain");
J
Jiri Denemark 已提交
331 332
                umlShutdownVMDaemon(NULL, driver, dom,
                                    VIR_DOMAIN_SHUTOFF_FAILED);
333
            }
334
        }
335
        virDomainObjUnlock(dom);
336
    }
337 338 339

cleanup:
    umlDriverUnlock(driver);
340 341 342 343 344 345 346 347
}

/**
 * umlStartup:
 *
 * Initialization function for the Uml daemon
 */
static int
348 349
umlStartup(int privileged)
{
350 351
    uid_t uid = geteuid();
    char *base = NULL;
352
    char *userdir = NULL;
353 354 355 356

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

357 358
    uml_driver->privileged = privileged;

359 360 361 362
    if (virMutexInit(&uml_driver->lock) < 0) {
        VIR_FREE(uml_driver);
        return -1;
    }
363 364
    umlDriverLock(uml_driver);

365 366
    /* Don't have a dom0 so start from 1 */
    uml_driver->nextvmid = 1;
367
    uml_driver->inotifyWatch = -1;
368

369 370 371
    if (virDomainObjListInit(&uml_driver->domains) < 0)
        goto error;

372
    userdir = virGetUserDirectory(uid);
373
    if (!userdir)
374
        goto error;
375

376
    if (privileged) {
377
        if (virAsprintf(&uml_driver->logDir,
378
                        "%s/log/libvirt/uml", LOCALSTATEDIR) == -1)
379 380
            goto out_of_memory;

381
        if ((base = strdup (SYSCONFDIR "/libvirt")) == NULL)
382
            goto out_of_memory;
383 384

        if (virAsprintf(&uml_driver->monitorDir,
385
                        "%s/run/libvirt/uml-guest", LOCALSTATEDIR) == -1)
386
            goto out_of_memory;
387
    } else {
388

389
        if (virAsprintf(&uml_driver->logDir,
390
                        "%s/.libvirt/uml/log", userdir) == -1)
391 392
            goto out_of_memory;

393
        if (virAsprintf(&base, "%s/.libvirt", userdir) == -1)
394 395
            goto out_of_memory;

396 397 398 399
        if (virAsprintf(&uml_driver->monitorDir,
                        "%s/.uml", userdir) == -1)
            goto out_of_memory;
    }
400 401 402 403

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

407
    if (virAsprintf(&uml_driver->autostartDir, "%s/uml/autostart", base) == -1)
408 409 410 411 412 413 414
        goto out_of_memory;

    VIR_FREE(base);

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

415 416
    uml_driver->caps->privateDataAllocFunc = umlDomainObjPrivateAlloc;
    uml_driver->caps->privateDataFreeFunc = umlDomainObjPrivateFree;
417 418

    if ((uml_driver->inotifyFD = inotify_init()) < 0) {
419
        VIR_ERROR(_("cannot initialize inotify"));
420
        goto error;
421 422
    }

423
    if (virFileMakePath(uml_driver->monitorDir) < 0) {
424
        char ebuf[1024];
D
Daniel Veillard 已提交
425
        VIR_ERROR(_("Failed to create monitor directory %s: %s"),
426
               uml_driver->monitorDir, virStrerror(errno, ebuf, sizeof ebuf));
427
        goto error;
428 429
    }

430
    VIR_INFO("Adding inotify watch on %s", uml_driver->monitorDir);
431 432 433
    if (inotify_add_watch(uml_driver->inotifyFD,
                          uml_driver->monitorDir,
                          IN_CREATE | IN_MODIFY | IN_DELETE) < 0) {
434
        goto error;
435 436
    }

437 438
    if ((uml_driver->inotifyWatch =
         virEventAddHandle(uml_driver->inotifyFD, POLLIN,
439 440
                           umlInotifyEvent, uml_driver, NULL)) < 0)
        goto error;
441

442
    if (virDomainLoadAllConfigs(uml_driver->caps,
443 444 445
                                &uml_driver->domains,
                                uml_driver->configDir,
                                uml_driver->autostartDir,
M
Matthias Bolte 已提交
446 447
                                0, 1 << VIR_DOMAIN_VIRT_UML,
                                NULL, NULL) < 0)
448 449
        goto error;

450 451
    umlAutostartConfigs(uml_driver);

452
    umlDriverUnlock(uml_driver);
453 454
    VIR_FREE(userdir);

455 456
    return 0;

457
out_of_memory:
458
    VIR_ERROR(_("umlStartup: out of memory"));
459 460

error:
461
    VIR_FREE(userdir);
462
    VIR_FREE(base);
463 464
    umlDriverUnlock(uml_driver);
    umlShutdown();
465 466 467 468 469 470 471 472 473 474 475 476 477 478
    return -1;
}

/**
 * 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;

479
    umlDriverLock(uml_driver);
480
    virDomainLoadAllConfigs(uml_driver->caps,
481 482 483
                            &uml_driver->domains,
                            uml_driver->configDir,
                            uml_driver->autostartDir,
M
Matthias Bolte 已提交
484 485
                            0, 1 << VIR_DOMAIN_VIRT_UML,
                            NULL, NULL);
486 487

    umlAutostartConfigs(uml_driver);
488
    umlDriverUnlock(uml_driver);
489 490 491 492 493 494 495 496 497 498 499 500 501 502

    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) {
503
    int active = 0;
504 505 506 507

    if (!uml_driver)
        return 0;

508
    umlDriverLock(uml_driver);
509
    active = virDomainObjListNumOfDomains(&uml_driver->domains, 1);
510
    umlDriverUnlock(uml_driver);
511

512
    return active;
513 514
}

515
static void
516
umlShutdownOneVM(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
517 518 519 520 521
{
    virDomainObjPtr dom = payload;
    struct uml_driver *driver = opaque;

    virDomainObjLock(dom);
D
Daniel P. Berrange 已提交
522
    if (virDomainObjIsActive(dom))
J
Jiri Denemark 已提交
523
        umlShutdownVMDaemon(NULL, driver, dom, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
524 525 526
    virDomainObjUnlock(dom);
}

527 528 529 530 531 532 533 534 535 536
/**
 * umlShutdown:
 *
 * Shutdown the Uml daemon, it will stop all active domains and networks
 */
static int
umlShutdown(void) {
    if (!uml_driver)
        return -1;

537
    umlDriverLock(uml_driver);
538 539
    if (uml_driver->inotifyWatch != -1)
        virEventRemoveHandle(uml_driver->inotifyWatch);
540
    VIR_FORCE_CLOSE(uml_driver->inotifyFD);
541 542
    virCapabilitiesFree(uml_driver->caps);

543 544 545
    /* shutdown active VMs
     * XXX allow them to stay around & reconnect */
    virHashForEach(uml_driver->domains.objs, umlShutdownOneVM, uml_driver);
546

547
    virDomainObjListDeinit(&uml_driver->domains);
548 549 550 551 552 553 554 555 556

    VIR_FREE(uml_driver->logDir);
    VIR_FREE(uml_driver->configDir);
    VIR_FREE(uml_driver->autostartDir);
    VIR_FREE(uml_driver->monitorDir);

    if (uml_driver->brctl)
        brShutdown(uml_driver->brctl);

557
    umlDriverUnlock(uml_driver);
558
    virMutexDestroy(&uml_driver->lock);
559 560 561 562 563 564
    VIR_FREE(uml_driver);

    return 0;
}


565
static int umlReadPidFile(struct uml_driver *driver,
566 567 568 569 570 571 572 573
                          virDomainObjPtr vm)
{
    int rc = -1;
    FILE *file;
    char *pidfile = NULL;
    int retries = 0;

    vm->pid = -1;
574 575
    if (virAsprintf(&pidfile, "%s/%s/pid",
                    driver->monitorDir, vm->def->name) < 0) {
576
        virReportOOMError();
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
        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;
592
        VIR_FORCE_FCLOSE(file);
593 594 595
        goto cleanup;
    }

596
    if (VIR_FCLOSE(file) < 0)
597 598 599 600 601 602
        goto cleanup;

    rc = 0;

 cleanup:
    if (rc != 0)
603
        virReportSystemError(errno,
604 605
                             _("failed to read pid: %s"),
                             pidfile);
606 607 608 609
    VIR_FREE(pidfile);
    return rc;
}

610
static int umlMonitorAddress(const struct uml_driver *driver,
611 612 613
                             virDomainObjPtr vm,
                             struct sockaddr_un *addr) {
    char *sockname;
C
Chris Lalancette 已提交
614
    int retval = 0;
615

616 617
    if (virAsprintf(&sockname, "%s/%s/mconsole",
                    driver->monitorDir, vm->def->name) < 0) {
618
        virReportOOMError();
619 620 621 622 623
        return -1;
    }

    memset(addr, 0, sizeof *addr);
    addr->sun_family = AF_UNIX;
C
Chris Lalancette 已提交
624
    if (virStrcpyStatic(addr->sun_path, sockname) == NULL) {
625
        umlReportError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
626 627 628
                       _("Unix path %s too long for destination"), sockname);
        retval = -1;
    }
629
    VIR_FREE(sockname);
C
Chris Lalancette 已提交
630
    return retval;
631 632
}

633
static int umlOpenMonitor(struct uml_driver *driver,
634 635 636 637
                          virDomainObjPtr vm) {
    struct sockaddr_un addr;
    struct stat sb;
    int retries = 0;
638
    umlDomainObjPrivatePtr priv = vm->privateData;
639

640
    if (umlMonitorAddress(driver, vm, &addr) < 0)
641 642
        return -1;

643
    VIR_DEBUG("Dest address for monitor is '%s'", addr.sun_path);
644 645 646
restat:
    if (stat(addr.sun_path, &sb) < 0) {
        if (errno == ENOENT &&
647
            retries++ < 50) {
648 649 650 651 652 653
            usleep(1000 * 100);
            goto restat;
        }
        return -1;
    }

654
    if ((priv->monitor = socket(PF_UNIX, SOCK_DGRAM, 0)) < 0) {
655
        virReportSystemError(errno,
656
                             "%s", _("cannot open socket"));
657 658 659 660
        return -1;
    }

    memset(addr.sun_path, 0, sizeof addr.sun_path);
E
Eric Blake 已提交
661 662
    snprintf(addr.sun_path + 1, sizeof(addr.sun_path) - 1,
             "libvirt-uml-%u", vm->pid);
663
    VIR_DEBUG("Reply address for monitor is '%s'", addr.sun_path+1);
664
    if (bind(priv->monitor, (struct sockaddr *)&addr, sizeof addr) < 0) {
665
        virReportSystemError(errno,
666
                             "%s", _("cannot bind socket"));
667
        VIR_FORCE_CLOSE(priv->monitor);
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
        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];
};


694
static int umlMonitorCommand(const struct uml_driver *driver,
695 696 697 698 699 700 701 702 703 704
                             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;
705
    umlDomainObjPrivatePtr priv = vm->privateData;
706

707 708
    VIR_DEBUG("Run command '%s'", cmd);

709 710
    *reply = NULL;

711
    if (umlMonitorAddress(driver, vm, &addr) < 0)
712 713 714 715 716 717 718
        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)) {
719
        virReportSystemError(EINVAL,
720 721
                             _("cannot send too long command %s (%d bytes)"),
                             cmd, req.length);
722 723
        return -1;
    }
C
Chris Lalancette 已提交
724
    if (virStrcpyStatic(req.data, cmd) == NULL) {
725
        umlReportError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
726 727 728
                       _("Command %s too long for destination"), cmd);
        return -1;
    }
729

730
    if (sendto(priv->monitor, &req, sizeof req, 0,
731
               (struct sockaddr *)&addr, sizeof addr) != (sizeof req)) {
732
        virReportSystemError(errno,
733 734
                             _("cannot send command %s"),
                             cmd);
735 736 737 738
        return -1;
    }

    do {
E
Eric Blake 已提交
739
        ssize_t nbytes;
740
        addrlen = sizeof(addr);
E
Eric Blake 已提交
741
        nbytes = recvfrom(priv->monitor, &res, sizeof res, 0,
742
                          (struct sockaddr *)&addr, &addrlen);
E
Eric Blake 已提交
743 744 745
        if (nbytes < 0) {
            if (errno == EAGAIN || errno == EINTR)
                continue;
746
            virReportSystemError(errno, _("cannot read reply %s"), cmd);
747 748
            goto error;
        }
749 750 751
        /* 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) {
752 753 754
            virReportSystemError(0, _("incomplete reply %s"), cmd);
            goto error;
        }
755 756

        if (VIR_REALLOC_N(retdata, retlen + res.length) < 0) {
757
            virReportOOMError();
758 759 760 761 762 763 764 765 766 767 768
            goto error;
        }
        memcpy(retdata + retlen, res.data, res.length);
        retlen += res.length - 1;
        retdata[retlen] = '\0';

        if (res.error)
            ret = -1;

    } while (res.extra);

769 770
    VIR_DEBUG("Command reply is '%s'", NULLSTR(retdata));

771 772 773 774
    if (ret < 0)
        VIR_FREE(retdata);
    else
        *reply = retdata;
775 776 777 778 779 780 781 782 783

    return ret;

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


784 785 786 787 788 789
static int umlCleanupTapDevices(virConnectPtr conn ATTRIBUTE_UNUSED,
                                virDomainObjPtr vm) {
    int i;
    int err;
    int ret = 0;
    brControl *brctl = NULL;
790
    VIR_ERROR(_("Cleanup tap"));
791 792 793 794 795 796 797 798 799 800
    if (brInit(&brctl) < 0)
        return -1;

    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;

801
        VIR_ERROR(_("Cleanup '%s'"), def->ifname);
802 803
        err = brDeleteTap(brctl, def->ifname);
        if (err) {
804
            VIR_ERROR(_("Cleanup failed %d"), err);
805 806 807
            ret = -1;
        }
    }
808
    VIR_ERROR(_("Cleanup tap done"));
809 810 811 812
    brShutdown(brctl);
    return ret;
}

813 814 815
static int umlStartVMDaemon(virConnectPtr conn,
                            struct uml_driver *driver,
                            virDomainObjPtr vm) {
D
Daniel P. Berrange 已提交
816
    int ret;
817 818
    char *logfile;
    int logfd = -1;
819
    umlDomainObjPrivatePtr priv = vm->privateData;
D
Daniel P. Berrange 已提交
820
    virCommandPtr cmd = NULL;
821

D
Daniel P. Berrange 已提交
822
    if (virDomainObjIsActive(vm)) {
823
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
824
                       _("VM is already active"));
825 826 827 828
        return -1;
    }

    if (!vm->def->os.kernel) {
829 830
        umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("no kernel specified"));
831 832 833 834 835 836
        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 已提交
837
    if (!virFileIsExecutable(vm->def->os.kernel)) {
838
        virReportSystemError(errno,
839 840
                             _("Cannot find UML kernel %s"),
                             vm->def->os.kernel);
841 842 843
        return -1;
    }

844
    if (virFileMakePath(driver->logDir) < 0) {
845
        virReportSystemError(errno,
846 847
                             _("cannot create log directory %s"),
                             driver->logDir);
848 849 850
        return -1;
    }

851 852
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
853
        virReportOOMError();
854 855 856 857 858
        return -1;
    }

    if ((logfd = open(logfile, O_CREAT | O_TRUNC | O_WRONLY,
                      S_IRUSR | S_IWUSR)) < 0) {
859
        virReportSystemError(errno,
860 861
                             _("failed to create logfile %s"),
                             logfile);
862 863 864 865 866 867
        VIR_FREE(logfile);
        return -1;
    }
    VIR_FREE(logfile);

    if (umlSetCloseExec(logfd) < 0) {
868
        virReportSystemError(errno,
869
                             "%s", _("Unable to set VM logfile close-on-exec flag"));
870
        VIR_FORCE_CLOSE(logfd);
871 872 873
        return -1;
    }

D
Daniel P. Berrange 已提交
874
    if (!(cmd = umlBuildCommandLine(conn, driver, vm))) {
875
        VIR_FORCE_CLOSE(logfd);
876
        virDomainConfVMNWFilterTeardown(vm);
877
        umlCleanupTapDevices(conn, vm);
878 879 880
        return -1;
    }

D
Daniel P. Berrange 已提交
881
    virCommandWriteArgLog(cmd, logfd);
882

883
    priv->monitor = -1;
884

D
Daniel P. Berrange 已提交
885 886 887 888 889 890
    virCommandClearCaps(cmd);
    virCommandSetOutputFD(cmd, &logfd);
    virCommandSetErrorFD(cmd, &logfd);
    virCommandDaemonize(cmd);

    ret = virCommandRun(cmd, NULL);
891
    VIR_FORCE_CLOSE(logfd);
892 893
    if (ret < 0)
        goto cleanup;
894

895
    ret = virDomainObjSetDefTransient(driver->caps, vm, false);
896
cleanup:
D
Daniel P. Berrange 已提交
897
    virCommandFree(cmd);
898

899 900
    if (ret < 0) {
        virDomainConfVMNWFilterTeardown(vm);
901
        umlCleanupTapDevices(conn, vm);
902 903
    }

904 905
    /* NB we don't mark it running here - we do that async
       with inotify */
906 907 908
    /* XXX what if someone else tries to start it again
       before we get the inotification ? Sounds like
       trouble.... */
909 910 911 912 913 914

    return ret;
}

static void umlShutdownVMDaemon(virConnectPtr conn ATTRIBUTE_UNUSED,
                                struct uml_driver *driver ATTRIBUTE_UNUSED,
J
Jiri Denemark 已提交
915 916
                                virDomainObjPtr vm,
                                virDomainShutoffReason reason)
917 918
{
    int ret;
919 920
    umlDomainObjPrivatePtr priv = vm->privateData;

D
Daniel P. Berrange 已提交
921
    if (!virDomainObjIsActive(vm))
922 923
        return;

924
    virKillProcess(vm->pid, SIGTERM);
925

926
    VIR_FORCE_CLOSE(priv->monitor);
927 928

    if ((ret = waitpid(vm->pid, NULL, 0)) != vm->pid) {
929
        VIR_WARN("Got unexpected pid %d != %d",
930 931 932 933 934
               ret, vm->pid);
    }

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

937
    virDomainConfVMNWFilterTeardown(vm);
938 939
    umlCleanupTapDevices(conn, vm);

940 941 942 943 944 945 946 947 948 949 950
    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,
951
                                unsigned int flags ATTRIBUTE_UNUSED) {
952 953 954
    if (conn->uri == NULL) {
        if (uml_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
955

956
        conn->uri = xmlParseURI(uml_driver->privileged ?
957 958 959
                                "uml:///system" :
                                "uml:///session");
        if (!conn->uri) {
960
            virReportOOMError();
961 962 963 964 965 966 967 968 969 970
            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;
971 972


973
        /* Check path and tell them correct path if they made a mistake */
974
        if (uml_driver->privileged) {
975
            if (STRNEQ (conn->uri->path, "/system") &&
976
                STRNEQ (conn->uri->path, "/session")) {
977
                umlReportError(VIR_ERR_INTERNAL_ERROR,
978 979 980 981 982 983
                               _("unexpected UML URI path '%s', try uml:///system"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
        } else {
            if (STRNEQ (conn->uri->path, "/session")) {
984
                umlReportError(VIR_ERR_INTERNAL_ERROR,
985 986 987 988
                               _("unexpected UML URI path '%s', try uml:///session"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
989
        }
990 991 992

        /* URI was good, but driver isn't active */
        if (uml_driver == NULL) {
993
            umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
994
                           _("uml state driver is not active"));
995 996 997 998 999 1000 1001 1002 1003 1004
            return VIR_DRV_OPEN_ERROR;
        }
    }

    conn->privateData = uml_driver;

    return VIR_DRV_OPEN_SUCCESS;
}

static int umlClose(virConnectPtr conn) {
1005
    /*struct uml_driver *driver = conn->privateData;*/
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016

    conn->privateData = NULL;

    return 0;
}

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


1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
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;
}


1031 1032 1033 1034
static char *umlGetCapabilities(virConnectPtr conn) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
    char *xml;

1035
    umlDriverLock(driver);
1036
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
1037
        virReportOOMError();
1038
    umlDriverUnlock(driver);
1039 1040 1041 1042 1043 1044

    return xml;
}



1045 1046 1047
static int umlGetProcessInfo(unsigned long long *cpuTime, int pid)
{
    char *proc;
1048 1049 1050
    FILE *pidinfo;
    unsigned long long usertime, systime;

1051
    if (virAsprintf(&proc, "/proc/%d/stat", pid) < 0) {
1052 1053 1054 1055 1056 1057
        return -1;
    }

    if (!(pidinfo = fopen(proc, "r"))) {
        /* VM probably shut down, so fake 0 */
        *cpuTime = 0;
1058
        VIR_FREE(proc);
1059 1060 1061
        return 0;
    }

1062 1063
    VIR_FREE(proc);

1064 1065
    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");
1066
        VIR_FORCE_FCLOSE(pidinfo);
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
        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);

1079
    VIR_FORCE_FCLOSE(pidinfo);
1080 1081 1082 1083 1084 1085 1086 1087

    return 0;
}


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

1091
    umlDriverLock(driver);
1092
    vm = virDomainFindByID(&driver->domains, id);
1093 1094
    umlDriverUnlock(driver);

1095
    if (!vm) {
1096
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1097
        goto cleanup;
1098 1099 1100 1101
    }

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

cleanup:
1104 1105
    if (vm)
        virDomainObjUnlock(vm);
1106 1107
    return dom;
}
1108

1109 1110 1111
static virDomainPtr umlDomainLookupByUUID(virConnectPtr conn,
                                            const unsigned char *uuid) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1112 1113
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1114

1115
    umlDriverLock(driver);
1116
    vm = virDomainFindByUUID(&driver->domains, uuid);
1117 1118
    umlDriverUnlock(driver);

1119
    if (!vm) {
1120
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1121
        goto cleanup;
1122 1123 1124 1125
    }

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

cleanup:
1128 1129
    if (vm)
        virDomainObjUnlock(vm);
1130 1131
    return dom;
}
1132

1133 1134 1135
static virDomainPtr umlDomainLookupByName(virConnectPtr conn,
                                            const char *name) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1136 1137
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1138

1139
    umlDriverLock(driver);
1140
    vm = virDomainFindByName(&driver->domains, name);
1141 1142
    umlDriverUnlock(driver);

1143
    if (!vm) {
1144
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1145
        goto cleanup;
1146 1147 1148 1149
    }

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

cleanup:
1152 1153
    if (vm)
        virDomainObjUnlock(vm);
1154 1155 1156
    return dom;
}

1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167

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) {
1168
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
        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) {
1190
        umlReportError(VIR_ERR_NO_DOMAIN, NULL);
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
        goto cleanup;
    }
    ret = obj->persistent;

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

1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
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;
}
1221

1222
static int umlGetVersion(virConnectPtr conn, unsigned long *version) {
1223
    struct uml_driver *driver = conn->privateData;
1224
    struct utsname ut;
1225
    int ret = -1;
1226

1227
    umlDriverLock(driver);
1228 1229 1230 1231

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

1232
        if (virParseVersionString(ut.release, &driver->umlVersion, true) < 0) {
1233
            umlReportError(VIR_ERR_INTERNAL_ERROR,
1234 1235 1236
                           _("cannot parse version %s"), ut.release);
            goto cleanup;
        }
1237 1238
    }

1239 1240 1241 1242 1243 1244
    *version = driver->umlVersion;
    ret = 0;

cleanup:
    umlDriverUnlock(driver);
    return ret;
1245 1246 1247
}

static int umlListDomains(virConnectPtr conn, int *ids, int nids) {
1248
    struct uml_driver *driver = conn->privateData;
1249
    int n;
1250

1251
    umlDriverLock(driver);
1252
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
1253
    umlDriverUnlock(driver);
1254

1255
    return n;
1256 1257
}
static int umlNumDomains(virConnectPtr conn) {
1258
    struct uml_driver *driver = conn->privateData;
1259
    int n;
1260

1261
    umlDriverLock(driver);
1262
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
1263
    umlDriverUnlock(driver);
1264 1265 1266 1267

    return n;
}
static virDomainPtr umlDomainCreate(virConnectPtr conn, const char *xml,
1268
                                      unsigned int flags) {
1269
    struct uml_driver *driver = conn->privateData;
1270
    virDomainDefPtr def;
1271
    virDomainObjPtr vm = NULL;
1272
    virDomainPtr dom = NULL;
1273

1274 1275
    virCheckFlags(0, NULL);

1276
    umlDriverLock(driver);
1277
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
1278
                                        1 << VIR_DOMAIN_VIRT_UML,
1279
                                        VIR_DOMAIN_XML_INACTIVE)))
1280
        goto cleanup;
1281

1282
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
1283
        goto cleanup;
1284

1285
    if (!(vm = virDomainAssignDef(driver->caps,
1286
                                  &driver->domains,
1287
                                  def, false)))
1288 1289
        goto cleanup;
    def = NULL;
1290 1291 1292 1293

    if (umlStartVMDaemon(conn, driver, vm) < 0) {
        virDomainRemoveInactive(&driver->domains,
                                vm);
1294 1295
        vm = NULL;
        goto cleanup;
1296 1297 1298 1299
    }

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

cleanup:
    virDomainDefFree(def);
1303 1304 1305
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1306 1307 1308 1309 1310
    return dom;
}


static int umlDomainShutdown(virDomainPtr dom) {
1311 1312
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1313
    char *info = NULL;
1314
    int ret = -1;
1315

1316
    umlDriverLock(driver);
1317
    vm = virDomainFindByID(&driver->domains, dom->id);
1318
    umlDriverUnlock(driver);
1319
    if (!vm) {
1320
        umlReportError(VIR_ERR_NO_DOMAIN,
1321
                       _("no domain with matching id %d"), dom->id);
1322
        goto cleanup;
1323 1324 1325 1326
    }

#if 0
    if (umlMonitorCommand(driver, vm, "system_powerdown", &info) < 0) {
1327 1328
        umlReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("shutdown operation failed"));
1329
        goto cleanup;
1330
    }
1331
    ret = 0;
1332 1333
#endif

1334 1335
cleanup:
    VIR_FREE(info);
1336 1337
    if (vm)
        virDomainObjUnlock(vm);
1338
    return ret;
1339 1340 1341 1342
}


static int umlDomainDestroy(virDomainPtr dom) {
1343 1344 1345
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1346

1347
    umlDriverLock(driver);
1348
    vm = virDomainFindByID(&driver->domains, dom->id);
1349
    if (!vm) {
1350
        umlReportError(VIR_ERR_NO_DOMAIN,
1351
                       _("no domain with matching id %d"), dom->id);
1352
        goto cleanup;
1353 1354
    }

J
Jiri Denemark 已提交
1355
    umlShutdownVMDaemon(dom->conn, driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
1356
    if (!vm->persistent) {
1357 1358
        virDomainRemoveInactive(&driver->domains,
                                vm);
1359 1360 1361
        vm = NULL;
    }
    ret = 0;
1362

1363
cleanup:
1364 1365 1366
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1367
    return ret;
1368 1369 1370 1371
}


static char *umlDomainGetOSType(virDomainPtr dom) {
1372 1373 1374
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *type = NULL;
1375

1376
    umlDriverLock(driver);
1377
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1378
    umlDriverUnlock(driver);
1379
    if (!vm) {
1380
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1381
                       _("no domain with matching uuid"));
1382
        goto cleanup;
1383 1384
    }

1385
    if (!(type = strdup(vm->def->os.type)))
1386
        virReportOOMError();
1387 1388

cleanup:
1389 1390
    if (vm)
        virDomainObjUnlock(vm);
1391 1392 1393 1394 1395
    return type;
}

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

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

1404 1405 1406 1407
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
1408
        umlReportError(VIR_ERR_NO_DOMAIN,
1409 1410
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
1411
    }
1412
    ret = vm->def->mem.max_balloon;
1413

1414
cleanup:
1415 1416
    if (vm)
        virDomainObjUnlock(vm);
1417
    return ret;
1418 1419 1420
}

static int umlDomainSetMaxMemory(virDomainPtr dom, unsigned long newmax) {
1421 1422 1423
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1424

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

1429 1430 1431 1432
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
1433
        umlReportError(VIR_ERR_NO_DOMAIN,
1434
                       _("no domain with matching uuid '%s'"), uuidstr);
1435
        goto cleanup;
1436 1437
    }

1438
    if (newmax < vm->def->mem.cur_balloon) {
1439 1440
        umlReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("cannot set max memory lower than current memory"));
1441
        goto cleanup;
1442 1443
    }

1444
    vm->def->mem.max_balloon = newmax;
1445 1446 1447
    ret = 0;

cleanup:
1448 1449
    if (vm)
        virDomainObjUnlock(vm);
1450
    return ret;
1451 1452 1453
}

static int umlDomainSetMemory(virDomainPtr dom, unsigned long newmem) {
1454 1455 1456
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1457

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

1462 1463 1464 1465
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
1466
        umlReportError(VIR_ERR_NO_DOMAIN,
1467
                       _("no domain with matching uuid '%s'"), uuidstr);
1468
        goto cleanup;
1469 1470
    }

D
Daniel P. Berrange 已提交
1471
    if (virDomainObjIsActive(vm)) {
1472
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
1473
                       _("cannot set memory of an active domain"));
1474
        goto cleanup;
1475 1476
    }

1477
    if (newmem > vm->def->mem.max_balloon) {
1478 1479
        umlReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("cannot set memory higher than max memory"));
1480
        goto cleanup;
1481 1482
    }

1483
    vm->def->mem.cur_balloon = newmem;
1484 1485 1486
    ret = 0;

cleanup:
1487 1488
    if (vm)
        virDomainObjUnlock(vm);
1489
    return ret;
1490 1491 1492 1493
}

static int umlDomainGetInfo(virDomainPtr dom,
                              virDomainInfoPtr info) {
1494 1495 1496 1497
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

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

1502
    if (!vm) {
1503
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1504
                       _("no domain with matching uuid"));
1505
        goto cleanup;
1506 1507
    }

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

D
Daniel P. Berrange 已提交
1510
    if (!virDomainObjIsActive(vm)) {
1511 1512 1513
        info->cpuTime = 0;
    } else {
        if (umlGetProcessInfo(&(info->cpuTime), vm->pid) < 0) {
1514 1515
            umlReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("cannot read cputime for domain"));
1516
            goto cleanup;
1517 1518 1519
        }
    }

1520 1521
    info->maxMem = vm->def->mem.max_balloon;
    info->memory = vm->def->mem.cur_balloon;
1522
    info->nrVirtCpu = vm->def->vcpus;
1523 1524 1525
    ret = 0;

cleanup:
1526 1527
    if (vm)
        virDomainObjUnlock(vm);
1528
    return ret;
1529 1530 1531
}


1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
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 已提交
1554
    *state = virDomainObjGetState(vm, reason);
1555 1556 1557 1558 1559 1560 1561 1562 1563
    ret = 0;

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


1564
static char *umlDomainGetXMLDesc(virDomainPtr dom,
1565
                                 unsigned int flags ATTRIBUTE_UNUSED) {
1566 1567 1568 1569
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;

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

1574
    if (!vm) {
1575
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1576
                       _("no domain with matching uuid"));
1577
        goto cleanup;
1578 1579
    }

1580
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) && vm->newDef ?
1581 1582 1583 1584
                             vm->newDef : vm->def,
                             flags);

cleanup:
1585 1586
    if (vm)
        virDomainObjUnlock(vm);
1587
    return ret;
1588 1589 1590 1591 1592
}


static int umlListDefinedDomains(virConnectPtr conn,
                            char **const names, int nnames) {
1593
    struct uml_driver *driver = conn->privateData;
1594
    int n;
1595

1596
    umlDriverLock(driver);
1597
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
1598
    umlDriverUnlock(driver);
1599

1600
    return n;
1601 1602 1603
}

static int umlNumDefinedDomains(virConnectPtr conn) {
1604
    struct uml_driver *driver = conn->privateData;
1605
    int n;
1606

1607
    umlDriverLock(driver);
1608
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
1609
    umlDriverUnlock(driver);
1610 1611 1612 1613 1614

    return n;
}


1615
static int umlDomainStartWithFlags(virDomainPtr dom, unsigned int flags) {
1616 1617 1618
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1619

1620 1621
    virCheckFlags(0, -1);

1622
    umlDriverLock(driver);
1623
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1624

1625
    if (!vm) {
1626
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1627
                       _("no domain with matching uuid"));
1628
        goto cleanup;
1629 1630
    }

1631 1632 1633
    ret = umlStartVMDaemon(dom->conn, driver, vm);

cleanup:
1634 1635 1636
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1637
    return ret;
1638 1639
}

1640 1641 1642
static int umlDomainStart(virDomainPtr dom) {
    return umlDomainStartWithFlags(dom, 0);
}
1643 1644

static virDomainPtr umlDomainDefine(virConnectPtr conn, const char *xml) {
1645
    struct uml_driver *driver = conn->privateData;
1646
    virDomainDefPtr def;
1647
    virDomainObjPtr vm = NULL;
1648
    virDomainPtr dom = NULL;
1649

1650
    umlDriverLock(driver);
1651
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
1652
                                        1 << VIR_DOMAIN_VIRT_UML,
1653
                                        VIR_DOMAIN_XML_INACTIVE)))
1654
        goto cleanup;
1655

1656 1657 1658
    if (virDomainObjIsDuplicate(&driver->domains, def, 0) < 0)
        goto cleanup;

1659
    if (!(vm = virDomainAssignDef(driver->caps,
1660
                                  &driver->domains,
1661
                                  def, false)))
1662 1663
        goto cleanup;
    def = NULL;
1664 1665
    vm->persistent = 1;

1666
    if (virDomainSaveConfig(driver->configDir,
1667 1668 1669
                            vm->newDef ? vm->newDef : vm->def) < 0) {
        virDomainRemoveInactive(&driver->domains,
                                vm);
1670
        vm = NULL;
1671
        goto cleanup;
1672 1673 1674 1675
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1676 1677 1678

cleanup:
    virDomainDefFree(def);
1679 1680 1681
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1682 1683 1684 1685
    return dom;
}

static int umlDomainUndefine(virDomainPtr dom) {
1686 1687 1688
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1689

1690
    umlDriverLock(driver);
1691
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1692
    if (!vm) {
1693
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1694
                       _("no domain with matching uuid"));
1695
        goto cleanup;
1696 1697
    }

D
Daniel P. Berrange 已提交
1698
    if (virDomainObjIsActive(vm)) {
1699
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
1700
                       _("cannot delete active domain"));
1701
        goto cleanup;
1702 1703 1704
    }

    if (!vm->persistent) {
1705
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
1706
                       _("cannot undefine transient domain"));
1707
        goto cleanup;
1708 1709
    }

1710
    if (virDomainDeleteConfig(driver->configDir, driver->autostartDir, vm) < 0)
1711
        goto cleanup;
1712 1713 1714

    virDomainRemoveInactive(&driver->domains,
                            vm);
1715
    vm = NULL;
1716
    ret = 0;
1717

1718
cleanup:
1719 1720 1721
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1722
    return ret;
1723 1724 1725
}


1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 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 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
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;
}


static int umlDomainAttachDeviceFlags(virDomainPtr dom,
                                      const char *xml,
                                      unsigned int flags) {
1837
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944
        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;
}


static int umlDomainDetachDeviceFlags(virDomainPtr dom,
                                      const char *xml,
                                      unsigned int flags) {
1945
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
1946 1947 1948 1949 1950 1951 1952 1953
        umlReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("cannot modify the persistent configuration of a domain"));
        return -1;
    }

    return umlDomainDetachDevice(dom, xml);
}

1954 1955 1956

static int umlDomainGetAutostart(virDomainPtr dom,
                            int *autostart) {
1957 1958 1959
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1960

1961
    umlDriverLock(driver);
1962
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1963

1964
    if (!vm) {
1965
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1966
                       _("no domain with matching uuid"));
1967
        goto cleanup;
1968 1969 1970
    }

    *autostart = vm->autostart;
1971
    ret = 0;
1972

1973
cleanup:
1974 1975
    if (vm)
        virDomainObjUnlock(vm);
1976
    umlDriverUnlock(driver);
1977
    return ret;
1978 1979 1980 1981
}

static int umlDomainSetAutostart(virDomainPtr dom,
                                   int autostart) {
1982
    struct uml_driver *driver = dom->conn->privateData;
1983
    virDomainObjPtr vm;
1984 1985 1986
    char *configFile = NULL, *autostartLink = NULL;
    int ret = -1;

1987 1988 1989
    umlDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);

1990
    if (!vm) {
1991
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
1992
                       _("no domain with matching uuid"));
1993
        goto cleanup;
1994 1995 1996
    }

    if (!vm->persistent) {
1997
        umlReportError(VIR_ERR_OPERATION_INVALID, "%s",
1998
                       _("cannot set autostart for transient domain"));
1999
        goto cleanup;
2000 2001 2002 2003
    }

    autostart = (autostart != 0);

2004
    if (vm->autostart != autostart) {
2005
        if ((configFile = virDomainConfigFile(driver->configDir, vm->def->name)) == NULL)
2006
            goto cleanup;
2007
        if ((autostartLink = virDomainConfigFile(driver->autostartDir, vm->def->name)) == NULL)
2008
            goto cleanup;
2009

2010
        if (autostart) {
2011 2012
            if (virFileMakePath(driver->autostartDir) < 0) {
                virReportSystemError(errno,
2013 2014
                                     _("cannot create autostart directory %s"),
                                     driver->autostartDir);
2015 2016
                goto cleanup;
            }
2017

2018
            if (symlink(configFile, autostartLink) < 0) {
2019
                virReportSystemError(errno,
2020 2021
                                     _("Failed to create symlink '%s to '%s'"),
                                     autostartLink, configFile);
2022 2023 2024 2025
                goto cleanup;
            }
        } else {
            if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2026
                virReportSystemError(errno,
2027 2028
                                     _("Failed to delete symlink '%s'"),
                                     autostartLink);
2029 2030
                goto cleanup;
            }
2031 2032
        }

2033
        vm->autostart = autostart;
2034 2035 2036 2037 2038 2039
    }
    ret = 0;

cleanup:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
2040 2041
    if (vm)
        virDomainObjUnlock(vm);
2042
    umlDriverUnlock(driver);
2043 2044 2045 2046 2047
    return ret;
}


static int
2048 2049 2050 2051 2052
umlDomainBlockPeek(virDomainPtr dom,
                   const char *path,
                   unsigned long long offset, size_t size,
                   void *buffer,
                   unsigned int flags ATTRIBUTE_UNUSED)
2053
{
2054 2055 2056
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int fd = -1, ret = -1, i;
2057

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

2062
    if (!vm) {
2063
        umlReportError(VIR_ERR_NO_DOMAIN, "%s",
2064
                       _("no domain with matching uuid"));
2065
        goto cleanup;
2066 2067 2068
    }

    if (!path || path[0] == '\0') {
2069 2070
        umlReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("NULL or empty path"));
2071
        goto cleanup;
2072 2073 2074 2075 2076
    }

    /* Check the path belongs to this domain. */
    for (i = 0 ; i < vm->def->ndisks ; i++) {
        if (vm->def->disks[i]->src != NULL &&
2077 2078 2079 2080
            STREQ (vm->def->disks[i]->src, path)) {
            ret = 0;
            break;
        }
2081 2082
    }

2083 2084 2085 2086 2087
    if (ret == 0) {
        ret = -1;
        /* The path is correct, now try to open it and get its size. */
        fd = open (path, O_RDONLY);
        if (fd == -1) {
2088
            virReportSystemError(errno,
2089
                                 _("cannot open %s"), path);
2090 2091
            goto cleanup;
        }
2092

2093 2094 2095 2096 2097 2098
        /* 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) {
2099
            virReportSystemError(errno,
2100
                                 _("cannot read %s"), path);
2101 2102 2103 2104 2105
            goto cleanup;
        }

        ret = 0;
    } else {
2106 2107
        umlReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("invalid path"));
2108 2109
    }

2110
cleanup:
2111
    VIR_FORCE_CLOSE(fd);
2112 2113
    if (vm)
        virDomainObjUnlock(vm);
2114 2115 2116 2117
    return ret;
}


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
static int
umlDomainOpenConsole(virDomainPtr dom,
                     const char *devname,
                     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;

    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;
    }

    if (devname) {
        /* XXX support device aliases in future */
        umlReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Named device aliases are not supported"));
        goto cleanup;
    } else {
        if (vm->def->console)
            chr = vm->def->console;
        else if (vm->def->nserials)
            chr = vm->def->serials[0];
    }

    if (!chr) {
        umlReportError(VIR_ERR_INTERNAL_ERROR,
                        _("cannot find character device %s"), devname);
        goto cleanup;
    }

2165
    if (chr->source.type != VIR_DOMAIN_CHR_TYPE_PTY) {
2166 2167 2168 2169 2170
        umlReportError(VIR_ERR_INTERNAL_ERROR,
                        _("character device %s is not using a PTY"), devname);
        goto cleanup;
    }

2171 2172
    if (virFDStreamOpenFile(st, chr->source.data.file.path,
                            0, 0, O_RDWR, false) < 0)
2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
        goto cleanup;

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

2183 2184

static virDriver umlDriver = {
2185 2186
    .no = VIR_DRV_UML,
    .name = "UML",
2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221
    .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 */
    .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 */
    .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 */
2222
    .nodeGetCPUStats = nodeGetCPUStats, /* 0.9.3 */
2223
    .nodeGetMemoryStats = nodeGetMemoryStats, /* 0.9.3 */
2224 2225 2226 2227 2228 2229 2230 2231
    .nodeGetCellsFreeMemory = nodeGetCellsFreeMemory, /* 0.5.0 */
    .nodeGetFreeMemory = nodeGetFreeMemory, /* 0.5.0 */
    .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 */
    .domainOpenConsole = umlDomainOpenConsole, /* 0.8.6 */
2232 2233
};

2234 2235 2236 2237 2238 2239 2240 2241
static int
umlVMFilterRebuild(virConnectPtr conn ATTRIBUTE_UNUSED,
                   virHashIterator iter, void *data)
{
    virHashForEach(uml_driver->domains.objs, iter, data);

    return 0;
}
2242 2243

static virStateDriver umlStateDriver = {
2244
    .name = "UML",
2245 2246 2247 2248 2249 2250
    .initialize = umlStartup,
    .cleanup = umlShutdown,
    .reload = umlReload,
    .active = umlActive,
};

2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262
static void
umlVMDriverLock(void)
{
    umlDriverLock(uml_driver);
}

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

2263 2264 2265
static virNWFilterCallbackDriver umlCallbackDriver = {
    .name = "UML",
    .vmFilterRebuild = umlVMFilterRebuild,
2266 2267
    .vmDriverLock = umlVMDriverLock,
    .vmDriverUnlock = umlVMDriverUnlock,
2268 2269
};

2270 2271 2272
int umlRegister(void) {
    virRegisterDriver(&umlDriver);
    virRegisterStateDriver(&umlStateDriver);
2273
    virNWFilterRegisterCallbackDriver(&umlCallbackDriver);
2274 2275
    return 0;
}