uml_driver.c 52.5 KB
Newer Older
1 2 3
/*
 * uml_driver.c: core driver methods for managing UML guests
 *
4
 * Copyright (C) 2006, 2007, 2008, 2009 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 46
 * 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 <strings.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>
47
#include <sys/un.h>
48 49 50 51 52 53 54 55 56 57 58 59 60

#include "uml_driver.h"
#include "uml_conf.h"
#include "event.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"
61
#include "logging.h"
62

63 64
#define VIR_FROM_THIS VIR_FROM_UML

65 66 67
/* For storing short-lived temporary files. */
#define TEMPDIR LOCAL_STATE_DIR "/cache/libvirt"

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


76 77
static int umlShutdown(void);

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


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

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

static int umlOpenMonitor(virConnectPtr conn,
                          struct uml_driver *driver,
                          virDomainObjPtr vm);
static int umlReadPidFile(virConnectPtr conn,
                          struct uml_driver *driver,
                          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:
D
Daniel Veillard 已提交
125
    VIR_ERROR0(_("Failed to set close-on-exec file descriptor flag"));
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
    return -1;
}

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

static void umlShutdownVMDaemon(virConnectPtr conn,
                                struct uml_driver *driver,
                                virDomainObjPtr vm);


static int umlMonitorCommand (virConnectPtr conn,
                              const struct uml_driver *driver,
                              const virDomainObjPtr vm,
                              const char *cmd,
                              char **reply);

static struct uml_driver *uml_driver = NULL;

146 147 148 149 150 151 152 153 154 155 156 157 158
struct umlAutostartData {
    struct uml_driver *driver;
    virConnectPtr conn;
};

static void
umlAutostartDomain(void *payload, const char *name ATTRIBUTE_UNUSED, void *opaque)
{
    virDomainObjPtr vm = payload;
    const struct umlAutostartData *data = opaque;

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
159
        !virDomainObjIsActive(vm)) {
160 161 162 163 164 165 166 167 168
        virResetLastError();
        if (umlStartVMDaemon(data->conn, data->driver, vm) < 0) {
            virErrorPtr err = virGetLastError();
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
                      vm->def->name, err->message);
        }
    }
    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 192 193 194 195 196 197 198 199 200
}


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

209
    if (res && STRPREFIX(res, "pts:")) {
210 211
        VIR_FREE(def->data.file.path);
        if ((def->data.file.path = strdup(res + 4)) == NULL) {
212
            virReportOOMError(conn);
213 214 215 216
            VIR_FREE(res);
            VIR_FREE(cmd);
            return -1;
        }
217
    } else if (!res || STRPREFIX(res, "pts")) {
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
        /* 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
umlIdentifyChrPTY(virConnectPtr conn,
                  struct uml_driver *driver,
                  virDomainObjPtr dom)
{
    int i;

    if (dom->def->console &&
        dom->def->console->type == VIR_DOMAIN_CHR_TYPE_PTY)
        if (umlIdentifyOneChrPTY(conn, driver, dom,
                                 dom->def->console, "con") < 0)
            return -1;

    for (i = 0 ; i < dom->def->nserials; i++)
        if (dom->def->serials[i]->type == VIR_DOMAIN_CHR_TYPE_PTY &&
            umlIdentifyOneChrPTY(conn, driver, dom,
                                 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;

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

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

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

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

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

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

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

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

        if (!dom) {
            continue;
        }

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

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

            if (umlReadPidFile(NULL, driver, dom) < 0) {
319
                virDomainObjUnlock(dom);
320 321 322 323 324 325
                continue;
            }

            dom->def->id = driver->nextvmid++;
            dom->state = VIR_DOMAIN_RUNNING;

326 327
            if (umlOpenMonitor(NULL, driver, dom) < 0) {
                VIR_WARN0("Could not open monitor for new domain");
328
                umlShutdownVMDaemon(NULL, driver, dom);
329 330
            } else if (umlIdentifyChrPTY(NULL, driver, dom) < 0) {
                VIR_WARN0("Could not identify charater devices for new domain");
331
                umlShutdownVMDaemon(NULL, driver, dom);
332
            }
333
        }
334
        virDomainObjUnlock(dom);
335
    }
336 337 338

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

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

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

356 357
    uml_driver->privileged = privileged;

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

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

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

371 372
    userdir = virGetUserDirectory(NULL, uid);
    if (!userdir)
373
        goto error;
374

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

        if ((base = strdup (SYSCONF_DIR "/libvirt")) == NULL)
            goto out_of_memory;
    } else {
383

384
        if (virAsprintf(&uml_driver->logDir,
385
                        "%s/.libvirt/uml/log", userdir) == -1)
386 387
            goto out_of_memory;

388
        if (virAsprintf(&base, "%s/.libvirt", userdir) == -1)
389 390 391
            goto out_of_memory;
    }

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

    /* Configuration paths are either ~/.libvirt/uml/... (session) or
     * /etc/libvirt/uml/... (system).
     */
    if (snprintf (driverConf, sizeof(driverConf), "%s/uml.conf", base) == -1)
        goto out_of_memory;
    driverConf[sizeof(driverConf)-1] = '\0';

403
    if (virAsprintf(&uml_driver->configDir, "%s/uml", base) == -1)
404 405
        goto out_of_memory;

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

    VIR_FREE(base);

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

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

    if ((uml_driver->inotifyFD = inotify_init()) < 0) {
D
Daniel Veillard 已提交
418
        VIR_ERROR0(_("cannot initialize inotify"));
419
        goto error;
420 421
    }

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

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

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

    if (virDomainLoadAllConfigs(NULL,
                                uml_driver->caps,
                                &uml_driver->domains,
                                uml_driver->configDir,
                                uml_driver->autostartDir,
446
                                0, NULL, NULL) < 0)
447 448
        goto error;

449 450
    umlAutostartConfigs(uml_driver);

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

454 455
    return 0;

456
out_of_memory:
D
Daniel Veillard 已提交
457
    VIR_ERROR0(_("umlStartup: out of memory"));
458 459

error:
460
    VIR_FREE(userdir);
461
    VIR_FREE(base);
462 463
    umlDriverUnlock(uml_driver);
    umlShutdown();
464 465 466 467 468 469 470 471 472 473 474 475 476 477
    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;

478
    umlDriverLock(uml_driver);
479 480 481 482 483
    virDomainLoadAllConfigs(NULL,
                            uml_driver->caps,
                            &uml_driver->domains,
                            uml_driver->configDir,
                            uml_driver->autostartDir,
484
                            0, NULL, NULL);
485 486

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

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

    if (!uml_driver)
        return 0;

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

511
    return active;
512 513
}

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

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

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

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

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

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

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

556
    umlDriverUnlock(uml_driver);
557
    virMutexDestroy(&uml_driver->lock);
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
    VIR_FREE(uml_driver);

    return 0;
}


static int umlReadPidFile(virConnectPtr conn,
                          struct uml_driver *driver,
                          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(conn);
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
        fclose(file);
593 594 595 596 597 598 599 600 601 602
        goto cleanup;
    }

    if (fclose(file) < 0)
        goto cleanup;

    rc = 0;

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

static int umlMonitorAddress(virConnectPtr conn,
                             const struct uml_driver *driver,
                             virDomainObjPtr vm,
                             struct sockaddr_un *addr) {
    char *sockname;
C
Chris Lalancette 已提交
615
    int retval = 0;
616

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

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

static int umlOpenMonitor(virConnectPtr conn,
                          struct uml_driver *driver,
                          virDomainObjPtr vm) {
    struct sockaddr_un addr;
    struct stat sb;
    int retries = 0;
640
    umlDomainObjPrivatePtr priv = vm->privateData;
641 642 643 644

    if (umlMonitorAddress(conn, driver, vm, &addr) < 0)
        return -1;

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

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

    memset(addr.sun_path, 0, sizeof addr.sun_path);
663 664
    sprintf(addr.sun_path + 1, "libvirt-uml-%u", vm->pid);
    VIR_DEBUG("Reply address for monitor is '%s'", addr.sun_path+1);
665
    if (bind(priv->monitor, (struct sockaddr *)&addr, sizeof addr) < 0) {
666 667
        virReportSystemError(conn, errno,
                             "%s", _("cannot bind socket"));
668 669
        close(priv->monitor);
        priv->monitor = -1;
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
        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];
};


static int umlMonitorCommand(virConnectPtr conn,
                             const struct uml_driver *driver,
                             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;
708
    umlDomainObjPrivatePtr priv = vm->privateData;
709

710 711
    VIR_DEBUG("Run command '%s'", cmd);

712 713 714 715 716 717 718 719 720 721
    *reply = NULL;

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

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

    do {
        addrlen = sizeof(addr);
743
        if (recvfrom(priv->monitor, &res, sizeof res, 0,
744
                     (struct sockaddr *)&addr, &addrlen) < 0) {
745 746 747
            virReportSystemError(conn, errno,
                                 _("cannot read reply %s"),
                                 cmd);
748 749 750 751
            goto error;
        }

        if (VIR_REALLOC_N(retdata, retlen + res.length) < 0) {
752
            virReportOOMError(conn);
753 754 755 756 757 758 759 760 761 762 763
            goto error;
        }
        memcpy(retdata + retlen, res.data, res.length);
        retlen += res.length - 1;
        retdata[retlen] = '\0';

        if (res.error)
            ret = -1;

    } while (res.extra);

764 765
    VIR_DEBUG("Command reply is '%s'", NULLSTR(retdata));

766 767 768 769 770 771 772 773 774 775
    *reply = retdata;

    return ret;

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


776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
static int umlCleanupTapDevices(virConnectPtr conn ATTRIBUTE_UNUSED,
                                virDomainObjPtr vm) {
    int i;
    int err;
    int ret = 0;
    brControl *brctl = NULL;
    VIR_ERROR0("Cleanup tap");
    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;

        VIR_ERROR("Cleanup '%s'", def->ifname);
        err = brDeleteTap(brctl, def->ifname);
        if (err) {
            VIR_ERROR("Cleanup failed %d", err);
            ret = -1;
        }
    }
    VIR_ERROR0("Cleanup tap done");
    brShutdown(brctl);
    return ret;
}

805 806 807 808 809
static int umlStartVMDaemon(virConnectPtr conn,
                            struct uml_driver *driver,
                            virDomainObjPtr vm) {
    const char **argv = NULL, **tmp;
    const char **progenv = NULL;
810 811
    int i, ret;
    pid_t pid;
812 813 814 815
    char *logfile;
    int logfd = -1;
    struct stat sb;
    fd_set keepfd;
816
    char ebuf[1024];
817
    umlDomainObjPrivatePtr priv = vm->privateData;
818 819 820

    FD_ZERO(&keepfd);

D
Daniel P. Berrange 已提交
821
    if (virDomainObjIsActive(vm)) {
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
        umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("VM is already active"));
        return -1;
    }

    if (!vm->def->os.kernel) {
        umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no kernel specified"));
        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
     */
    if (stat(vm->def->os.kernel, &sb) < 0) {
837 838 839
        virReportSystemError(conn, errno,
                             _("Cannot find UML kernel %s"),
                             vm->def->os.kernel);
840 841 842
        return -1;
    }

L
Laine Stump 已提交
843
    if (virFileMakePath(driver->logDir) != 0) {
844 845 846
        virReportSystemError(conn, errno,
                             _("cannot create log directory %s"),
                             driver->logDir);
847 848 849
        return -1;
    }

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

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

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

    if (umlBuildCommandLine(conn, driver, vm,
874
                            &argv, &progenv) < 0) {
875
        close(logfd);
876
        umlCleanupTapDevices(conn, vm);
877 878 879 880 881 882
        return -1;
    }

    tmp = progenv;
    while (*tmp) {
        if (safewrite(logfd, *tmp, strlen(*tmp)) < 0)
D
Daniel Veillard 已提交
883
            VIR_WARN(_("Unable to write envv to logfile: %s"),
884
                   virStrerror(errno, ebuf, sizeof ebuf));
885
        if (safewrite(logfd, " ", 1) < 0)
D
Daniel Veillard 已提交
886
            VIR_WARN(_("Unable to write envv to logfile: %s"),
887
                   virStrerror(errno, ebuf, sizeof ebuf));
888 889 890 891 892
        tmp++;
    }
    tmp = argv;
    while (*tmp) {
        if (safewrite(logfd, *tmp, strlen(*tmp)) < 0)
D
Daniel Veillard 已提交
893
            VIR_WARN(_("Unable to write argv to logfile: %s"),
894
                   virStrerror(errno, ebuf, sizeof ebuf));
895
        if (safewrite(logfd, " ", 1) < 0)
D
Daniel Veillard 已提交
896
            VIR_WARN(_("Unable to write argv to logfile: %s"),
897
                   virStrerror(errno, ebuf, sizeof ebuf));
898 899 900
        tmp++;
    }
    if (safewrite(logfd, "\n", 1) < 0)
D
Daniel Veillard 已提交
901
        VIR_WARN(_("Unable to write argv to logfile: %s"),
902
                 virStrerror(errno, ebuf, sizeof ebuf));
903

904
    priv->monitor = -1;
905

906 907
    ret = virExecDaemonize(conn, argv, progenv, &keepfd, &pid,
                           -1, &logfd, &logfd,
908 909
                           VIR_EXEC_CLEAR_CAPS,
                           NULL, NULL, NULL);
910 911 912 913 914 915 916 917 918 919
    close(logfd);

    for (i = 0 ; argv[i] ; i++)
        VIR_FREE(argv[i]);
    VIR_FREE(argv);

    for (i = 0 ; progenv[i] ; i++)
        VIR_FREE(progenv[i]);
    VIR_FREE(progenv);

920 921
    if (ret < 0)
        umlCleanupTapDevices(conn, vm);
922 923 924

    /* NB we don't mark it running here - we do that async
       with inotify */
925 926 927
    /* XXX what if someone else tries to start it again
       before we get the inotification ? Sounds like
       trouble.... */
928 929 930 931 932 933 934 935 936

    return ret;
}

static void umlShutdownVMDaemon(virConnectPtr conn ATTRIBUTE_UNUSED,
                                struct uml_driver *driver ATTRIBUTE_UNUSED,
                                virDomainObjPtr vm)
{
    int ret;
937 938
    umlDomainObjPrivatePtr priv = vm->privateData;

D
Daniel P. Berrange 已提交
939
    if (!virDomainObjIsActive(vm))
940 941
        return;

942
    virKillProcess(vm->pid, SIGTERM);
943

944 945 946
    if (priv->monitor != -1)
        close(priv->monitor);
    priv->monitor = -1;
947 948

    if ((ret = waitpid(vm->pid, NULL, 0)) != vm->pid) {
D
Daniel Veillard 已提交
949
        VIR_WARN(_("Got unexpected pid %d != %d"),
950 951 952 953 954 955 956
               ret, vm->pid);
    }

    vm->pid = -1;
    vm->def->id = -1;
    vm->state = VIR_DOMAIN_SHUTOFF;

957 958
    umlCleanupTapDevices(conn, vm);

959 960 961 962 963 964 965 966 967 968 969 970
    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,
                                int flags ATTRIBUTE_UNUSED) {
971 972 973
    if (conn->uri == NULL) {
        if (uml_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
974

975
        conn->uri = xmlParseURI(uml_driver->privileged ?
976 977 978 979 980 981 982 983 984 985 986 987 988 989
                                "uml:///system" :
                                "uml:///session");
        if (!conn->uri) {
            virReportOOMError(conn);
            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;
990 991


992
        /* Check path and tell them correct path if they made a mistake */
993
        if (uml_driver->privileged) {
994
            if (STRNEQ (conn->uri->path, "/system") &&
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
                STRNEQ (conn->uri->path, "/session")) {
                umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                               _("unexpected UML URI path '%s', try uml:///system"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
        } else {
            if (STRNEQ (conn->uri->path, "/session")) {
                umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                               _("unexpected UML URI path '%s', try uml:///session"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
1008
        }
1009 1010 1011 1012 1013

        /* URI was good, but driver isn't active */
        if (uml_driver == NULL) {
            umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR, "%s",
                           _("uml state driver is not active"));
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
            return VIR_DRV_OPEN_ERROR;
        }
    }

    conn->privateData = uml_driver;

    return VIR_DRV_OPEN_SUCCESS;
}

static int umlClose(virConnectPtr conn) {
1024
    /*struct uml_driver *driver = conn->privateData;*/
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035

    conn->privateData = NULL;

    return 0;
}

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


1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
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;
}


1050 1051 1052 1053
static char *umlGetCapabilities(virConnectPtr conn) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
    char *xml;

1054
    umlDriverLock(driver);
1055
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
1056
        virReportOOMError(conn);
1057
    umlDriverUnlock(driver);
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081

    return xml;
}



static int umlGetProcessInfo(unsigned long long *cpuTime, int pid) {
    char proc[PATH_MAX];
    FILE *pidinfo;
    unsigned long long usertime, systime;

    if (snprintf(proc, sizeof(proc), "/proc/%d/stat", pid) >= (int)sizeof(proc)) {
        return -1;
    }

    if (!(pidinfo = fopen(proc, "r"))) {
        /*printf("cannot read pid info");*/
        /* VM probably shut down, so fake 0 */
        *cpuTime = 0;
        return 0;
    }

    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");
1082
        fclose(pidinfo);
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
        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);

    fclose(pidinfo);

    return 0;
}


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

1107
    umlDriverLock(driver);
1108
    vm = virDomainFindByID(&driver->domains, id);
1109 1110
    umlDriverUnlock(driver);

1111 1112
    if (!vm) {
        umlReportError(conn, NULL, NULL, VIR_ERR_NO_DOMAIN, NULL);
1113
        goto cleanup;
1114 1115 1116 1117
    }

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

cleanup:
1120 1121
    if (vm)
        virDomainObjUnlock(vm);
1122 1123
    return dom;
}
1124

1125 1126 1127
static virDomainPtr umlDomainLookupByUUID(virConnectPtr conn,
                                            const unsigned char *uuid) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1128 1129
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1130

1131
    umlDriverLock(driver);
1132
    vm = virDomainFindByUUID(&driver->domains, uuid);
1133 1134
    umlDriverUnlock(driver);

1135 1136
    if (!vm) {
        umlReportError(conn, NULL, NULL, VIR_ERR_NO_DOMAIN, NULL);
1137
        goto cleanup;
1138 1139 1140 1141
    }

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

cleanup:
1144 1145
    if (vm)
        virDomainObjUnlock(vm);
1146 1147
    return dom;
}
1148

1149 1150 1151
static virDomainPtr umlDomainLookupByName(virConnectPtr conn,
                                            const char *name) {
    struct uml_driver *driver = (struct uml_driver *)conn->privateData;
1152 1153
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
1154

1155
    umlDriverLock(driver);
1156
    vm = virDomainFindByName(&driver->domains, name);
1157 1158
    umlDriverUnlock(driver);

1159 1160
    if (!vm) {
        umlReportError(conn, NULL, NULL, VIR_ERR_NO_DOMAIN, NULL);
1161
        goto cleanup;
1162 1163 1164 1165
    }

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

cleanup:
1168 1169
    if (vm)
        virDomainObjUnlock(vm);
1170 1171 1172
    return dom;
}

1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217

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) {
        umlReportError(dom->conn, NULL, NULL, VIR_ERR_NO_DOMAIN, NULL);
        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) {
        umlReportError(dom->conn, NULL, NULL, VIR_ERR_NO_DOMAIN, NULL);
        goto cleanup;
    }
    ret = obj->persistent;

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


1218
static int umlGetVersion(virConnectPtr conn, unsigned long *version) {
1219
    struct uml_driver *driver = conn->privateData;
1220 1221
    struct utsname ut;
    int major, minor, micro;
1222
    int ret = -1;
1223 1224 1225

    uname(&ut);

1226
    umlDriverLock(driver);
1227 1228 1229 1230
    if (sscanf(ut.release, "%u.%u.%u",
               &major, &minor, &micro) != 3) {
        umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                       _("cannot parse version %s"), ut.release);
1231
        goto cleanup;
1232 1233
    }

1234 1235 1236 1237 1238 1239
    *version = driver->umlVersion;
    ret = 0;

cleanup:
    umlDriverUnlock(driver);
    return ret;
1240 1241 1242
}

static int umlListDomains(virConnectPtr conn, int *ids, int nids) {
1243
    struct uml_driver *driver = conn->privateData;
1244
    int n;
1245

1246
    umlDriverLock(driver);
1247
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
1248
    umlDriverUnlock(driver);
1249

1250
    return n;
1251 1252
}
static int umlNumDomains(virConnectPtr conn) {
1253
    struct uml_driver *driver = conn->privateData;
1254
    int n;
1255

1256
    umlDriverLock(driver);
1257
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
1258
    umlDriverUnlock(driver);
1259 1260 1261 1262 1263

    return n;
}
static virDomainPtr umlDomainCreate(virConnectPtr conn, const char *xml,
                                      unsigned int flags ATTRIBUTE_UNUSED) {
1264
    struct uml_driver *driver = conn->privateData;
1265
    virDomainDefPtr def;
1266
    virDomainObjPtr vm = NULL;
1267
    virDomainPtr dom = NULL;
1268

1269
    umlDriverLock(driver);
1270 1271
    if (!(def = virDomainDefParseString(conn, driver->caps, xml,
                                        VIR_DOMAIN_XML_INACTIVE)))
1272
        goto cleanup;
1273

1274
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
1275
        goto cleanup;
1276 1277

    if (!(vm = virDomainAssignDef(conn,
1278
                                  driver->caps,
1279
                                  &driver->domains,
1280 1281 1282
                                  def)))
        goto cleanup;
    def = NULL;
1283 1284 1285 1286

    if (umlStartVMDaemon(conn, driver, vm) < 0) {
        virDomainRemoveInactive(&driver->domains,
                                vm);
1287 1288
        vm = NULL;
        goto cleanup;
1289 1290 1291 1292
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1293 1294 1295

cleanup:
    virDomainDefFree(def);
1296 1297 1298
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1299 1300 1301 1302 1303
    return dom;
}


static int umlDomainShutdown(virDomainPtr dom) {
1304 1305
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1306
    char *info = NULL;
1307
    int ret = -1;
1308

1309
    umlDriverLock(driver);
1310
    vm = virDomainFindByID(&driver->domains, dom->id);
1311
    umlDriverUnlock(driver);
1312 1313 1314
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         _("no domain with matching id %d"), dom->id);
1315
        goto cleanup;
1316 1317 1318 1319 1320 1321
    }

#if 0
    if (umlMonitorCommand(driver, vm, "system_powerdown", &info) < 0) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_OPERATION_FAILED,
                         "%s", _("shutdown operation failed"));
1322
        goto cleanup;
1323
    }
1324
    ret = 0;
1325 1326
#endif

1327 1328
cleanup:
    VIR_FREE(info);
1329 1330
    if (vm)
        virDomainObjUnlock(vm);
1331
    return ret;
1332 1333 1334 1335
}


static int umlDomainDestroy(virDomainPtr dom) {
1336 1337 1338
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1339

1340
    umlDriverLock(driver);
1341
    vm = virDomainFindByID(&driver->domains, dom->id);
1342 1343 1344
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         _("no domain with matching id %d"), dom->id);
1345
        goto cleanup;
1346 1347 1348
    }

    umlShutdownVMDaemon(dom->conn, driver, vm);
1349
    if (!vm->persistent) {
1350 1351
        virDomainRemoveInactive(&driver->domains,
                                vm);
1352 1353 1354
        vm = NULL;
    }
    ret = 0;
1355

1356
cleanup:
1357 1358 1359
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1360
    return ret;
1361 1362 1363 1364
}


static char *umlDomainGetOSType(virDomainPtr dom) {
1365 1366 1367
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *type = NULL;
1368

1369
    umlDriverLock(driver);
1370
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1371
    umlDriverUnlock(driver);
1372 1373 1374
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         "%s", _("no domain with matching uuid"));
1375
        goto cleanup;
1376 1377
    }

1378
    if (!(type = strdup(vm->def->os.type)))
1379
        virReportOOMError(dom->conn);
1380 1381

cleanup:
1382 1383
    if (vm)
        virDomainObjUnlock(vm);
1384 1385 1386 1387 1388
    return type;
}

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

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

1397 1398 1399 1400 1401
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
1402 1403
                       _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
1404
    }
1405
    ret = vm->def->maxmem;
1406

1407
cleanup:
1408 1409
    if (vm)
        virDomainObjUnlock(vm);
1410
    return ret;
1411 1412 1413
}

static int umlDomainSetMaxMemory(virDomainPtr dom, unsigned long newmax) {
1414 1415 1416
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1417

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

1422 1423 1424 1425 1426 1427
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         _("no domain with matching uuid '%s'"), uuidstr);
1428
        goto cleanup;
1429 1430 1431 1432 1433
    }

    if (newmax < vm->def->memory) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_ARG,
                         "%s", _("cannot set max memory lower than current memory"));
1434
        goto cleanup;
1435 1436 1437
    }

    vm->def->maxmem = newmax;
1438 1439 1440
    ret = 0;

cleanup:
1441 1442
    if (vm)
        virDomainObjUnlock(vm);
1443
    return ret;
1444 1445 1446
}

static int umlDomainSetMemory(virDomainPtr dom, unsigned long newmem) {
1447 1448 1449
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1450

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

1455 1456 1457 1458 1459 1460
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         _("no domain with matching uuid '%s'"), uuidstr);
1461
        goto cleanup;
1462 1463
    }

D
Daniel P. Berrange 已提交
1464
    if (virDomainObjIsActive(vm)) {
1465 1466
        umlReportError(dom->conn, dom, NULL, VIR_ERR_NO_SUPPORT,
                         "%s", _("cannot set memory of an active domain"));
1467
        goto cleanup;
1468 1469 1470 1471 1472
    }

    if (newmem > vm->def->maxmem) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_ARG,
                         "%s", _("cannot set memory higher than max memory"));
1473
        goto cleanup;
1474 1475 1476
    }

    vm->def->memory = newmem;
1477 1478 1479
    ret = 0;

cleanup:
1480 1481
    if (vm)
        virDomainObjUnlock(vm);
1482
    return ret;
1483 1484 1485 1486
}

static int umlDomainGetInfo(virDomainPtr dom,
                              virDomainInfoPtr info) {
1487 1488 1489 1490
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

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

1495 1496
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
1497 1498
                       "%s", _("no domain with matching uuid"));
        goto cleanup;
1499 1500 1501 1502
    }

    info->state = vm->state;

D
Daniel P. Berrange 已提交
1503
    if (!virDomainObjIsActive(vm)) {
1504 1505 1506
        info->cpuTime = 0;
    } else {
        if (umlGetProcessInfo(&(info->cpuTime), vm->pid) < 0) {
1507 1508 1509
            umlReportError(dom->conn, dom, NULL, VIR_ERR_OPERATION_FAILED,
                           "%s", _("cannot read cputime for domain"));
            goto cleanup;
1510 1511 1512 1513 1514 1515
        }
    }

    info->maxMem = vm->def->maxmem;
    info->memory = vm->def->memory;
    info->nrVirtCpu = vm->def->vcpus;
1516 1517 1518
    ret = 0;

cleanup:
1519 1520
    if (vm)
        virDomainObjUnlock(vm);
1521
    return ret;
1522 1523 1524 1525 1526
}


static char *umlDomainDumpXML(virDomainPtr dom,
                                int flags ATTRIBUTE_UNUSED) {
1527 1528 1529 1530
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;

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

1535 1536 1537
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         "%s", _("no domain with matching uuid"));
1538
        goto cleanup;
1539 1540
    }

1541 1542 1543 1544 1545 1546
    ret = virDomainDefFormat(dom->conn,
                             (flags & VIR_DOMAIN_XML_INACTIVE) && vm->newDef ?
                             vm->newDef : vm->def,
                             flags);

cleanup:
1547 1548
    if (vm)
        virDomainObjUnlock(vm);
1549
    return ret;
1550 1551 1552 1553 1554
}


static int umlListDefinedDomains(virConnectPtr conn,
                            char **const names, int nnames) {
1555
    struct uml_driver *driver = conn->privateData;
1556
    int n;
1557

1558
    umlDriverLock(driver);
1559
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
1560
    umlDriverUnlock(driver);
1561

1562
    return n;
1563 1564 1565
}

static int umlNumDefinedDomains(virConnectPtr conn) {
1566
    struct uml_driver *driver = conn->privateData;
1567
    int n;
1568

1569
    umlDriverLock(driver);
1570
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
1571
    umlDriverUnlock(driver);
1572 1573 1574 1575 1576 1577

    return n;
}


static int umlDomainStart(virDomainPtr dom) {
1578 1579 1580
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1581

1582
    umlDriverLock(driver);
1583
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1584

1585 1586 1587
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         "%s", _("no domain with matching uuid"));
1588
        goto cleanup;
1589 1590
    }

1591 1592 1593
    ret = umlStartVMDaemon(dom->conn, driver, vm);

cleanup:
1594 1595 1596
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1597
    return ret;
1598 1599 1600 1601
}


static virDomainPtr umlDomainDefine(virConnectPtr conn, const char *xml) {
1602
    struct uml_driver *driver = conn->privateData;
1603
    virDomainDefPtr def;
1604
    virDomainObjPtr vm = NULL;
1605
    virDomainPtr dom = NULL;
1606

1607
    umlDriverLock(driver);
1608 1609
    if (!(def = virDomainDefParseString(conn, driver->caps, xml,
                                        VIR_DOMAIN_XML_INACTIVE)))
1610
        goto cleanup;
1611

1612 1613 1614
    if (virDomainObjIsDuplicate(&driver->domains, def, 0) < 0)
        goto cleanup;

1615
    if (!(vm = virDomainAssignDef(conn,
1616
                                  driver->caps,
1617
                                  &driver->domains,
1618 1619 1620
                                  def)))
        goto cleanup;
    def = NULL;
1621 1622 1623 1624 1625 1626 1627
    vm->persistent = 1;

    if (virDomainSaveConfig(conn,
                            driver->configDir,
                            vm->newDef ? vm->newDef : vm->def) < 0) {
        virDomainRemoveInactive(&driver->domains,
                                vm);
1628
        vm = NULL;
1629
        goto cleanup;
1630 1631 1632 1633
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (dom) dom->id = vm->def->id;
1634 1635 1636

cleanup:
    virDomainDefFree(def);
1637 1638 1639
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1640 1641 1642 1643
    return dom;
}

static int umlDomainUndefine(virDomainPtr dom) {
1644 1645 1646
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1647

1648
    umlDriverLock(driver);
1649
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1650 1651 1652
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         "%s", _("no domain with matching uuid"));
1653
        goto cleanup;
1654 1655
    }

D
Daniel P. Berrange 已提交
1656
    if (virDomainObjIsActive(vm)) {
1657 1658
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("cannot delete active domain"));
1659
        goto cleanup;
1660 1661 1662 1663 1664
    }

    if (!vm->persistent) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("cannot undefine transient domain"));
1665
        goto cleanup;
1666 1667 1668
    }

    if (virDomainDeleteConfig(dom->conn, driver->configDir, driver->autostartDir, vm) < 0)
1669
        goto cleanup;
1670 1671 1672

    virDomainRemoveInactive(&driver->domains,
                            vm);
1673
    vm = NULL;
1674
    ret = 0;
1675

1676
cleanup:
1677 1678 1679
    if (vm)
        virDomainObjUnlock(vm);
    umlDriverUnlock(driver);
1680
    return ret;
1681 1682 1683 1684 1685 1686
}



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

1691
    umlDriverLock(driver);
1692
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1693

1694 1695 1696
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         "%s", _("no domain with matching uuid"));
1697
        goto cleanup;
1698 1699 1700
    }

    *autostart = vm->autostart;
1701
    ret = 0;
1702

1703
cleanup:
1704 1705
    if (vm)
        virDomainObjUnlock(vm);
1706
    umlDriverUnlock(driver);
1707
    return ret;
1708 1709 1710 1711
}

static int umlDomainSetAutostart(virDomainPtr dom,
                                   int autostart) {
1712
    struct uml_driver *driver = dom->conn->privateData;
1713
    virDomainObjPtr vm;
1714 1715 1716
    char *configFile = NULL, *autostartLink = NULL;
    int ret = -1;

1717 1718 1719
    umlDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);

1720 1721 1722
    if (!vm) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
                         "%s", _("no domain with matching uuid"));
1723
        goto cleanup;
1724 1725 1726 1727 1728
    }

    if (!vm->persistent) {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("cannot set autostart for transient domain"));
1729
        goto cleanup;
1730 1731 1732 1733
    }

    autostart = (autostart != 0);

1734 1735 1736 1737 1738
    if (vm->autostart != autostart) {
        if ((configFile = virDomainConfigFile(dom->conn, driver->configDir, vm->def->name)) == NULL)
            goto cleanup;
        if ((autostartLink = virDomainConfigFile(dom->conn, driver->autostartDir, vm->def->name)) == NULL)
            goto cleanup;
1739

1740 1741
        if (autostart) {
            int err;
1742

1743
            if ((err = virFileMakePath(driver->autostartDir))) {
1744 1745 1746
                virReportSystemError(dom->conn, err,
                                     _("cannot create autostart directory %s"),
                                     driver->autostartDir);
1747 1748
                goto cleanup;
            }
1749

1750
            if (symlink(configFile, autostartLink) < 0) {
1751 1752 1753
                virReportSystemError(dom->conn, errno,
                                     _("Failed to create symlink '%s to '%s'"),
                                     autostartLink, configFile);
1754 1755 1756 1757
                goto cleanup;
            }
        } else {
            if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
1758 1759 1760
                virReportSystemError(dom->conn, errno,
                                     _("Failed to delete symlink '%s'"),
                                     autostartLink);
1761 1762
                goto cleanup;
            }
1763 1764
        }

1765
        vm->autostart = autostart;
1766 1767 1768 1769 1770 1771
    }
    ret = 0;

cleanup:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
1772 1773
    if (vm)
        virDomainObjUnlock(vm);
1774
    umlDriverUnlock(driver);
1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
    return ret;
}


static int
umlDomainBlockPeek (virDomainPtr dom,
                      const char *path,
                      unsigned long long offset, size_t size,
                      void *buffer,
                      unsigned int flags ATTRIBUTE_UNUSED)
{
1786 1787 1788
    struct uml_driver *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int fd = -1, ret = -1, i;
1789

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

1794 1795
    if (!vm) {
        umlReportError (dom->conn, dom, NULL, VIR_ERR_INVALID_DOMAIN,
J
Jim Meyering 已提交
1796
                        "%s", _("no domain with matching uuid"));
1797
        goto cleanup;
1798 1799 1800 1801
    }

    if (!path || path[0] == '\0') {
        umlReportError(dom->conn, dom, NULL, VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
1802
                       "%s", _("NULL or empty path"));
1803
        goto cleanup;
1804 1805 1806 1807 1808
    }

    /* Check the path belongs to this domain. */
    for (i = 0 ; i < vm->def->ndisks ; i++) {
        if (vm->def->disks[i]->src != NULL &&
1809 1810 1811 1812
            STREQ (vm->def->disks[i]->src, path)) {
            ret = 0;
            break;
        }
1813 1814
    }

1815 1816 1817 1818 1819
    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) {
1820 1821
            virReportSystemError(dom->conn, errno,
                                 _("cannot open %s"), path);
1822 1823
            goto cleanup;
        }
1824

1825 1826 1827 1828 1829 1830
        /* 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) {
1831 1832
            virReportSystemError(dom->conn, errno,
                                 _("cannot read %s"), path);
1833 1834 1835 1836 1837 1838
            goto cleanup;
        }

        ret = 0;
    } else {
        umlReportError (dom->conn, dom, NULL, VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
1839
                        "%s", _("invalid path"));
1840 1841
    }

1842
cleanup:
1843
    if (fd >= 0) close (fd);
1844 1845
    if (vm)
        virDomainObjUnlock(vm);
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858
    return ret;
}



static virDriver umlDriver = {
    VIR_DRV_UML,
    "UML",
    umlOpen, /* open */
    umlClose, /* close */
    NULL, /* supports_feature */
    umlGetType, /* type */
    umlGetVersion, /* version */
1859
    NULL, /* libvirtVersion (impl. in libvirt.c) */
1860
    virGetHostname, /* getHostname */
1861
    NULL, /* getMaxVcpus */
1862
    nodeGetInfo, /* nodeGetInfo */
1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886
    umlGetCapabilities, /* getCapabilities */
    umlListDomains, /* listDomains */
    umlNumDomains, /* numOfDomains */
    umlDomainCreate, /* domainCreateXML */
    umlDomainLookupByID, /* domainLookupByID */
    umlDomainLookupByUUID, /* domainLookupByUUID */
    umlDomainLookupByName, /* domainLookupByName */
    NULL, /* domainSuspend */
    NULL, /* domainResume */
    umlDomainShutdown, /* domainShutdown */
    NULL, /* domainReboot */
    umlDomainDestroy, /* domainDestroy */
    umlDomainGetOSType, /* domainGetOSType */
    umlDomainGetMaxMemory, /* domainGetMaxMemory */
    umlDomainSetMaxMemory, /* domainSetMaxMemory */
    umlDomainSetMemory, /* domainSetMemory */
    umlDomainGetInfo, /* domainGetInfo */
    NULL, /* domainSave */
    NULL, /* domainRestore */
    NULL, /* domainCoreDump */
    NULL, /* domainSetVcpus */
    NULL, /* domainPinVcpu */
    NULL, /* domainGetVcpus */
    NULL, /* domainGetMaxVcpus */
1887 1888
    NULL, /* domainGetSecurityLabel */
    NULL, /* nodeGetSecurityModel */
1889
    umlDomainDumpXML, /* domainDumpXML */
1890 1891
    NULL, /* domainXMLFromNative */
    NULL, /* domainXMLToNative */
1892 1893
    umlListDefinedDomains, /* listDefinedDomains */
    umlNumDefinedDomains, /* numOfDefinedDomains */
1894 1895 1896 1897
    umlDomainStart, /* domainCreate */
    umlDomainDefine, /* domainDefineXML */
    umlDomainUndefine, /* domainUndefine */
    NULL, /* domainAttachDevice */
1898
    NULL, /* domainAttachDeviceFlags */
1899
    NULL, /* domainDetachDevice */
1900
    NULL, /* domainDetachDeviceFlags */
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
    umlDomainGetAutostart, /* domainGetAutostart */
    umlDomainSetAutostart, /* domainSetAutostart */
    NULL, /* domainGetSchedulerType */
    NULL, /* domainGetSchedulerParameters */
    NULL, /* domainSetSchedulerParameters */
    NULL, /* domainMigratePrepare */
    NULL, /* domainMigratePerform */
    NULL, /* domainMigrateFinish */
    NULL, /* domainBlockStats */
    NULL, /* domainInterfaceStats */
1911
    NULL, /* domainMemoryStats */
1912 1913
    umlDomainBlockPeek, /* domainBlockPeek */
    NULL, /* domainMemoryPeek */
1914 1915
    nodeGetCellsFreeMemory, /* nodeGetCellsFreeMemory */
    nodeGetFreeMemory,  /* getFreeMemory */
1916
    NULL, /* domainEventRegister */
1917
    NULL, /* domainEventDeregister */
1918 1919
    NULL, /* domainMigratePrepare2 */
    NULL, /* domainMigrateFinish2 */
1920
    NULL, /* nodeDeviceDettach */
1921 1922
    NULL, /* nodeDeviceReAttach */
    NULL, /* nodeDeviceReset */
C
Chris Lalancette 已提交
1923
    NULL, /* domainMigratePrepareTunnel */
1924 1925 1926 1927
    umlIsEncrypted,
    umlIsSecure,
    umlDomainIsActive,
    umlDomainIsPersistent,
J
Jiri Denemark 已提交
1928
    NULL, /* cpuCompare */
1929 1930 1931 1932
};


static virStateDriver umlStateDriver = {
1933
    .name = "UML",
1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944
    .initialize = umlStartup,
    .cleanup = umlShutdown,
    .reload = umlReload,
    .active = umlActive,
};

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