libxl_driver.c 124.6 KB
Newer Older
J
Jim Fehlig 已提交
1
/*---------------------------------------------------------------------------*/
2
/*  Copyright (C) 2006-2012 Red Hat, Inc.
3
 *  Copyright (C) 2011-2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
J
Jim Fehlig 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16
 *  Copyright (C) 2011 Univention GmbH.
 *
 * 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
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
M
Markus Groß 已提交
19 20 21 22 23
 *
 * Authors:
 *     Jim Fehlig <jfehlig@novell.com>
 *     Markus Groß <gross@univention.de>
 *     Daniel P. Berrange <berrange@redhat.com>
J
Jim Fehlig 已提交
24 25 26 27 28
 */
/*---------------------------------------------------------------------------*/

#include <config.h>

29
#include <math.h>
J
Jim Fehlig 已提交
30
#include <libxl.h>
31
#include <fcntl.h>
J
Jim Fehlig 已提交
32 33

#include "internal.h"
34
#include "virlog.h"
35
#include "virerror.h"
36
#include "virconf.h"
J
Jim Fehlig 已提交
37
#include "datatypes.h"
E
Eric Blake 已提交
38
#include "virfile.h"
39
#include "viralloc.h"
40
#include "viruuid.h"
41
#include "vircommand.h"
J
Jim Fehlig 已提交
42 43
#include "libxl_driver.h"
#include "libxl_conf.h"
44
#include "xen_xm.h"
45
#include "virtypedparam.h"
M
Martin Kletzander 已提交
46
#include "viruri.h"
J
Jim Fehlig 已提交
47 48 49 50 51 52 53 54 55

#define VIR_FROM_THIS VIR_FROM_LIBXL

#define LIBXL_DOM_REQ_POWEROFF 0
#define LIBXL_DOM_REQ_REBOOT   1
#define LIBXL_DOM_REQ_SUSPEND  2
#define LIBXL_DOM_REQ_CRASH    3
#define LIBXL_DOM_REQ_HALT     4

56 57
#define LIBXL_CONFIG_FORMAT_XM "xen-xm"

58 59 60
/* Number of Xen scheduler parameters */
#define XEN_SCHED_CREDIT_NPARAM   2

J
Jim Fehlig 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
/* Append an event registration to the list of registrations */
#define LIBXL_EV_REG_APPEND(head, add)                 \
    do {                                               \
        libxlEventHookInfoPtr temp;                    \
        if (head) {                                    \
            temp = head;                               \
            while (temp->next)                         \
                temp = temp->next;                     \
            temp->next = add;                          \
        } else {                                       \
            head = add;                                \
        }                                              \
    } while (0)

/* Remove an event registration from the list of registrations */
#define LIBXL_EV_REG_REMOVE(head, del)                 \
    do {                                               \
        libxlEventHookInfoPtr temp;                    \
        if (head == del) {                             \
            head = head->next;                         \
        } else {                                       \
            temp = head;                               \
            while (temp->next && temp->next != del)    \
                temp = temp->next;                     \
            if (temp->next) {                          \
                temp->next = del->next;                \
            }                                          \
        }                                              \
    } while (0)

91 92
/* Object used to store info related to libxl event registrations */
struct _libxlEventHookInfo {
J
Jim Fehlig 已提交
93
    libxlEventHookInfoPtr next;
J
Jim Fehlig 已提交
94 95 96 97 98
    libxlDomainObjPrivatePtr priv;
    void *xl_priv;
    int id;
};

99
static virClassPtr libxlDomainObjPrivateClass;
100

J
Jim Fehlig 已提交
101 102 103
static libxlDriverPrivatePtr libxl_driver = NULL;

/* Function declarations */
104 105
static int
libxlDomainManagedSaveLoad(virDomainObjPtr vm,
106 107
                           void *opaque);

J
Jim Fehlig 已提交
108
static int
109 110
libxlVmStart(libxlDriverPrivatePtr driver, virDomainObjPtr vm,
             bool start_paused, int restore_fd);
J
Jim Fehlig 已提交
111 112

/* Function definitions */
113 114 115 116 117 118 119 120 121 122 123 124 125 126
static int
libxlDomainObjPrivateOnceInit(void)
{
    if (!(libxlDomainObjPrivateClass = virClassNew(virClassForObjectLockable(),
                                                   "libxlDomainObjPrivate",
                                                   sizeof(libxlDomainObjPrivate),
                                                   NULL)))
        return -1;

    return 0;
}

VIR_ONCE_GLOBAL_INIT(libxlDomainObjPrivate)

J
Jim Fehlig 已提交
127 128 129 130 131 132 133 134 135 136 137 138
static void
libxlDriverLock(libxlDriverPrivatePtr driver)
{
    virMutexLock(&driver->lock);
}

static void
libxlDriverUnlock(libxlDriverPrivatePtr driver)
{
    virMutexUnlock(&driver->lock);
}

139 140 141
static void
libxlEventHookInfoFree(void *obj)
{
142 143 144 145 146
    libxlEventHookInfoPtr info = obj;

    /* Drop reference on libxlDomainObjPrivate */
    virObjectUnref(info->priv);
    VIR_FREE(info);
147 148
}

149 150 151 152
static void
libxlFDEventCallback(int watch ATTRIBUTE_UNUSED,
                     int fd,
                     int vir_events,
153
                     void *fd_info)
J
Jim Fehlig 已提交
154
{
155
    libxlEventHookInfoPtr info = fd_info;
J
Jim Fehlig 已提交
156 157
    int events = 0;

158
    virObjectLock(info->priv);
J
Jim Fehlig 已提交
159 160 161 162 163 164 165 166 167
    if (vir_events & VIR_EVENT_HANDLE_READABLE)
        events |= POLLIN;
    if (vir_events & VIR_EVENT_HANDLE_WRITABLE)
        events |= POLLOUT;
    if (vir_events & VIR_EVENT_HANDLE_ERROR)
        events |= POLLERR;
    if (vir_events & VIR_EVENT_HANDLE_HANGUP)
        events |= POLLHUP;

168
    virObjectUnlock(info->priv);
J
Jim Fehlig 已提交
169 170 171
    libxl_osevent_occurred_fd(info->priv->ctx, info->xl_priv, fd, 0, events);
}

172 173 174
static int
libxlFDRegisterEventHook(void *priv, int fd, void **hndp,
                         short events, void *xl_priv)
J
Jim Fehlig 已提交
175 176
{
    int vir_events = VIR_EVENT_HANDLE_ERROR;
177
    libxlEventHookInfoPtr info;
J
Jim Fehlig 已提交
178

179
    if (VIR_ALLOC(info) < 0) {
J
Jim Fehlig 已提交
180 181 182 183
        virReportOOMError();
        return -1;
    }

184 185 186 187 188 189 190 191 192
    info->priv = priv;
    /*
     * Take a reference on the domain object.  Reference is dropped in
     * libxlEventHookInfoFree, ensuring the domain object outlives the fd
     * event objects.
     */
    virObjectRef(info->priv);
    info->xl_priv = xl_priv;

J
Jim Fehlig 已提交
193 194 195 196
    if (events & POLLIN)
        vir_events |= VIR_EVENT_HANDLE_READABLE;
    if (events & POLLOUT)
        vir_events |= VIR_EVENT_HANDLE_WRITABLE;
197

198 199 200
    info->id = virEventAddHandle(fd, vir_events, libxlFDEventCallback,
                                 info, libxlEventHookInfoFree);
    if (info->id < 0) {
201
        virObjectUnref(info->priv);
202 203
        VIR_FREE(info);
        return -1;
J
Jim Fehlig 已提交
204 205
    }

206 207
    *hndp = info;

J
Jim Fehlig 已提交
208 209 210
    return 0;
}

211 212 213 214 215
static int
libxlFDModifyEventHook(void *priv ATTRIBUTE_UNUSED,
                       int fd ATTRIBUTE_UNUSED,
                       void **hndp,
                       short events)
J
Jim Fehlig 已提交
216
{
217
    libxlEventHookInfoPtr info = *hndp;
J
Jim Fehlig 已提交
218 219
    int vir_events = VIR_EVENT_HANDLE_ERROR;

220
    virObjectLock(info->priv);
J
Jim Fehlig 已提交
221 222 223 224 225
    if (events & POLLIN)
        vir_events |= VIR_EVENT_HANDLE_READABLE;
    if (events & POLLOUT)
        vir_events |= VIR_EVENT_HANDLE_WRITABLE;

226 227 228
    virEventUpdateHandle(info->id, vir_events);
    virObjectUnlock(info->priv);

J
Jim Fehlig 已提交
229 230 231
    return 0;
}

232 233 234 235
static void
libxlFDDeregisterEventHook(void *priv ATTRIBUTE_UNUSED,
                           int fd ATTRIBUTE_UNUSED,
                           void *hnd)
J
Jim Fehlig 已提交
236
{
237 238
    libxlEventHookInfoPtr info = hnd;
    libxlDomainObjPrivatePtr p = info->priv;
J
Jim Fehlig 已提交
239

240 241 242
    virObjectLock(p);
    virEventRemoveHandle(info->id);
    virObjectUnlock(p);
J
Jim Fehlig 已提交
243 244
}

245
static void
246
libxlTimerCallback(int timer ATTRIBUTE_UNUSED, void *timer_info)
J
Jim Fehlig 已提交
247
{
248 249
    libxlEventHookInfoPtr info = timer_info;
    libxlDomainObjPrivatePtr p = info->priv;
J
Jim Fehlig 已提交
250

251
    virObjectLock(p);
J
Jim Fehlig 已提交
252 253 254 255 256 257 258
    /*
     * libxl expects the event to be deregistered when calling
     * libxl_osevent_occurred_timeout, but we dont want the event info
     * destroyed.  Disable the timeout and only remove it after returning
     * from libxl.
     */
    virEventUpdateTimeout(info->id, -1);
259 260 261
    virObjectUnlock(p);
    libxl_osevent_occurred_timeout(p->ctx, info->xl_priv);
    virObjectLock(p);
J
Jim Fehlig 已提交
262 263 264 265 266 267
    /*
     * Timeout could have been freed while the lock was dropped.
     * Only remove it from the list if it still exists.
     */
    if (virEventRemoveTimeout(info->id) == 0)
        LIBXL_EV_REG_REMOVE(p->timerRegistrations, info);
268
    virObjectUnlock(p);
J
Jim Fehlig 已提交
269 270
}

271 272 273 274
static int
libxlTimeoutRegisterEventHook(void *priv,
                              void **hndp,
                              struct timeval abs_t,
275
                              void *xl_priv)
J
Jim Fehlig 已提交
276
{
277
    libxlEventHookInfoPtr info;
J
Jim Fehlig 已提交
278
    struct timeval now;
J
Jim Fehlig 已提交
279 280
    struct timeval res;
    static struct timeval zero;
281
    int timeout;
J
Jim Fehlig 已提交
282

283
    if (VIR_ALLOC(info) < 0) {
J
Jim Fehlig 已提交
284 285 286 287
        virReportOOMError();
        return -1;
    }

288 289 290 291 292 293 294 295 296
    info->priv = priv;
    /*
     * Also take a reference on the domain object.  Reference is dropped in
     * libxlEventHookInfoFree, ensuring the domain object outlives the timeout
     * event objects.
     */
    virObjectRef(info->priv);
    info->xl_priv = xl_priv;

J
Jim Fehlig 已提交
297
    gettimeofday(&now, NULL);
J
Jim Fehlig 已提交
298 299 300 301 302 303 304 305 306
    timersub(&abs_t, &now, &res);
    /* Ensure timeout is not overflowed */
    if (timercmp(&res, &zero, <)) {
        timeout = 0;
    } else if (res.tv_sec > INT_MAX / 1000) {
        timeout = INT_MAX;
    } else {
        timeout = res.tv_sec * 1000 + (res.tv_usec + 999) / 1000;
    }
307 308 309
    info->id = virEventAddTimeout(timeout, libxlTimerCallback,
                                  info, libxlEventHookInfoFree);
    if (info->id < 0) {
310
        virObjectUnref(info->priv);
311 312
        VIR_FREE(info);
        return -1;
J
Jim Fehlig 已提交
313 314
    }

J
Jim Fehlig 已提交
315 316 317
    virObjectLock(info->priv);
    LIBXL_EV_REG_APPEND(info->priv->timerRegistrations, info);
    virObjectUnlock(info->priv);
318 319
    *hndp = info;

J
Jim Fehlig 已提交
320 321 322
    return 0;
}

J
Jim Fehlig 已提交
323 324 325 326 327 328 329 330 331 332
/*
 * Note:  There are two changes wrt timeouts starting with xen-unstable
 * changeset 26469:
 *
 * 1. Timeout modify callbacks will only be invoked with an abs_t of {0,0},
 * i.e. make the timeout fire immediately.  Prior to this commit, timeout
 * modify callbacks were never invoked.
 *
 * 2. Timeout deregister hooks will no longer be called.
 */
333 334 335
static int
libxlTimeoutModifyEventHook(void *priv ATTRIBUTE_UNUSED,
                            void **hndp,
J
Jim Fehlig 已提交
336
                            struct timeval abs_t ATTRIBUTE_UNUSED)
J
Jim Fehlig 已提交
337
{
338
    libxlEventHookInfoPtr info = *hndp;
J
Jim Fehlig 已提交
339

340
    virObjectLock(info->priv);
J
Jim Fehlig 已提交
341
    /* Make the timeout fire */
342 343 344
    virEventUpdateTimeout(info->id, 0);
    virObjectUnlock(info->priv);

J
Jim Fehlig 已提交
345 346 347
    return 0;
}

348 349 350
static void
libxlTimeoutDeregisterEventHook(void *priv ATTRIBUTE_UNUSED,
                                void *hnd)
J
Jim Fehlig 已提交
351
{
352 353
    libxlEventHookInfoPtr info = hnd;
    libxlDomainObjPrivatePtr p = info->priv;
J
Jim Fehlig 已提交
354

355
    virObjectLock(p);
J
Jim Fehlig 已提交
356 357 358 359 360 361
    /*
     * Only remove the timeout from the list if removal from the
     * event loop is successful.
     */
    if (virEventRemoveTimeout(info->id) == 0)
        LIBXL_EV_REG_REMOVE(p->timerRegistrations, info);
362
    virObjectUnlock(p);
J
Jim Fehlig 已提交
363 364
}

J
Jim Fehlig 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
static void
libxlRegisteredTimeoutsCleanup(libxlDomainObjPrivatePtr priv)
{
    libxlEventHookInfoPtr info;

    virObjectLock(priv);
    info = priv->timerRegistrations;
    while (info) {
        /*
         * libxl expects the event to be deregistered when calling
         * libxl_osevent_occurred_timeout, but we dont want the event info
         * destroyed.  Disable the timeout and only remove it after returning
         * from libxl.
         */
        virEventUpdateTimeout(info->id, -1);
        libxl_osevent_occurred_timeout(priv->ctx, info->xl_priv);
        virEventRemoveTimeout(info->id);
        info = info->next;
    }
    priv->timerRegistrations = NULL;
    virObjectUnlock(priv);
}

J
Jim Fehlig 已提交
388 389 390 391 392 393 394 395 396
static const libxl_osevent_hooks libxl_event_callbacks = {
    .fd_register = libxlFDRegisterEventHook,
    .fd_modify = libxlFDModifyEventHook,
    .fd_deregister = libxlFDDeregisterEventHook,
    .timeout_register = libxlTimeoutRegisterEventHook,
    .timeout_modify = libxlTimeoutModifyEventHook,
    .timeout_deregister = libxlTimeoutDeregisterEventHook,
};

J
Jim Fehlig 已提交
397 398 399 400 401
static void *
libxlDomainObjPrivateAlloc(void)
{
    libxlDomainObjPrivatePtr priv;

402 403 404 405
    if (libxlDomainObjPrivateInitialize() < 0)
        return NULL;

    if (!(priv = virObjectLockableNew(libxlDomainObjPrivateClass)))
J
Jim Fehlig 已提交
406 407
        return NULL;

408 409
    if (libxl_ctx_alloc(&priv->ctx, LIBXL_VERSION, 0, libxl_driver->logger)) {
        VIR_ERROR(_("Failed libxl context initialization"));
410
        virObjectUnref(priv);
411 412 413
        return NULL;
    }

J
Jim Fehlig 已提交
414
    libxl_osevent_register_hooks(priv->ctx, &libxl_event_callbacks, priv);
J
Jim Fehlig 已提交
415 416 417 418 419 420 421 422 423

    return priv;
}

static void
libxlDomainObjPrivateFree(void *data)
{
    libxlDomainObjPrivatePtr priv = data;

424
    if (priv->deathW)
J
Jim Fehlig 已提交
425
        libxl_evdisable_domain_death(priv->ctx, priv->deathW);
J
Jim Fehlig 已提交
426

J
Jim Fehlig 已提交
427
    libxl_ctx_free(priv->ctx);
428
    virObjectUnref(priv);
J
Jim Fehlig 已提交
429 430
}

431 432 433 434 435
virDomainXMLPrivateDataCallbacks libxlDomainXMLPrivateDataCallbacks = {
    .alloc = libxlDomainObjPrivateAlloc,
    .free = libxlDomainObjPrivateFree,
};

436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452

static int
libxlDomainDeviceDefPostParse(virDomainDeviceDefPtr dev,
                              virDomainDefPtr def,
                              virCapsPtr caps ATTRIBUTE_UNUSED,
                              void *opaque ATTRIBUTE_UNUSED)
{
    if (dev->type == VIR_DOMAIN_DEVICE_CHR &&
        dev->data.chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE &&
        dev->data.chr->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_NONE &&
        STRNEQ(def->os.type, "hvm"))
        dev->data.chr->targetType = VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_XEN;

    return 0;
}


453 454
virDomainDefParserConfig libxlDomainDefParserConfig = {
    .macPrefix = { 0x00, 0x16, 0x3e },
455
    .devicesPostParseCallback = libxlDomainDeviceDefPostParse,
456 457
};

458

459 460 461 462
/* driver must be locked before calling */
static void
libxlDomainEventQueue(libxlDriverPrivatePtr driver, virDomainEventPtr event)
{
463
    virDomainEventStateQueue(driver->domainEventState, event);
464 465
}

466 467
static int
libxlAutostartDomain(virDomainObjPtr vm,
468 469 470 471
                     void *opaque)
{
    libxlDriverPrivatePtr driver = opaque;
    virErrorPtr err;
472
    int ret = -1;
473

474
    virObjectLock(vm);
475 476 477
    virResetLastError();

    if (vm->autostart && !virDomainObjIsActive(vm) &&
478
        libxlVmStart(driver, vm, false, -1) < 0) {
479 480 481 482
        err = virGetLastError();
        VIR_ERROR(_("Failed to autostart VM '%s': %s"),
                  vm->def->name,
                  err ? err->message : _("unknown error"));
483
        goto cleanup;
484 485
    }

486 487
    ret = 0;
cleanup:
488
    virObjectUnlock(vm);
489
    return ret;
490 491
}

492 493 494 495 496
static int
libxlDoNodeGetInfo(libxlDriverPrivatePtr driver, virNodeInfoPtr info)
{
    libxl_physinfo phy_info;
    const libxl_version_info* ver_info;
497
    virArch hostarch = virArchFromHost();
498

J
Jim Fehlig 已提交
499
    if (libxl_get_physinfo(driver->ctx, &phy_info)) {
500 501
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("libxl_get_physinfo_info failed"));
502 503 504
        return -1;
    }

J
Jim Fehlig 已提交
505
    if ((ver_info = libxl_get_version_info(driver->ctx)) == NULL) {
506 507
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("libxl_get_version_info failed"));
508 509 510
        return -1;
    }

511
    if (virStrcpyStatic(info->model, virArchToString(hostarch)) == NULL) {
512 513
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("machine type %s too big for destination"),
514
                       virArchToString(hostarch));
515 516 517 518 519 520 521 522 523 524 525 526 527
        return -1;
    }

    info->memory = phy_info.total_pages * (ver_info->pagesize / 1024);
    info->cpus = phy_info.nr_cpus;
    info->nodes = phy_info.nr_nodes;
    info->cores = phy_info.cores_per_socket;
    info->threads = phy_info.threads_per_core;
    info->sockets = 1;
    info->mhz = phy_info.cpu_khz / 1000;
    return 0;
}

528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
static char *
libxlDomainManagedSavePath(libxlDriverPrivatePtr driver, virDomainObjPtr vm) {
    char *ret;

    if (virAsprintf(&ret, "%s/%s.save", driver->saveDir, vm->def->name) < 0) {
        virReportOOMError();
        return NULL;
    }

    return ret;
}

/* This internal function expects the driver lock to already be held on
 * entry. */
static int ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(4)
libxlSaveImageOpen(libxlDriverPrivatePtr driver, const char *from,
                     virDomainDefPtr *ret_def, libxlSavefileHeaderPtr ret_hdr)
{
    int fd;
    virDomainDefPtr def = NULL;
    libxlSavefileHeader hdr;
    char *xml = NULL;

L
Laine Stump 已提交
551
    if ((fd = virFileOpenAs(from, O_RDONLY, 0, -1, -1, 0)) < 0) {
552 553
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("cannot read domain image"));
554 555 556 557
        goto error;
    }

    if (saferead(fd, &hdr, sizeof(hdr)) != sizeof(hdr)) {
558 559
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("failed to read libxl header"));
560 561 562 563
        goto error;
    }

    if (memcmp(hdr.magic, LIBXL_SAVE_MAGIC, sizeof(hdr.magic))) {
564
        virReportError(VIR_ERR_INVALID_ARG, "%s", _("image magic is incorrect"));
565 566 567 568
        goto error;
    }

    if (hdr.version > LIBXL_SAVE_VERSION) {
569 570 571
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("image version is not supported (%d > %d)"),
                       hdr.version, LIBXL_SAVE_VERSION);
572 573 574 575
        goto error;
    }

    if (hdr.xmlLen <= 0) {
576 577
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("invalid XML length: %d"), hdr.xmlLen);
578 579 580 581 582 583 584 585 586
        goto error;
    }

    if (VIR_ALLOC_N(xml, hdr.xmlLen) < 0) {
        virReportOOMError();
        goto error;
    }

    if (saferead(fd, xml, hdr.xmlLen) != hdr.xmlLen) {
587
        virReportError(VIR_ERR_OPERATION_FAILED, "%s", _("failed to read XML"));
588 589 590
        goto error;
    }

591 592
    if (!(def = virDomainDefParseString(xml, driver->caps, driver->xmlopt,
                                        1 << VIR_DOMAIN_VIRT_XEN,
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
                                        VIR_DOMAIN_XML_INACTIVE)))
        goto error;

    VIR_FREE(xml);

    *ret_def = def;
    *ret_hdr = hdr;

    return fd;

error:
    VIR_FREE(xml);
    virDomainDefFree(def);
    VIR_FORCE_CLOSE(fd);
    return -1;
}

J
Jim Fehlig 已提交
610 611 612 613 614 615
/*
 * Cleanup function for domain that has reached shutoff state.
 *
 * virDomainObjPtr should be locked on invocation
 */
static void
J
Jiri Denemark 已提交
616 617 618
libxlVmCleanup(libxlDriverPrivatePtr driver,
               virDomainObjPtr vm,
               virDomainShutoffReason reason)
J
Jim Fehlig 已提交
619 620 621 622
{
    libxlDomainObjPrivatePtr priv = vm->privateData;
    int vnc_port;
    char *file;
623
    int i;
J
Jim Fehlig 已提交
624

J
Jim Fehlig 已提交
625 626 627
    if (priv->deathW) {
        libxl_evdisable_domain_death(priv->ctx, priv->deathW);
        priv->deathW = NULL;
J
Jim Fehlig 已提交
628 629 630 631
    }

    if (vm->persistent) {
        vm->def->id = -1;
J
Jiri Denemark 已提交
632
        virDomainObjSetState(vm, VIR_DOMAIN_SHUTOFF, reason);
J
Jim Fehlig 已提交
633 634
    }

635 636 637 638
    driver->nactive--;
    if (!driver->nactive && driver->inhibitCallback)
        driver->inhibitCallback(false, driver->inhibitOpaque);

J
Jim Fehlig 已提交
639 640 641 642 643
    if ((vm->def->ngraphics == 1) &&
        vm->def->graphics[0]->type == VIR_DOMAIN_GRAPHICS_TYPE_VNC &&
        vm->def->graphics[0]->data.vnc.autoport) {
        vnc_port = vm->def->graphics[0]->data.vnc.port;
        if (vnc_port >= LIBXL_VNC_PORT_MIN) {
644 645
            if (virPortAllocatorRelease(driver->reservedVNCPorts,
                                        vnc_port) < 0)
J
Jim Fehlig 已提交
646 647 648 649
                VIR_DEBUG("Could not mark port %d as unused", vnc_port);
        }
    }

650 651 652 653 654 655 656 657 658 659
    /* Remove any cputune settings */
    if (vm->def->cputune.nvcpupin) {
        for (i = 0; i < vm->def->cputune.nvcpupin; ++i) {
            VIR_FREE(vm->def->cputune.vcpupin[i]->cpumask);
            VIR_FREE(vm->def->cputune.vcpupin[i]);
        }
        VIR_FREE(vm->def->cputune.vcpupin);
        vm->def->cputune.nvcpupin = 0;
    }

J
Jim Fehlig 已提交
660 661 662 663 664
    if (virAsprintf(&file, "%s/%s.xml", driver->stateDir, vm->def->name) > 0) {
        if (unlink(file) < 0 && errno != ENOENT && errno != ENOTDIR)
            VIR_DEBUG("Failed to remove domain XML for %s", vm->def->name);
        VIR_FREE(file);
    }
665 666 667 668 669 670 671

    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }
J
Jim Fehlig 已提交
672 673

    libxlRegisteredTimeoutsCleanup(priv);
J
Jim Fehlig 已提交
674 675 676 677 678 679 680 681
}

/*
 * Reap a domain from libxenlight.
 *
 * virDomainObjPtr should be locked on invocation
 */
static int
J
Jiri Denemark 已提交
682 683 684
libxlVmReap(libxlDriverPrivatePtr driver,
            virDomainObjPtr vm,
            virDomainShutoffReason reason)
J
Jim Fehlig 已提交
685 686 687
{
    libxlDomainObjPrivatePtr priv = vm->privateData;

J
Jim Fehlig 已提交
688
    if (libxl_domain_destroy(priv->ctx, vm->def->id, NULL) < 0) {
689 690
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unable to cleanup domain %d"), vm->def->id);
J
Jim Fehlig 已提交
691 692 693
        return -1;
    }

J
Jiri Denemark 已提交
694
    libxlVmCleanup(driver, vm, reason);
J
Jim Fehlig 已提交
695 696 697 698 699 700
    return 0;
}

/*
 * Handle previously registered event notification from libxenlight
 */
701
static void
702
libxlEventHandler(void *data ATTRIBUTE_UNUSED, const libxl_event *event)
J
Jim Fehlig 已提交
703 704
{
    libxlDriverPrivatePtr driver = libxl_driver;
705
    virDomainObjPtr vm = NULL;
706
    virDomainEventPtr dom_event = NULL;
707
    libxl_shutdown_reason xl_reason = event->u.domain_shutdown.shutdown_reason;
J
Jim Fehlig 已提交
708

J
Jim Fehlig 已提交
709
    if (event->type == LIBXL_EVENT_TYPE_DOMAIN_SHUTDOWN) {
J
Jiri Denemark 已提交
710 711
        virDomainShutoffReason reason;

712 713 714 715 716 717 718 719
        /*
         * Similar to the xl implementation, ignore SUSPEND.  Any actions needed
         * after calling libxl_domain_suspend() are handled by it's callers.
         */
        if (xl_reason == LIBXL_SHUTDOWN_REASON_SUSPEND)
            goto cleanup;

        libxlDriverLock(driver);
720
        vm = virDomainObjListFindByID(driver->domains, event->domid);
721 722 723
        libxlDriverUnlock(driver);

        if (!vm)
J
Jim Fehlig 已提交
724 725
            goto cleanup;

726
        switch (xl_reason) {
J
Jim Fehlig 已提交
727 728
            case LIBXL_SHUTDOWN_REASON_POWEROFF:
            case LIBXL_SHUTDOWN_REASON_CRASH:
729
                if (xl_reason == LIBXL_SHUTDOWN_REASON_CRASH) {
730 731 732
                    dom_event = virDomainEventNewFromObj(vm,
                                              VIR_DOMAIN_EVENT_STOPPED,
                                              VIR_DOMAIN_EVENT_STOPPED_CRASHED);
J
Jiri Denemark 已提交
733 734 735 736
                    reason = VIR_DOMAIN_SHUTOFF_CRASHED;
                } else {
                    reason = VIR_DOMAIN_SHUTOFF_SHUTDOWN;
                }
J
Jim Fehlig 已提交
737
                libxlVmReap(driver, vm, reason);
J
Jim Fehlig 已提交
738
                if (!vm->persistent) {
739
                    virDomainObjListRemove(driver->domains, vm);
J
Jim Fehlig 已提交
740 741 742
                    vm = NULL;
                }
                break;
J
Jim Fehlig 已提交
743 744
            case LIBXL_SHUTDOWN_REASON_REBOOT:
                libxlVmReap(driver, vm, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
745
                libxlVmStart(driver, vm, 0, -1);
J
Jim Fehlig 已提交
746 747
                break;
            default:
748
                VIR_INFO("Unhandled shutdown_reason %d", xl_reason);
J
Jim Fehlig 已提交
749 750 751 752 753 754
                break;
        }
    }

cleanup:
    if (vm)
755
        virObjectUnlock(vm);
756 757 758 759 760
    if (dom_event) {
        libxlDriverLock(driver);
        libxlDomainEventQueue(driver, dom_event);
        libxlDriverUnlock(driver);
    }
J
Jim Fehlig 已提交
761 762
}

J
Jim Fehlig 已提交
763 764 765 766 767 768
static const struct libxl_event_hooks ev_hooks = {
    .event_occurs_mask = LIBXL_EVENTMASK_ALL,
    .event_occurs = libxlEventHandler,
    .disaster = NULL,
};

J
Jim Fehlig 已提交
769 770 771 772 773 774 775 776 777
/*
 * Register domain events with libxenlight and insert event handles
 * in libvirt's event loop.
 */
static int
libxlCreateDomEvents(virDomainObjPtr vm)
{
    libxlDomainObjPrivatePtr priv = vm->privateData;

J
Jim Fehlig 已提交
778
    libxl_event_register_callbacks(priv->ctx, &ev_hooks, vm);
J
Jim Fehlig 已提交
779

J
Jim Fehlig 已提交
780
    if (libxl_evenable_domain_death(priv->ctx, vm->def->id, 0, &priv->deathW))
J
Jim Fehlig 已提交
781 782 783 784 785
        goto error;

    return 0;

error:
786
    if (priv->deathW) {
J
Jim Fehlig 已提交
787
        libxl_evdisable_domain_death(priv->ctx, priv->deathW);
788 789
        priv->deathW = NULL;
    }
J
Jim Fehlig 已提交
790 791 792
    return -1;
}

793
static int
794
libxlDomainSetVcpuAffinities(libxlDriverPrivatePtr driver, virDomainObjPtr vm)
795 796 797
{
    libxlDomainObjPrivatePtr priv = vm->privateData;
    virDomainDefPtr def = vm->def;
J
Jim Fehlig 已提交
798
    libxl_bitmap map;
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
    uint8_t *cpumask = NULL;
    uint8_t *cpumap = NULL;
    virNodeInfo nodeinfo;
    size_t cpumaplen;
    int vcpu, i;
    int ret = -1;

    if (libxlDoNodeGetInfo(driver, &nodeinfo) < 0)
        goto cleanup;

    cpumaplen = VIR_CPU_MAPLEN(VIR_NODEINFO_MAXCPUS(nodeinfo));

    for (vcpu = 0; vcpu < def->cputune.nvcpupin; ++vcpu) {
        if (vcpu != def->cputune.vcpupin[vcpu]->vcpuid)
            continue;

        if (VIR_ALLOC_N(cpumap, cpumaplen) < 0) {
            virReportOOMError();
            goto cleanup;
        }

        cpumask = (uint8_t*) def->cputune.vcpupin[vcpu]->cpumask;

        for (i = 0; i < VIR_DOMAIN_CPUMASK_LEN; ++i) {
823 824
            if (cpumask[i])
                VIR_USE_CPU(cpumap, i);
825 826 827 828 829
        }

        map.size = cpumaplen;
        map.map = cpumap;

J
Jim Fehlig 已提交
830
        if (libxl_set_vcpuaffinity(priv->ctx, def->id, vcpu, &map) != 0) {
831 832
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to pin vcpu '%d' with libxenlight"), vcpu);
833 834 835 836 837 838 839 840 841 842 843 844 845
            goto cleanup;
        }

        VIR_FREE(cpumap);
    }

    ret = 0;

cleanup:
    VIR_FREE(cpumap);
    return ret;
}

M
Markus Groß 已提交
846 847 848 849 850 851 852 853 854 855
static int
libxlFreeMem(libxlDomainObjPrivatePtr priv, libxl_domain_config *d_config)
{
    uint32_t needed_mem;
    uint32_t free_mem;
    int i;
    int ret = -1;
    int tries = 3;
    int wait_secs = 10;

J
Jim Fehlig 已提交
856
    if ((ret = libxl_domain_need_memory(priv->ctx, &d_config->b_info,
M
Markus Groß 已提交
857 858
                                        &needed_mem)) >= 0) {
        for (i = 0; i < tries; ++i) {
J
Jim Fehlig 已提交
859
            if ((ret = libxl_get_free_memory(priv->ctx, &free_mem)) < 0)
M
Markus Groß 已提交
860 861 862 863 864 865 866
                break;

            if (free_mem >= needed_mem) {
                ret = 0;
                break;
            }

J
Jim Fehlig 已提交
867
            if ((ret = libxl_set_memory_target(priv->ctx, 0,
M
Markus Groß 已提交
868 869 870 871
                                               free_mem - needed_mem,
                                               /* relative */ 1, 0)) < 0)
                break;

J
Jim Fehlig 已提交
872
            ret = libxl_wait_for_free_memory(priv->ctx, 0, needed_mem,
M
Markus Groß 已提交
873 874 875 876
                                             wait_secs);
            if (ret == 0 || ret != ERROR_NOMEM)
                break;

J
Jim Fehlig 已提交
877
            if ((ret = libxl_wait_for_memory_target(priv->ctx, 0, 1)) < 0)
M
Markus Groß 已提交
878 879 880 881 882 883 884
                break;
        }
    }

    return ret;
}

J
Jim Fehlig 已提交
885 886 887 888 889 890
/*
 * Start a domain through libxenlight.
 *
 * virDomainObjPtr should be locked on invocation
 */
static int
891 892
libxlVmStart(libxlDriverPrivatePtr driver, virDomainObjPtr vm,
             bool start_paused, int restore_fd)
J
Jim Fehlig 已提交
893 894
{
    libxl_domain_config d_config;
895
    virDomainDefPtr def = NULL;
896
    virDomainEventPtr event = NULL;
897
    libxlSavefileHeader hdr;
J
Jim Fehlig 已提交
898 899 900
    int ret;
    uint32_t domid = 0;
    char *dom_xml = NULL;
901 902
    char *managed_save_path = NULL;
    int managed_save_fd = -1;
J
Jim Fehlig 已提交
903 904
    libxlDomainObjPrivatePtr priv = vm->privateData;

905 906 907
    /* If there is a managed saved state restore it instead of starting
     * from scratch. The old state is removed once the restoring succeeded. */
    if (restore_fd < 0) {
908 909
        managed_save_path = libxlDomainManagedSavePath(driver, vm);
        if (managed_save_path == NULL)
910 911
            goto error;

912
        if (virFileExists(managed_save_path)) {
913

914 915 916
            managed_save_fd = libxlSaveImageOpen(driver, managed_save_path,
                                                 &def, &hdr);
            if (managed_save_fd < 0)
917 918
                goto error;

919 920
            restore_fd = managed_save_fd;

921 922 923 924 925 926
            if (STRNEQ(vm->def->name, def->name) ||
                memcmp(vm->def->uuid, def->uuid, VIR_UUID_BUFLEN)) {
                char vm_uuidstr[VIR_UUID_STRING_BUFLEN];
                char def_uuidstr[VIR_UUID_STRING_BUFLEN];
                virUUIDFormat(vm->def->uuid, vm_uuidstr);
                virUUIDFormat(def->uuid, def_uuidstr);
927 928 929 930
                virReportError(VIR_ERR_OPERATION_FAILED,
                               _("cannot restore domain '%s' uuid %s from a file"
                                 " which belongs to domain '%s' uuid %s"),
                               vm->def->name, vm_uuidstr, def->name, def_uuidstr);
931 932 933
                goto error;
            }

934
            virDomainObjAssignDef(vm, def, true, NULL);
935 936
            def = NULL;

937 938 939 940
            if (unlink(managed_save_path) < 0) {
                VIR_WARN("Failed to remove the managed state %s",
                         managed_save_path);
            }
941
            vm->hasManagedSave = false;
942
        }
943
        VIR_FREE(managed_save_path);
944 945
    }

J
Jim Fehlig 已提交
946
    libxl_domain_config_init(&d_config);
J
Jim Fehlig 已提交
947

948
    if (libxlBuildDomainConfig(driver, vm->def, &d_config) < 0)
949
        goto error;
J
Jim Fehlig 已提交
950

M
Markus Groß 已提交
951
    if (libxlFreeMem(priv, &d_config) < 0) {
952 953 954
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("libxenlight failed to get free memory for domain '%s'"),
                       d_config.c_info.name);
M
Markus Groß 已提交
955 956
        goto error;
    }
J
Jim Fehlig 已提交
957

J
Jim Fehlig 已提交
958 959
    /* use as synchronous operations => ao_how = NULL and no intermediate reports => ao_progress = NULL */

960
    if (restore_fd < 0)
J
Jim Fehlig 已提交
961 962
        ret = libxl_domain_create_new(priv->ctx, &d_config,
                                      &domid, NULL, NULL);
963
    else
J
Jim Fehlig 已提交
964 965
        ret = libxl_domain_create_restore(priv->ctx, &d_config, &domid,
                                          restore_fd, NULL, NULL);
966

J
Jim Fehlig 已提交
967
    if (ret) {
968
        if (restore_fd < 0)
969 970 971
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("libxenlight failed to create new domain '%s'"),
                           d_config.c_info.name);
972
        else
973 974 975
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("libxenlight failed to restore domain '%s'"),
                           d_config.c_info.name);
J
Jim Fehlig 已提交
976 977 978
        goto error;
    }

979 980
    vm->def->id = domid;
    if ((dom_xml = virDomainDefFormat(vm->def, 0)) == NULL)
J
Jim Fehlig 已提交
981 982
        goto error;

J
Jim Fehlig 已提交
983
    if (libxl_userdata_store(priv->ctx, domid, "libvirt-xml",
J
Jim Fehlig 已提交
984
                             (uint8_t *)dom_xml, strlen(dom_xml) + 1)) {
985 986
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("libxenlight failed to store userdata"));
J
Jim Fehlig 已提交
987 988 989 990 991 992
        goto error;
    }

    if (libxlCreateDomEvents(vm) < 0)
        goto error;

993
    if (libxlDomainSetVcpuAffinities(driver, vm) < 0)
994 995
        goto error;

J
Jim Fehlig 已提交
996
    if (!start_paused) {
J
Jim Fehlig 已提交
997
        libxl_domain_unpause(priv->ctx, domid);
J
Jiri Denemark 已提交
998
        virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, VIR_DOMAIN_RUNNING_BOOTED);
J
Jim Fehlig 已提交
999
    } else {
J
Jiri Denemark 已提交
1000
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
J
Jim Fehlig 已提交
1001 1002
    }

1003

1004
    if (virDomainSaveStatus(driver->xmlopt, driver->stateDir, vm) < 0)
J
Jim Fehlig 已提交
1005 1006
        goto error;

1007 1008 1009 1010
    if (!driver->nactive && driver->inhibitCallback)
        driver->inhibitCallback(true, driver->inhibitOpaque);
    driver->nactive++;

1011
    event = virDomainEventNewFromObj(vm, VIR_DOMAIN_EVENT_STARTED,
1012 1013 1014
                                     restore_fd < 0 ?
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED :
                                         VIR_DOMAIN_EVENT_STARTED_RESTORED);
1015 1016
    if (event)
        libxlDomainEventQueue(driver, event);
1017

J
Jim Fehlig 已提交
1018
    libxl_domain_config_dispose(&d_config);
J
Jim Fehlig 已提交
1019
    VIR_FREE(dom_xml);
1020
    VIR_FORCE_CLOSE(managed_save_fd);
J
Jim Fehlig 已提交
1021 1022 1023 1024
    return 0;

error:
    if (domid > 0) {
J
Jim Fehlig 已提交
1025
        libxl_domain_destroy(priv->ctx, domid, NULL);
1026
        vm->def->id = -1;
J
Jiri Denemark 已提交
1027
        virDomainObjSetState(vm, VIR_DOMAIN_SHUTOFF, VIR_DOMAIN_SHUTOFF_FAILED);
J
Jim Fehlig 已提交
1028
    }
J
Jim Fehlig 已提交
1029
    libxl_domain_config_dispose(&d_config);
J
Jim Fehlig 已提交
1030
    VIR_FREE(dom_xml);
1031
    VIR_FREE(managed_save_path);
1032
    virDomainDefFree(def);
1033
    VIR_FORCE_CLOSE(managed_save_fd);
J
Jim Fehlig 已提交
1034 1035 1036 1037 1038 1039 1040 1041
    return -1;
}


/*
 * Reconnect to running domains that were previously started/created
 * with libxenlight driver.
 */
1042 1043
static int
libxlReconnectDomain(virDomainObjPtr vm,
J
Jim Fehlig 已提交
1044 1045 1046 1047 1048 1049 1050 1051
                     void *opaque)
{
    libxlDriverPrivatePtr driver = opaque;
    int rc;
    libxl_dominfo d_info;
    int len;
    uint8_t *data = NULL;

1052
    virObjectLock(vm);
J
Jim Fehlig 已提交
1053 1054

    /* Does domain still exist? */
J
Jim Fehlig 已提交
1055
    rc = libxl_domain_info(driver->ctx, &d_info, vm->def->id);
J
Jim Fehlig 已提交
1056 1057 1058 1059 1060 1061 1062 1063 1064
    if (rc == ERROR_INVAL) {
        goto out;
    } else if (rc != 0) {
        VIR_DEBUG("libxl_domain_info failed (code %d), ignoring domain %d",
                  rc, vm->def->id);
        goto out;
    }

    /* Is this a domain that was under libvirt control? */
J
Jim Fehlig 已提交
1065
    if (libxl_userdata_retrieve(driver->ctx, vm->def->id,
J
Jim Fehlig 已提交
1066 1067 1068 1069 1070 1071 1072
                                "libvirt-xml", &data, &len)) {
        VIR_DEBUG("libxl_userdata_retrieve failed, ignoring domain %d", vm->def->id);
        goto out;
    }

    /* Update domid in case it changed (e.g. reboot) while we were gone? */
    vm->def->id = d_info.domid;
J
Jiri Denemark 已提交
1073
    virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, VIR_DOMAIN_RUNNING_UNKNOWN);
J
Jim Fehlig 已提交
1074

1075 1076 1077 1078
    if (!driver->nactive && driver->inhibitCallback)
        driver->inhibitCallback(true, driver->inhibitOpaque);
    driver->nactive++;

J
Jim Fehlig 已提交
1079 1080
    /* Recreate domain death et. al. events */
    libxlCreateDomEvents(vm);
1081
    virObjectUnlock(vm);
1082
    return 0;
J
Jim Fehlig 已提交
1083 1084

out:
J
Jiri Denemark 已提交
1085
    libxlVmCleanup(driver, vm, VIR_DOMAIN_SHUTOFF_UNKNOWN);
J
Jim Fehlig 已提交
1086
    if (!vm->persistent)
1087
        virDomainObjListRemove(driver->domains, vm);
J
Jim Fehlig 已提交
1088
    else
1089
        virObjectUnlock(vm);
1090 1091

    return -1;
J
Jim Fehlig 已提交
1092 1093 1094 1095 1096
}

static void
libxlReconnectDomains(libxlDriverPrivatePtr driver)
{
1097
    virDomainObjListForEach(driver->domains, libxlReconnectDomain, driver);
J
Jim Fehlig 已提交
1098 1099 1100
}

static int
1101
libxlStateCleanup(void)
J
Jim Fehlig 已提交
1102 1103 1104 1105 1106
{
    if (!libxl_driver)
        return -1;

    libxlDriverLock(libxl_driver);
1107
    virObjectUnref(libxl_driver->caps);
1108
    virObjectUnref(libxl_driver->xmlopt);
1109
    virObjectUnref(libxl_driver->domains);
J
Jim Fehlig 已提交
1110
    libxl_ctx_free(libxl_driver->ctx);
J
Jim Fehlig 已提交
1111 1112 1113 1114
    xtl_logger_destroy(libxl_driver->logger);
    if (libxl_driver->logger_file)
        VIR_FORCE_FCLOSE(libxl_driver->logger_file);

1115
    virObjectUnref(libxl_driver->reservedVNCPorts);
J
Jim Fehlig 已提交
1116 1117 1118 1119 1120 1121 1122 1123

    VIR_FREE(libxl_driver->configDir);
    VIR_FREE(libxl_driver->autostartDir);
    VIR_FREE(libxl_driver->logDir);
    VIR_FREE(libxl_driver->stateDir);
    VIR_FREE(libxl_driver->libDir);
    VIR_FREE(libxl_driver->saveDir);

E
Eric Blake 已提交
1124
    virDomainEventStateFree(libxl_driver->domainEventState);
1125

J
Jim Fehlig 已提交
1126 1127 1128 1129 1130 1131 1132 1133
    libxlDriverUnlock(libxl_driver);
    virMutexDestroy(&libxl_driver->lock);
    VIR_FREE(libxl_driver);

    return 0;
}

static int
1134 1135 1136
libxlStateInitialize(bool privileged,
                     virStateInhibitCallback callback ATTRIBUTE_UNUSED,
                     void *opaque ATTRIBUTE_UNUSED)
1137
{
J
Jim Fehlig 已提交
1138 1139 1140
    const libxl_version_info *ver_info;
    char *log_file = NULL;
    virCommandPtr cmd;
D
Daniel Veillard 已提交
1141
    int status, ret = 0;
1142
    char ebuf[1024];
J
Jim Fehlig 已提交
1143 1144 1145

    /* Disable libxl driver if non-root */
    if (!privileged) {
1146
        VIR_INFO("Not running privileged, disabling libxenlight driver");
J
Jim Fehlig 已提交
1147 1148 1149 1150 1151 1152
        return 0;
    }

    /* Disable driver if legacy xen toolstack (xend) is in use */
    cmd = virCommandNewArgList("/usr/sbin/xend", "status", NULL);
    if (virCommandRun(cmd, &status) == 0 && status == 0) {
1153
        VIR_INFO("Legacy xen tool stack seems to be in use, disabling "
J
Jim Fehlig 已提交
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
                  "libxenlight driver.");
        virCommandFree(cmd);
        return 0;
    }
    virCommandFree(cmd);

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

    if (virMutexInit(&libxl_driver->lock) < 0) {
1164
        VIR_ERROR(_("cannot initialize mutex"));
J
Jim Fehlig 已提交
1165 1166 1167 1168 1169 1170
        VIR_FREE(libxl_driver);
        return -1;
    }
    libxlDriverLock(libxl_driver);

    /* Allocate bitmap for vnc port reservation */
1171 1172 1173 1174
    if (!(libxl_driver->reservedVNCPorts =
          virPortAllocatorNew(LIBXL_VNC_PORT_MIN,
                              LIBXL_VNC_PORT_MAX)))
        goto error;
J
Jim Fehlig 已提交
1175

1176 1177
    if (!(libxl_driver->domains = virDomainObjListNew()))
        goto error;
J
Jim Fehlig 已提交
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

    if (virAsprintf(&libxl_driver->configDir,
                    "%s", LIBXL_CONFIG_DIR) == -1)
        goto out_of_memory;

    if (virAsprintf(&libxl_driver->autostartDir,
                    "%s", LIBXL_AUTOSTART_DIR) == -1)
        goto out_of_memory;

    if (virAsprintf(&libxl_driver->logDir,
                    "%s", LIBXL_LOG_DIR) == -1)
        goto out_of_memory;

    if (virAsprintf(&libxl_driver->stateDir,
                    "%s", LIBXL_STATE_DIR) == -1)
        goto out_of_memory;

    if (virAsprintf(&libxl_driver->libDir,
                    "%s", LIBXL_LIB_DIR) == -1)
        goto out_of_memory;

    if (virAsprintf(&libxl_driver->saveDir,
                    "%s", LIBXL_SAVE_DIR) == -1)
        goto out_of_memory;

1203
    if (virFileMakePath(libxl_driver->logDir) < 0) {
J
Jim Fehlig 已提交
1204
        VIR_ERROR(_("Failed to create log dir '%s': %s"),
1205
                  libxl_driver->logDir, virStrerror(errno, ebuf, sizeof(ebuf)));
J
Jim Fehlig 已提交
1206 1207
        goto error;
    }
1208
    if (virFileMakePath(libxl_driver->stateDir) < 0) {
J
Jim Fehlig 已提交
1209
        VIR_ERROR(_("Failed to create state dir '%s': %s"),
1210
                  libxl_driver->stateDir, virStrerror(errno, ebuf, sizeof(ebuf)));
J
Jim Fehlig 已提交
1211 1212
        goto error;
    }
1213
    if (virFileMakePath(libxl_driver->libDir) < 0) {
J
Jim Fehlig 已提交
1214
        VIR_ERROR(_("Failed to create lib dir '%s': %s"),
1215
                  libxl_driver->libDir, virStrerror(errno, ebuf, sizeof(ebuf)));
J
Jim Fehlig 已提交
1216 1217
        goto error;
    }
1218
    if (virFileMakePath(libxl_driver->saveDir) < 0) {
J
Jim Fehlig 已提交
1219
        VIR_ERROR(_("Failed to create save dir '%s': %s"),
1220
                  libxl_driver->saveDir, virStrerror(errno, ebuf, sizeof(ebuf)));
J
Jim Fehlig 已提交
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
        goto error;
    }

    if (virAsprintf(&log_file, "%s/libxl.log", libxl_driver->logDir) < 0) {
        goto out_of_memory;
    }

    if ((libxl_driver->logger_file = fopen(log_file, "a")) == NULL)  {
        virReportSystemError(errno,
                             _("failed to create logfile %s"),
                             log_file);
        goto error;
    }
    VIR_FREE(log_file);

1236
    libxl_driver->domainEventState = virDomainEventStateNew();
E
Eric Blake 已提交
1237
    if (!libxl_driver->domainEventState)
1238 1239
        goto error;

J
Jim Fehlig 已提交
1240 1241 1242
    libxl_driver->logger =
            (xentoollog_logger *)xtl_createlogger_stdiostream(libxl_driver->logger_file, XTL_DEBUG,  0);
    if (!libxl_driver->logger) {
1243
        VIR_INFO("cannot create logger for libxenlight, disabling driver");
D
Daniel Veillard 已提交
1244
        goto fail;
J
Jim Fehlig 已提交
1245 1246
    }

J
Jim Fehlig 已提交
1247 1248
    if (libxl_ctx_alloc(&libxl_driver->ctx,
                       LIBXL_VERSION, 0,
J
Jim Fehlig 已提交
1249
                       libxl_driver->logger)) {
1250
        VIR_INFO("cannot initialize libxenlight context, probably not running in a Xen Dom0, disabling driver");
D
Daniel Veillard 已提交
1251
        goto fail;
J
Jim Fehlig 已提交
1252 1253
    }

J
Jim Fehlig 已提交
1254
    if ((ver_info = libxl_get_version_info(libxl_driver->ctx)) == NULL) {
1255
        VIR_INFO("cannot version information from libxenlight, disabling driver");
D
Daniel Veillard 已提交
1256
        goto fail;
J
Jim Fehlig 已提交
1257 1258 1259 1260 1261
    }
    libxl_driver->version = (ver_info->xen_version_major * 1000000) +
            (ver_info->xen_version_minor * 1000);

    if ((libxl_driver->caps =
J
Jim Fehlig 已提交
1262
         libxlMakeCapabilities(libxl_driver->ctx)) == NULL) {
1263
        VIR_ERROR(_("cannot create capabilities for libxenlight"));
J
Jim Fehlig 已提交
1264 1265 1266
        goto error;
    }

1267
    if (!(libxl_driver->xmlopt = virDomainXMLOptionNew(&libxlDomainDefParserConfig,
1268 1269
                                                       &libxlDomainXMLPrivateDataCallbacks,
                                                       NULL)))
1270
        goto error;
J
Jim Fehlig 已提交
1271 1272

    /* Load running domains first. */
1273 1274 1275
    if (virDomainObjListLoadAllConfigs(libxl_driver->domains,
                                       libxl_driver->stateDir,
                                       libxl_driver->autostartDir,
1276 1277 1278 1279
                                       1,
                                       libxl_driver->caps,
                                       libxl_driver->xmlopt,
                                       1 << VIR_DOMAIN_VIRT_XEN,
1280
                                       NULL, NULL) < 0)
J
Jim Fehlig 已提交
1281 1282 1283 1284 1285
        goto error;

    libxlReconnectDomains(libxl_driver);

    /* Then inactive persistent configs */
1286 1287 1288
    if (virDomainObjListLoadAllConfigs(libxl_driver->domains,
                                       libxl_driver->configDir,
                                       libxl_driver->autostartDir,
1289 1290 1291 1292
                                       0,
                                       libxl_driver->caps,
                                       libxl_driver->xmlopt,
                                       1 << VIR_DOMAIN_VIRT_XEN,
1293
                                       NULL, NULL) < 0)
J
Jim Fehlig 已提交
1294 1295
        goto error;

1296 1297
    virDomainObjListForEach(libxl_driver->domains, libxlAutostartDomain,
                            libxl_driver);
J
Jim Fehlig 已提交
1298

1299 1300
    virDomainObjListForEach(libxl_driver->domains, libxlDomainManagedSaveLoad,
                            libxl_driver);
1301

1302
    libxlDriverUnlock(libxl_driver);
J
Jim Fehlig 已提交
1303 1304 1305 1306 1307 1308

    return 0;

out_of_memory:
    virReportOOMError();
error:
D
Daniel Veillard 已提交
1309 1310
    ret = -1;
fail:
J
Jim Fehlig 已提交
1311 1312 1313
    VIR_FREE(log_file);
    if (libxl_driver)
        libxlDriverUnlock(libxl_driver);
1314
    libxlStateCleanup();
D
Daniel Veillard 已提交
1315
    return ret;
J
Jim Fehlig 已提交
1316 1317 1318
}

static int
1319
libxlStateReload(void)
J
Jim Fehlig 已提交
1320 1321 1322 1323 1324
{
    if (!libxl_driver)
        return 0;

    libxlDriverLock(libxl_driver);
1325 1326 1327
    virDomainObjListLoadAllConfigs(libxl_driver->domains,
                                   libxl_driver->configDir,
                                   libxl_driver->autostartDir,
1328 1329 1330 1331
                                   1,
                                   libxl_driver->caps,
                                   libxl_driver->xmlopt,
                                   1 << VIR_DOMAIN_VIRT_XEN,
1332 1333
                                   NULL, libxl_driver);

1334 1335
    virDomainObjListForEach(libxl_driver->domains, libxlAutostartDomain,
                            libxl_driver);
1336 1337

    libxlDriverUnlock(libxl_driver);
J
Jim Fehlig 已提交
1338 1339 1340 1341 1342 1343

    return 0;
}


static virDrvOpenStatus
1344 1345 1346
libxlConnectOpen(virConnectPtr conn,
                 virConnectAuthPtr auth ATTRIBUTE_UNUSED,
                 unsigned int flags)
J
Jim Fehlig 已提交
1347
{
E
Eric Blake 已提交
1348 1349
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

J
Jim Fehlig 已提交
1350 1351 1352 1353
    if (conn->uri == NULL) {
        if (libxl_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;

1354
        if (!(conn->uri = virURIParse("xen:///")))
J
Jim Fehlig 已提交
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
            return VIR_DRV_OPEN_ERROR;
    } else {
        /* Only xen scheme */
        if (conn->uri->scheme == NULL || STRNEQ(conn->uri->scheme, "xen"))
            return VIR_DRV_OPEN_DECLINED;

        /* If server name is given, its for remote driver */
        if (conn->uri->server != NULL)
            return VIR_DRV_OPEN_DECLINED;

        /* Error if xen or libxl scheme specified but driver not started. */
        if (libxl_driver == NULL) {
1367 1368
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("libxenlight state driver is not active"));
J
Jim Fehlig 已提交
1369 1370 1371 1372 1373 1374 1375 1376
            return VIR_DRV_OPEN_ERROR;
        }

        /* /session isn't supported in libxenlight */
        if (conn->uri->path &&
            STRNEQ(conn->uri->path, "") &&
            STRNEQ(conn->uri->path, "/") &&
            STRNEQ(conn->uri->path, "/system")) {
1377 1378 1379
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unexpected Xen URI path '%s', try xen:///"),
                           NULLSTR(conn->uri->path));
J
Jim Fehlig 已提交
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
            return VIR_DRV_OPEN_ERROR;
        }
    }

    conn->privateData = libxl_driver;

    return VIR_DRV_OPEN_SUCCESS;
};

static int
1390
libxlConnectClose(virConnectPtr conn ATTRIBUTE_UNUSED)
J
Jim Fehlig 已提交
1391 1392 1393 1394 1395 1396
{
    conn->privateData = NULL;
    return 0;
}

static const char *
1397
libxlConnectGetType(virConnectPtr conn ATTRIBUTE_UNUSED)
J
Jim Fehlig 已提交
1398 1399 1400 1401 1402
{
    return "xenlight";
}

static int
1403
libxlConnectGetVersion(virConnectPtr conn, unsigned long *version)
J
Jim Fehlig 已提交
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
{
    libxlDriverPrivatePtr driver = conn->privateData;

    libxlDriverLock(driver);
    *version = driver->version;
    libxlDriverUnlock(driver);
    return 0;
}

static int
1414
libxlConnectGetMaxVcpus(virConnectPtr conn, const char *type ATTRIBUTE_UNUSED)
J
Jim Fehlig 已提交
1415 1416 1417 1418
{
    int ret;
    libxlDriverPrivatePtr driver = conn->privateData;

J
Jim Fehlig 已提交
1419
    ret = libxl_get_max_cpus(driver->ctx);
J
Jim Fehlig 已提交
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
    /* libxl_get_max_cpus() will return 0 if there were any failures,
       e.g. xc_physinfo() failing */
    if (ret == 0)
        return -1;

    return ret;
}

static int
libxlNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info)
{
1431
    return libxlDoNodeGetInfo(conn->privateData, info);
J
Jim Fehlig 已提交
1432 1433 1434
}

static char *
1435
libxlConnectGetCapabilities(virConnectPtr conn)
J
Jim Fehlig 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
{
    libxlDriverPrivatePtr driver = conn->privateData;
    char *xml;

    libxlDriverLock(driver);
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
        virReportOOMError();
    libxlDriverUnlock(driver);

    return xml;
}

static int
1449
libxlConnectListDomains(virConnectPtr conn, int *ids, int nids)
J
Jim Fehlig 已提交
1450 1451 1452 1453 1454
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int n;

    libxlDriverLock(driver);
1455
    n = virDomainObjListGetActiveIDs(driver->domains, ids, nids);
J
Jim Fehlig 已提交
1456 1457 1458 1459 1460 1461
    libxlDriverUnlock(driver);

    return n;
}

static int
1462
libxlConnectNumOfDomains(virConnectPtr conn)
J
Jim Fehlig 已提交
1463 1464 1465 1466 1467
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int n;

    libxlDriverLock(driver);
1468
    n = virDomainObjListNumOfDomains(driver->domains, 1);
J
Jim Fehlig 已提交
1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
    libxlDriverUnlock(driver);

    return n;
}

static virDomainPtr
libxlDomainCreateXML(virConnectPtr conn, const char *xml,
                     unsigned int flags)
{
    libxlDriverPrivatePtr driver = conn->privateData;
    virDomainDefPtr def;
    virDomainObjPtr vm = NULL;
    virDomainPtr dom = NULL;

    virCheckFlags(VIR_DOMAIN_START_PAUSED, NULL);

    libxlDriverLock(driver);
1486 1487
    if (!(def = virDomainDefParseString(xml, driver->caps, driver->xmlopt,
                                        1 << VIR_DOMAIN_VIRT_XEN,
J
Jim Fehlig 已提交
1488 1489 1490
                                        VIR_DOMAIN_XML_INACTIVE)))
        goto cleanup;

1491
    if (!(vm = virDomainObjListAdd(driver->domains, def,
1492
                                   driver->xmlopt,
1493 1494
                                   VIR_DOMAIN_OBJ_LIST_ADD_CHECK_LIVE,
                                   NULL)))
J
Jim Fehlig 已提交
1495 1496 1497
        goto cleanup;
    def = NULL;

1498 1499
    if (libxlVmStart(driver, vm, (flags & VIR_DOMAIN_START_PAUSED) != 0,
                     -1) < 0) {
1500
        virDomainObjListRemove(driver->domains, vm);
J
Jim Fehlig 已提交
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
        vm = NULL;
        goto cleanup;
    }

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

cleanup:
    virDomainDefFree(def);
    if (vm)
1512
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
    libxlDriverUnlock(driver);
    return dom;
}

static virDomainPtr
libxlDomainLookupByID(virConnectPtr conn, int id)
{
    libxlDriverPrivatePtr driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;

    libxlDriverLock(driver);
1525
    vm = virDomainObjListFindByID(driver->domains, id);
J
Jim Fehlig 已提交
1526 1527 1528
    libxlDriverUnlock(driver);

    if (!vm) {
1529
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
J
Jim Fehlig 已提交
1530 1531 1532 1533 1534 1535 1536 1537 1538
        goto cleanup;
    }

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

  cleanup:
    if (vm)
1539
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
    return dom;
}

static virDomainPtr
libxlDomainLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
{
    libxlDriverPrivatePtr driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;

    libxlDriverLock(driver);
1551
    vm = virDomainObjListFindByUUID(driver->domains, uuid);
J
Jim Fehlig 已提交
1552 1553 1554
    libxlDriverUnlock(driver);

    if (!vm) {
1555
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
J
Jim Fehlig 已提交
1556 1557 1558 1559 1560 1561 1562 1563 1564
        goto cleanup;
    }

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

  cleanup:
    if (vm)
1565
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
    return dom;
}

static virDomainPtr
libxlDomainLookupByName(virConnectPtr conn, const char *name)
{
    libxlDriverPrivatePtr driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;

    libxlDriverLock(driver);
1577
    vm = virDomainObjListFindByName(driver->domains, name);
J
Jim Fehlig 已提交
1578 1579 1580
    libxlDriverUnlock(driver);

    if (!vm) {
1581
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
J
Jim Fehlig 已提交
1582 1583 1584 1585 1586 1587 1588 1589 1590
        goto cleanup;
    }

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

  cleanup:
    if (vm)
1591
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
1592 1593 1594
    return dom;
}

1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
static int
libxlDomainSuspend(virDomainPtr dom)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    libxlDomainObjPrivatePtr priv;
    virDomainEventPtr event = NULL;
    int ret = -1;

    libxlDriverLock(driver);
1605
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
1606 1607 1608 1609 1610
    libxlDriverUnlock(driver);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
1611 1612
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
1613 1614 1615
        goto cleanup;
    }
    if (!virDomainObjIsActive(vm)) {
1616
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not running"));
1617 1618 1619 1620 1621
        goto cleanup;
    }

    priv = vm->privateData;

J
Jiri Denemark 已提交
1622
    if (virDomainObjGetState(vm, NULL) != VIR_DOMAIN_PAUSED) {
J
Jim Fehlig 已提交
1623
        if (libxl_domain_pause(priv->ctx, dom->id) != 0) {
1624 1625 1626
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to suspend domain '%d' with libxenlight"),
                           dom->id);
1627 1628 1629
            goto cleanup;
        }

J
Jiri Denemark 已提交
1630
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
1631 1632 1633 1634 1635

        event = virDomainEventNewFromObj(vm, VIR_DOMAIN_EVENT_SUSPENDED,
                                         VIR_DOMAIN_EVENT_SUSPENDED_PAUSED);
    }

1636
    if (virDomainSaveStatus(driver->xmlopt, driver->stateDir, vm) < 0)
1637 1638 1639 1640 1641 1642
        goto cleanup;

    ret = 0;

cleanup:
    if (vm)
1643
        virObjectUnlock(vm);
1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662
    if (event) {
        libxlDriverLock(driver);
        libxlDomainEventQueue(driver, event);
        libxlDriverUnlock(driver);
    }
    return ret;
}


static int
libxlDomainResume(virDomainPtr dom)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    libxlDomainObjPrivatePtr priv;
    virDomainEventPtr event = NULL;
    int ret = -1;

    libxlDriverLock(driver);
1663
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
1664 1665 1666 1667 1668
    libxlDriverUnlock(driver);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
1669 1670
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
1671 1672 1673 1674
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
1675
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not running"));
1676 1677 1678 1679 1680
        goto cleanup;
    }

    priv = vm->privateData;

J
Jiri Denemark 已提交
1681
    if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED) {
J
Jim Fehlig 已提交
1682
        if (libxl_domain_unpause(priv->ctx, dom->id) != 0) {
1683 1684 1685
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to resume domain '%d' with libxenlight"),
                           dom->id);
1686 1687 1688
            goto cleanup;
        }

J
Jiri Denemark 已提交
1689 1690
        virDomainObjSetState(vm, VIR_DOMAIN_RUNNING,
                             VIR_DOMAIN_RUNNING_UNPAUSED);
1691 1692 1693 1694 1695

        event = virDomainEventNewFromObj(vm, VIR_DOMAIN_EVENT_RESUMED,
                                         VIR_DOMAIN_EVENT_RESUMED_UNPAUSED);
    }

1696
    if (virDomainSaveStatus(driver->xmlopt, driver->stateDir, vm) < 0)
1697 1698 1699 1700 1701 1702
        goto cleanup;

    ret = 0;

cleanup:
    if (vm)
1703
        virObjectUnlock(vm);
1704 1705 1706 1707 1708 1709 1710 1711
    if (event) {
        libxlDriverLock(driver);
        libxlDomainEventQueue(driver, event);
        libxlDriverUnlock(driver);
    }
    return ret;
}

J
Jim Fehlig 已提交
1712
static int
1713
libxlDomainShutdownFlags(virDomainPtr dom, unsigned int flags)
J
Jim Fehlig 已提交
1714 1715 1716 1717 1718 1719
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
    libxlDomainObjPrivatePtr priv;

1720 1721
    virCheckFlags(0, -1);

J
Jim Fehlig 已提交
1722
    libxlDriverLock(driver);
1723
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
1724 1725 1726
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
1727 1728
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
J
Jim Fehlig 已提交
1729 1730 1731 1732
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
1733 1734
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
J
Jim Fehlig 已提交
1735 1736 1737 1738
        goto cleanup;
    }

    priv = vm->privateData;
J
Jim Fehlig 已提交
1739
    if (libxl_domain_shutdown(priv->ctx, dom->id) != 0) {
1740 1741 1742
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to shutdown domain '%d' with libxenlight"),
                       dom->id);
J
Jim Fehlig 已提交
1743 1744 1745 1746 1747 1748 1749 1750 1751 1752
        goto cleanup;
    }

    /* vm is marked shutoff (or removed from domains list if not persistent)
     * in shutdown event handler.
     */
    ret = 0;

cleanup:
    if (vm)
1753
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
1754 1755 1756 1757
    libxlDriverUnlock(driver);
    return ret;
}

1758 1759 1760 1761 1762 1763 1764
static int
libxlDomainShutdown(virDomainPtr dom)
{
    return libxlDomainShutdownFlags(dom, 0);
}


J
Jim Fehlig 已提交
1765
static int
E
Eric Blake 已提交
1766
libxlDomainReboot(virDomainPtr dom, unsigned int flags)
J
Jim Fehlig 已提交
1767 1768 1769 1770 1771 1772
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
    libxlDomainObjPrivatePtr priv;

E
Eric Blake 已提交
1773 1774
    virCheckFlags(0, -1);

J
Jim Fehlig 已提交
1775
    libxlDriverLock(driver);
1776
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
1777 1778 1779
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
1780 1781
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
J
Jim Fehlig 已提交
1782 1783 1784 1785
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
1786 1787
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
J
Jim Fehlig 已提交
1788 1789 1790 1791
        goto cleanup;
    }

    priv = vm->privateData;
J
Jim Fehlig 已提交
1792
    if (libxl_domain_reboot(priv->ctx, dom->id) != 0) {
1793 1794 1795
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to reboot domain '%d' with libxenlight"),
                       dom->id);
J
Jim Fehlig 已提交
1796 1797 1798 1799 1800 1801
        goto cleanup;
    }
    ret = 0;

cleanup:
    if (vm)
1802
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
1803 1804 1805 1806 1807
    libxlDriverUnlock(driver);
    return ret;
}

static int
1808 1809
libxlDomainDestroyFlags(virDomainPtr dom,
                        unsigned int flags)
J
Jim Fehlig 已提交
1810 1811 1812 1813
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;
1814
    virDomainEventPtr event = NULL;
J
Jim Fehlig 已提交
1815

1816 1817
    virCheckFlags(0, -1);

J
Jim Fehlig 已提交
1818
    libxlDriverLock(driver);
1819
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
1820 1821 1822
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
1823 1824
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
J
Jim Fehlig 已提交
1825 1826 1827 1828
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
1829 1830
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
J
Jim Fehlig 已提交
1831 1832 1833
        goto cleanup;
    }

1834 1835 1836
    event = virDomainEventNewFromObj(vm,VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);

J
Jim Fehlig 已提交
1837
    if (libxlVmReap(driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED) != 0) {
1838 1839
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to destroy domain '%d'"), dom->id);
J
Jim Fehlig 已提交
1840 1841 1842 1843
        goto cleanup;
    }

    if (!vm->persistent) {
1844
        virDomainObjListRemove(driver->domains, vm);
J
Jim Fehlig 已提交
1845 1846 1847 1848 1849 1850 1851
        vm = NULL;
    }

    ret = 0;

cleanup:
    if (vm)
1852
        virObjectUnlock(vm);
1853 1854
    if (event)
        libxlDomainEventQueue(driver, event);
J
Jim Fehlig 已提交
1855 1856 1857 1858
    libxlDriverUnlock(driver);
    return ret;
}

1859 1860 1861 1862 1863 1864
static int
libxlDomainDestroy(virDomainPtr dom)
{
    return libxlDomainDestroyFlags(dom, 0);
}

1865 1866 1867 1868 1869 1870 1871 1872
static char *
libxlDomainGetOSType(virDomainPtr dom)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *type = NULL;

    libxlDriverLock(driver);
1873
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
1874 1875 1876 1877
    libxlDriverUnlock(driver);
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
1878 1879
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
1880 1881 1882 1883 1884 1885 1886 1887
        goto cleanup;
    }

    if (!(type = strdup(vm->def->os.type)))
        virReportOOMError();

cleanup:
    if (vm)
1888
        virObjectUnlock(vm);
1889 1890 1891
    return type;
}

1892
static unsigned long long
1893 1894 1895 1896
libxlDomainGetMaxMemory(virDomainPtr dom)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
1897
    unsigned long long ret = 0;
1898 1899

    libxlDriverLock(driver);
1900
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
1901 1902 1903
    libxlDriverUnlock(driver);

    if (!vm) {
1904
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
1905 1906 1907 1908 1909 1910
        goto cleanup;
    }
    ret = vm->def->mem.max_balloon;

cleanup:
    if (vm)
1911
        virObjectUnlock(vm);
1912 1913 1914 1915
    return ret;
}

static int
1916
libxlDomainSetMemoryFlags(virDomainPtr dom, unsigned long newmem,
1917 1918 1919 1920 1921
                          unsigned int flags)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    libxlDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
1922 1923
    virDomainDefPtr persistentDef = NULL;
    bool isActive;
1924 1925 1926
    int ret = -1;

    virCheckFlags(VIR_DOMAIN_MEM_LIVE |
1927 1928
                  VIR_DOMAIN_MEM_CONFIG |
                  VIR_DOMAIN_MEM_MAXIMUM, -1);
1929 1930

    libxlDriverLock(driver);
1931
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
1932 1933 1934
    libxlDriverUnlock(driver);

    if (!vm) {
1935
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
1936 1937 1938
        goto cleanup;
    }

1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951
    isActive = virDomainObjIsActive(vm);

    if (flags == VIR_DOMAIN_MEM_CURRENT) {
        if (isActive)
            flags = VIR_DOMAIN_MEM_LIVE;
        else
            flags = VIR_DOMAIN_MEM_CONFIG;
    }
    if (flags == VIR_DOMAIN_MEM_MAXIMUM) {
        if (isActive)
            flags = VIR_DOMAIN_MEM_LIVE | VIR_DOMAIN_MEM_MAXIMUM;
        else
            flags = VIR_DOMAIN_MEM_CONFIG | VIR_DOMAIN_MEM_MAXIMUM;
1952 1953
    }

1954
    if (!isActive && (flags & VIR_DOMAIN_MEM_LIVE)) {
1955 1956
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("cannot set memory on an inactive domain"));
1957 1958 1959 1960 1961
        goto cleanup;
    }

    if (flags & VIR_DOMAIN_MEM_CONFIG) {
        if (!vm->persistent) {
1962 1963
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("cannot change persistent config of a transient domain"));
1964 1965
            goto cleanup;
        }
1966
        if (!(persistentDef = virDomainObjGetPersistentDef(driver->caps,
1967
                                                           driver->xmlopt,
1968
                                                           vm)))
1969 1970 1971
            goto cleanup;
    }

1972 1973
    if (flags & VIR_DOMAIN_MEM_MAXIMUM) {
        /* resize the maximum memory */
1974

1975 1976
        if (flags & VIR_DOMAIN_MEM_LIVE) {
            priv = vm->privateData;
J
Jim Fehlig 已提交
1977
            if (libxl_domain_setmaxmem(priv->ctx, dom->id, newmem) < 0) {
1978 1979 1980
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Failed to set maximum memory for domain '%d'"
                                 " with libxenlight"), dom->id);
1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
                goto cleanup;
            }
        }

        if (flags & VIR_DOMAIN_MEM_CONFIG) {
            /* Help clang 2.8 decipher the logic flow.  */
            sa_assert(persistentDef);
            persistentDef->mem.max_balloon = newmem;
            if (persistentDef->mem.cur_balloon > newmem)
                persistentDef->mem.cur_balloon = newmem;
            ret = virDomainSaveConfig(driver->configDir, persistentDef);
1992 1993 1994
            goto cleanup;
        }

1995 1996
    } else {
        /* resize the current memory */
1997

1998
        if (newmem > vm->def->mem.max_balloon) {
1999 2000
            virReportError(VIR_ERR_INVALID_ARG, "%s",
                           _("cannot set memory higher than max memory"));
2001 2002 2003 2004 2005
            goto cleanup;
        }

        if (flags & VIR_DOMAIN_MEM_LIVE) {
            priv = vm->privateData;
J
Jim Fehlig 已提交
2006
            if (libxl_set_memory_target(priv->ctx, dom->id, newmem, 0,
2007
                                        /* force */ 1) < 0) {
2008 2009 2010
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Failed to set memory for domain '%d'"
                                 " with libxenlight"), dom->id);
2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
                goto cleanup;
            }
        }

        if (flags & VIR_DOMAIN_MEM_CONFIG) {
            sa_assert(persistentDef);
            persistentDef->mem.cur_balloon = newmem;
            ret = virDomainSaveConfig(driver->configDir, persistentDef);
            goto cleanup;
        }
2021 2022
    }

2023 2024
    ret = 0;

2025 2026
cleanup:
    if (vm)
2027
        virObjectUnlock(vm);
2028 2029 2030 2031 2032 2033 2034 2035 2036
    return ret;
}

static int
libxlDomainSetMemory(virDomainPtr dom, unsigned long memory)
{
    return libxlDomainSetMemoryFlags(dom, memory, VIR_DOMAIN_MEM_LIVE);
}

2037 2038 2039 2040 2041 2042
static int
libxlDomainSetMaxMemory(virDomainPtr dom, unsigned long memory)
{
    return libxlDomainSetMemoryFlags(dom, memory, VIR_DOMAIN_MEM_MAXIMUM);
}

J
Jim Fehlig 已提交
2043 2044 2045 2046 2047
static int
libxlDomainGetInfo(virDomainPtr dom, virDomainInfoPtr info)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
2048
    libxl_dominfo d_info;
J
Jim Fehlig 已提交
2049 2050 2051
    int ret = -1;

    libxlDriverLock(driver);
2052
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
2053 2054 2055
    libxlDriverUnlock(driver);

    if (!vm) {
2056 2057
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
                       _("no domain with matching uuid"));
J
Jim Fehlig 已提交
2058 2059 2060
        goto cleanup;
    }

2061 2062 2063
    if (!virDomainObjIsActive(vm)) {
        info->cpuTime = 0;
        info->memory = vm->def->mem.cur_balloon;
2064
        info->maxMem = vm->def->mem.max_balloon;
2065
    } else {
J
Jim Fehlig 已提交
2066
        if (libxl_domain_info(driver->ctx, &d_info, dom->id) != 0) {
2067 2068
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("libxl_domain_info failed for domain '%d'"), dom->id);
2069 2070 2071 2072
            goto cleanup;
        }
        info->cpuTime = d_info.cpu_time;
        info->memory = d_info.current_memkb;
2073
        info->maxMem = d_info.max_memkb;
2074 2075
    }

J
Jiri Denemark 已提交
2076
    info->state = virDomainObjGetState(vm, NULL);
J
Jim Fehlig 已提交
2077 2078 2079 2080 2081
    info->nrVirtCpu = vm->def->vcpus;
    ret = 0;

  cleanup:
    if (vm)
2082
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
2083 2084 2085
    return ret;
}

2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
static int
libxlDomainGetState(virDomainPtr dom,
                    int *state,
                    int *reason,
                    unsigned int flags)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

    virCheckFlags(0, -1);

    libxlDriverLock(driver);
2099
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2100 2101 2102
    libxlDriverUnlock(driver);

    if (!vm) {
2103 2104
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
                       _("no domain with matching uuid"));
2105 2106 2107
        goto cleanup;
    }

J
Jiri Denemark 已提交
2108
    *state = virDomainObjGetState(vm, reason);
2109 2110 2111 2112
    ret = 0;

  cleanup:
    if (vm)
2113
        virObjectUnlock(vm);
2114 2115 2116
    return ret;
}

2117 2118
/* This internal function expects the driver lock to already be held on
 * entry and the vm must be active. */
2119
static int
2120 2121
libxlDoDomainSave(libxlDriverPrivatePtr driver, virDomainObjPtr vm,
                  const char *to)
2122
{
2123
    libxlDomainObjPrivatePtr priv = vm->privateData;
2124 2125 2126 2127
    libxlSavefileHeader hdr;
    virDomainEventPtr event = NULL;
    char *xml = NULL;
    uint32_t xml_len;
2128
    int fd = -1;
2129 2130 2131
    int ret = -1;

    if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED) {
2132 2133 2134
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("Domain '%d' has to be running because libxenlight will"
                         " suspend it"), vm->def->id);
2135 2136 2137 2138
        goto cleanup;
    }

    if ((fd = virFileOpenAs(to, O_CREAT|O_TRUNC|O_WRONLY, S_IRUSR|S_IWUSR,
L
Laine Stump 已提交
2139
                            -1, -1, 0)) < 0) {
2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154
        virReportSystemError(-fd,
                             _("Failed to create domain save file '%s'"), to);
        goto cleanup;
    }

    if ((xml = virDomainDefFormat(vm->def, 0)) == NULL)
        goto cleanup;
    xml_len = strlen(xml) + 1;

    memset(&hdr, 0, sizeof(hdr));
    memcpy(hdr.magic, LIBXL_SAVE_MAGIC, sizeof(hdr.magic));
    hdr.version = LIBXL_SAVE_VERSION;
    hdr.xmlLen = xml_len;

    if (safewrite(fd, &hdr, sizeof(hdr)) != sizeof(hdr)) {
2155 2156
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("Failed to write save file header"));
2157 2158 2159 2160
        goto cleanup;
    }

    if (safewrite(fd, xml, xml_len) != xml_len) {
2161 2162
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("Failed to write xml description"));
2163 2164 2165
        goto cleanup;
    }

J
Jim Fehlig 已提交
2166
    if (libxl_domain_suspend(priv->ctx, vm->def->id, fd, 0, NULL) != 0) {
2167 2168 2169
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to save domain '%d' with libxenlight"),
                       vm->def->id);
2170 2171 2172 2173 2174 2175
        goto cleanup;
    }

    event = virDomainEventNewFromObj(vm, VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_SAVED);

J
Jim Fehlig 已提交
2176
    if (libxlVmReap(driver, vm, VIR_DOMAIN_SHUTOFF_SAVED) != 0) {
2177 2178
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to destroy domain '%d'"), vm->def->id);
2179 2180 2181
        goto cleanup;
    }

2182
    vm->hasManagedSave = true;
2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194
    ret = 0;

cleanup:
    VIR_FREE(xml);
    if (VIR_CLOSE(fd) < 0)
        virReportSystemError(errno, "%s", _("cannot close file"));
    if (event)
        libxlDomainEventQueue(driver, event);
    return ret;
}

static int
2195 2196
libxlDomainSaveFlags(virDomainPtr dom, const char *to, const char *dxml,
                     unsigned int flags)
2197
{
2198 2199
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
2200 2201
    int ret = -1;

2202 2203
    virCheckFlags(0, -1);
    if (dxml) {
2204 2205
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("xml modification unsupported"));
2206 2207 2208
        return -1;
    }

2209
    libxlDriverLock(driver);
2210
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2211

2212 2213 2214
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2215 2216
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
2217 2218 2219
        goto cleanup;
    }

2220
    if (!virDomainObjIsActive(vm)) {
2221
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not running"));
2222 2223 2224
        goto cleanup;
    }

2225 2226 2227 2228
    if (libxlDoDomainSave(driver, vm, to) < 0)
        goto cleanup;

    if (!vm->persistent) {
2229
        virDomainObjListRemove(driver->domains, vm);
2230 2231 2232 2233
        vm = NULL;
    }

    ret = 0;
2234

2235 2236
cleanup:
    if (vm)
2237
        virObjectUnlock(vm);
2238 2239 2240
    libxlDriverUnlock(driver);
    return ret;
}
2241

2242
static int
2243 2244 2245 2246 2247 2248 2249 2250
libxlDomainSave(virDomainPtr dom, const char *to)
{
    return libxlDomainSaveFlags(dom, to, NULL, 0);
}

static int
libxlDomainRestoreFlags(virConnectPtr conn, const char *from,
                        const char *dxml, unsigned int flags)
2251 2252 2253 2254 2255 2256 2257
{
    libxlDriverPrivatePtr driver = conn->privateData;
    virDomainObjPtr vm = NULL;
    virDomainDefPtr def = NULL;
    libxlSavefileHeader hdr;
    int fd = -1;
    int ret = -1;
2258

2259 2260
    virCheckFlags(0, -1);
    if (dxml) {
2261 2262
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("xml modification unsupported"));
2263 2264 2265
        return -1;
    }

2266
    libxlDriverLock(driver);
2267

2268 2269
    fd = libxlSaveImageOpen(driver, from, &def, &hdr);
    if (fd < 0)
2270 2271
        goto cleanup;

2272
    if (!(vm = virDomainObjListAdd(driver->domains, def,
2273
                                   driver->xmlopt,
2274 2275 2276
                                   VIR_DOMAIN_OBJ_LIST_ADD_LIVE |
                                   VIR_DOMAIN_OBJ_LIST_ADD_CHECK_LIVE,
                                   NULL)))
2277 2278 2279 2280 2281 2282
        goto cleanup;

    def = NULL;

    if ((ret = libxlVmStart(driver, vm, false, fd)) < 0 &&
        !vm->persistent) {
2283
        virDomainObjListRemove(driver->domains, vm);
2284 2285 2286 2287
        vm = NULL;
    }

cleanup:
2288 2289
    if (VIR_CLOSE(fd) < 0)
        virReportSystemError(errno, "%s", _("cannot close file"));
2290 2291
    virDomainDefFree(def);
    if (vm)
2292
        virObjectUnlock(vm);
2293 2294 2295 2296
    libxlDriverUnlock(driver);
    return ret;
}

2297 2298 2299 2300 2301 2302
static int
libxlDomainRestore(virConnectPtr conn, const char *from)
{
    return libxlDomainRestoreFlags(conn, from, NULL, 0);
}

2303
static int
2304
libxlDomainCoreDump(virDomainPtr dom, const char *to, unsigned int flags)
2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    libxlDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
    virDomainEventPtr event = NULL;
    bool paused = false;
    int ret = -1;

    virCheckFlags(VIR_DUMP_LIVE | VIR_DUMP_CRASH, -1);

    libxlDriverLock(driver);
2316
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2317 2318 2319 2320 2321
    libxlDriverUnlock(driver);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2322 2323
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
2324 2325 2326 2327
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2328
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not running"));
2329 2330 2331 2332 2333 2334 2335
        goto cleanup;
    }

    priv = vm->privateData;

    if (!(flags & VIR_DUMP_LIVE) &&
        virDomainObjGetState(vm, NULL) == VIR_DOMAIN_RUNNING) {
J
Jim Fehlig 已提交
2336
        if (libxl_domain_pause(priv->ctx, dom->id) != 0) {
2337 2338 2339 2340
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Before dumping core, failed to suspend domain '%d'"
                             " with libxenlight"),
                           dom->id);
2341 2342 2343 2344 2345 2346
            goto cleanup;
        }
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_DUMP);
        paused = true;
    }

J
Jim Fehlig 已提交
2347
    if (libxl_domain_core_dump(priv->ctx, dom->id, to, NULL) != 0) {
2348 2349 2350
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to dump core of domain '%d' with libxenlight"),
                       dom->id);
2351 2352 2353 2354 2355
        goto cleanup_unpause;
    }

    libxlDriverLock(driver);
    if (flags & VIR_DUMP_CRASH) {
J
Jim Fehlig 已提交
2356
        if (libxlVmReap(driver, vm, VIR_DOMAIN_SHUTOFF_CRASHED) != 0) {
2357 2358
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to destroy domain '%d'"), dom->id);
2359 2360 2361 2362 2363 2364 2365 2366
            goto cleanup_unlock;
        }

        event = virDomainEventNewFromObj(vm, VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_CRASHED);
    }

    if ((flags & VIR_DUMP_CRASH) && !vm->persistent) {
2367
        virDomainObjListRemove(driver->domains, vm);
2368 2369 2370 2371 2372 2373 2374 2375 2376
        vm = NULL;
    }

    ret = 0;

cleanup_unlock:
    libxlDriverUnlock(driver);
cleanup_unpause:
    if (virDomainObjIsActive(vm) && paused) {
J
Jim Fehlig 已提交
2377
        if (libxl_domain_unpause(priv->ctx, dom->id) != 0) {
2378 2379 2380
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("After dumping core, failed to resume domain '%d' with"
                             " libxenlight"), dom->id);
2381 2382 2383 2384 2385 2386 2387
        } else {
            virDomainObjSetState(vm, VIR_DOMAIN_RUNNING,
                                 VIR_DOMAIN_RUNNING_UNPAUSED);
        }
    }
cleanup:
    if (vm)
2388
        virObjectUnlock(vm);
2389 2390 2391 2392 2393 2394 2395 2396
    if (event) {
        libxlDriverLock(driver);
        libxlDomainEventQueue(driver, event);
        libxlDriverUnlock(driver);
    }
    return ret;
}

2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407
static int
libxlDomainManagedSave(virDomainPtr dom, unsigned int flags)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm = NULL;
    char *name = NULL;
    int ret = -1;

    virCheckFlags(0, -1);

    libxlDriverLock(driver);
2408
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2409 2410 2411
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2412 2413
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
2414 2415 2416 2417
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2418
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not running"));
2419 2420
        goto cleanup;
    }
2421
    if (!vm->persistent) {
2422 2423
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("cannot do managed save for transient domain"));
2424 2425
        goto cleanup;
    }
2426 2427 2428 2429 2430 2431 2432

    name = libxlDomainManagedSavePath(driver, vm);
    if (name == NULL)
        goto cleanup;

    VIR_INFO("Saving state to %s", name);

2433 2434 2435 2436
    if (libxlDoDomainSave(driver, vm, name) < 0)
        goto cleanup;

    if (!vm->persistent) {
2437
        virDomainObjListRemove(driver->domains, vm);
2438 2439 2440 2441
        vm = NULL;
    }

    ret = 0;
2442 2443 2444

cleanup:
    if (vm)
2445
        virObjectUnlock(vm);
2446 2447 2448 2449 2450
    libxlDriverUnlock(driver);
    VIR_FREE(name);
    return ret;
}

2451 2452
static int
libxlDomainManagedSaveLoad(virDomainObjPtr vm,
2453 2454 2455 2456
                           void *opaque)
{
    libxlDriverPrivatePtr driver = opaque;
    char *name;
2457
    int ret = -1;
2458

2459
    virObjectLock(vm);
2460 2461 2462 2463 2464 2465

    if (!(name = libxlDomainManagedSavePath(driver, vm)))
        goto cleanup;

    vm->hasManagedSave = virFileExists(name);

2466
    ret = 0;
2467
cleanup:
2468
    virObjectUnlock(vm);
2469
    VIR_FREE(name);
2470
    return ret;
2471 2472
}

2473 2474 2475 2476 2477 2478 2479 2480 2481 2482
static int
libxlDomainHasManagedSaveImage(virDomainPtr dom, unsigned int flags)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm = NULL;
    int ret = -1;

    virCheckFlags(0, -1);

    libxlDriverLock(driver);
2483
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2484 2485 2486
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2487 2488
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
2489 2490 2491
        goto cleanup;
    }

2492
    ret = vm->hasManagedSave;
2493 2494 2495

cleanup:
    if (vm)
2496
        virObjectUnlock(vm);
2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511
    libxlDriverUnlock(driver);
    return ret;
}

static int
libxlDomainManagedSaveRemove(virDomainPtr dom, unsigned int flags)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm = NULL;
    int ret = -1;
    char *name = NULL;

    virCheckFlags(0, -1);

    libxlDriverLock(driver);
2512
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2513 2514 2515
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2516 2517
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
2518 2519 2520 2521 2522 2523 2524 2525
        goto cleanup;
    }

    name = libxlDomainManagedSavePath(driver, vm);
    if (name == NULL)
        goto cleanup;

    ret = unlink(name);
2526
    vm->hasManagedSave = false;
2527 2528 2529 2530

cleanup:
    VIR_FREE(name);
    if (vm)
2531
        virObjectUnlock(vm);
2532 2533 2534 2535
    libxlDriverUnlock(driver);
    return ret;
}

2536 2537 2538 2539 2540 2541 2542 2543
static int
libxlDomainSetVcpusFlags(virDomainPtr dom, unsigned int nvcpus,
                         unsigned int flags)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    libxlDomainObjPrivatePtr priv;
    virDomainDefPtr def;
    virDomainObjPtr vm;
J
Jim Fehlig 已提交
2544
    libxl_bitmap map;
2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559
    uint8_t *bitmask = NULL;
    unsigned int maplen;
    unsigned int i, pos;
    int max;
    int ret = -1;

    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

    /* At least one of LIVE or CONFIG must be set.  MAXIMUM cannot be
     * mixed with LIVE.  */
    if ((flags & (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) == 0 ||
        (flags & (VIR_DOMAIN_VCPU_MAXIMUM | VIR_DOMAIN_VCPU_LIVE)) ==
         (VIR_DOMAIN_VCPU_MAXIMUM | VIR_DOMAIN_VCPU_LIVE)) {
2560 2561
        virReportError(VIR_ERR_INVALID_ARG,
                       _("invalid flag combination: (0x%x)"), flags);
2562 2563 2564 2565
        return -1;
    }

    if (!nvcpus) {
2566
        virReportError(VIR_ERR_INVALID_ARG, "%s", _("nvcpus is zero"));
2567 2568 2569 2570
        return -1;
    }

    libxlDriverLock(driver);
2571
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2572 2573 2574
    libxlDriverUnlock(driver);

    if (!vm) {
2575
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
2576 2577 2578 2579
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm) && (flags & VIR_DOMAIN_VCPU_LIVE)) {
2580 2581
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("cannot set vcpus on an inactive domain"));
2582 2583 2584 2585
        goto cleanup;
    }

    if (!vm->persistent && (flags & VIR_DOMAIN_VCPU_CONFIG)) {
2586 2587
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("cannot change persistent config of a transient domain"));
2588 2589 2590
        goto cleanup;
    }

2591
    if ((max = libxlConnectGetMaxVcpus(dom->conn, NULL)) < 0) {
2592 2593
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("could not determine max vcpus for the domain"));
2594 2595 2596 2597 2598 2599 2600 2601
        goto cleanup;
    }

    if (!(flags & VIR_DOMAIN_VCPU_MAXIMUM) && vm->def->maxvcpus < max) {
        max = vm->def->maxvcpus;
    }

    if (nvcpus > max) {
2602 2603 2604
        virReportError(VIR_ERR_INVALID_ARG,
                       _("requested vcpus is greater than max allowable"
                         " vcpus for the domain: %d > %d"), nvcpus, max);
2605 2606 2607 2608 2609
        goto cleanup;
    }

    priv = vm->privateData;

2610
    if (!(def = virDomainObjGetPersistentDef(driver->caps, driver->xmlopt, vm)))
2611 2612
        goto cleanup;

E
Eric Blake 已提交
2613
    maplen = VIR_CPU_MAPLEN(nvcpus);
2614 2615 2616 2617 2618 2619
    if (VIR_ALLOC_N(bitmask, maplen) < 0) {
        virReportOOMError();
        goto cleanup;
    }

    for (i = 0; i < nvcpus; ++i) {
E
Eric Blake 已提交
2620
        pos = i / 8;
2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638
        bitmask[pos] |= 1 << (i % 8);
    }

    map.size = maplen;
    map.map = bitmask;

    switch (flags) {
    case VIR_DOMAIN_VCPU_MAXIMUM | VIR_DOMAIN_VCPU_CONFIG:
        def->maxvcpus = nvcpus;
        if (nvcpus < def->vcpus)
            def->vcpus = nvcpus;
        break;

    case VIR_DOMAIN_VCPU_CONFIG:
        def->vcpus = nvcpus;
        break;

    case VIR_DOMAIN_VCPU_LIVE:
J
Jim Fehlig 已提交
2639
        if (libxl_set_vcpuonline(priv->ctx, dom->id, &map) != 0) {
2640 2641 2642
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to set vcpus for domain '%d'"
                             " with libxenlight"), dom->id);
2643 2644 2645 2646 2647
            goto cleanup;
        }
        break;

    case VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG:
J
Jim Fehlig 已提交
2648
        if (libxl_set_vcpuonline(priv->ctx, dom->id, &map) != 0) {
2649 2650 2651
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to set vcpus for domain '%d'"
                             " with libxenlight"), dom->id);
2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665
            goto cleanup;
        }
        def->vcpus = nvcpus;
        break;
    }

    ret = 0;

    if (flags & VIR_DOMAIN_VCPU_CONFIG)
        ret = virDomainSaveConfig(driver->configDir, def);

cleanup:
    VIR_FREE(bitmask);
     if (vm)
2666
        virObjectUnlock(vm);
2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682
    return ret;
}

static int
libxlDomainSetVcpus(virDomainPtr dom, unsigned int nvcpus)
{
    return libxlDomainSetVcpusFlags(dom, nvcpus, VIR_DOMAIN_VCPU_LIVE);
}

static int
libxlDomainGetVcpusFlags(virDomainPtr dom, unsigned int flags)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    virDomainDefPtr def;
    int ret = -1;
2683
    bool active;
2684 2685 2686 2687 2688 2689

    virCheckFlags(VIR_DOMAIN_VCPU_LIVE |
                  VIR_DOMAIN_VCPU_CONFIG |
                  VIR_DOMAIN_VCPU_MAXIMUM, -1);

    libxlDriverLock(driver);
2690
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2691 2692 2693
    libxlDriverUnlock(driver);

    if (!vm) {
2694
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
2695 2696 2697
        goto cleanup;
    }

2698 2699 2700 2701 2702 2703 2704 2705 2706
    active = virDomainObjIsActive(vm);

    if ((flags & (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_CONFIG)) == 0) {
        if (active)
            flags |= VIR_DOMAIN_VCPU_LIVE;
        else
            flags |= VIR_DOMAIN_VCPU_CONFIG;
    }
    if ((flags & VIR_DOMAIN_VCPU_LIVE) && (flags & VIR_DOMAIN_VCPU_CONFIG)) {
2707 2708
        virReportError(VIR_ERR_INVALID_ARG,
                       _("invalid flag combination: (0x%x)"), flags);
2709 2710 2711
        return -1;
    }

2712
    if (flags & VIR_DOMAIN_VCPU_LIVE) {
2713
        if (!active) {
2714 2715
            virReportError(VIR_ERR_OPERATION_INVALID,
                           "%s", _("Domain is not running"));
2716 2717 2718 2719
            goto cleanup;
        }
        def = vm->def;
    } else {
2720
        if (!vm->persistent) {
2721 2722
            virReportError(VIR_ERR_OPERATION_INVALID,
                           "%s", _("domain is transient"));
2723 2724
            goto cleanup;
        }
2725 2726 2727 2728 2729 2730 2731
        def = vm->newDef ? vm->newDef : vm->def;
    }

    ret = (flags & VIR_DOMAIN_VCPU_MAXIMUM) ? def->maxvcpus : def->vcpus;

cleanup:
    if (vm)
2732
        virObjectUnlock(vm);
2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743
    return ret;
}

static int
libxlDomainPinVcpu(virDomainPtr dom, unsigned int vcpu, unsigned char *cpumap,
                   int maplen)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    libxlDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
    int ret = -1;
J
Jim Fehlig 已提交
2744
    libxl_bitmap map;
2745 2746

    libxlDriverLock(driver);
2747
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2748 2749 2750
    libxlDriverUnlock(driver);

    if (!vm) {
2751
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
2752 2753 2754 2755
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2756 2757
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("cannot pin vcpus on an inactive domain"));
2758 2759 2760 2761 2762 2763 2764
        goto cleanup;
    }

    priv = vm->privateData;

    map.size = maplen;
    map.map = cpumap;
J
Jim Fehlig 已提交
2765
    if (libxl_set_vcpuaffinity(priv->ctx, dom->id, vcpu, &map) != 0) {
2766 2767
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to pin vcpu '%d' with libxenlight"), vcpu);
2768 2769
        goto cleanup;
    }
2770

H
Hu Tao 已提交
2771 2772 2773 2774 2775 2776 2777
    if (!vm->def->cputune.vcpupin) {
        if (VIR_ALLOC(vm->def->cputune.vcpupin) < 0) {
            virReportOOMError();
            goto cleanup;
        }
        vm->def->cputune.nvcpupin = 0;
    }
2778
    if (virDomainVcpuPinAdd(&vm->def->cputune.vcpupin,
H
Hu Tao 已提交
2779 2780 2781 2782
                            &vm->def->cputune.nvcpupin,
                            cpumap,
                            maplen,
                            vcpu) < 0) {
2783 2784
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("failed to update or add vcpupin xml"));
2785 2786 2787
        goto cleanup;
    }

2788
    if (virDomainSaveStatus(driver->xmlopt, driver->stateDir, vm) < 0)
2789 2790
        goto cleanup;

2791 2792 2793 2794
    ret = 0;

cleanup:
    if (vm)
2795
        virObjectUnlock(vm);
2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813
    return ret;
}


static int
libxlDomainGetVcpus(virDomainPtr dom, virVcpuInfoPtr info, int maxinfo,
                    unsigned char *cpumaps, int maplen)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    libxlDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
    int ret = -1;
    libxl_vcpuinfo *vcpuinfo;
    int maxcpu, hostcpus;
    unsigned int i;
    unsigned char *cpumap;

    libxlDriverLock(driver);
2814
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
2815 2816 2817
    libxlDriverUnlock(driver);

    if (!vm) {
2818
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
2819 2820 2821 2822
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2823
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not running"));
2824 2825 2826 2827
        goto cleanup;
    }

    priv = vm->privateData;
J
Jim Fehlig 已提交
2828
    if ((vcpuinfo = libxl_list_vcpu(priv->ctx, dom->id, &maxcpu,
2829
                                    &hostcpus)) == NULL) {
2830 2831 2832
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to list vcpus for domain '%d' with libxenlight"),
                       dom->id);
2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854
        goto cleanup;
    }

    if (cpumaps && maplen > 0)
        memset(cpumaps, 0, maplen * maxinfo);
    for (i = 0; i < maxcpu && i < maxinfo; ++i) {
        info[i].number = vcpuinfo[i].vcpuid;
        info[i].cpu = vcpuinfo[i].cpu;
        info[i].cpuTime = vcpuinfo[i].vcpu_time;
        if (vcpuinfo[i].running)
            info[i].state = VIR_VCPU_RUNNING;
        else if (vcpuinfo[i].blocked)
            info[i].state = VIR_VCPU_BLOCKED;
        else
            info[i].state = VIR_VCPU_OFFLINE;

        if (cpumaps && maplen > 0) {
            cpumap = VIR_GET_CPUMAP(cpumaps, maplen, i);
            memcpy(cpumap, vcpuinfo[i].cpumap.map,
                   MIN(maplen, vcpuinfo[i].cpumap.size));
        }

J
Jim Fehlig 已提交
2855
        libxl_vcpuinfo_dispose(&vcpuinfo[i]);
2856 2857 2858 2859 2860 2861 2862
    }
    VIR_FREE(vcpuinfo);

    ret = maxinfo;

cleanup:
    if (vm)
2863
        virObjectUnlock(vm);
2864 2865 2866
    return ret;
}

J
Jim Fehlig 已提交
2867
static char *
2868
libxlDomainGetXMLDesc(virDomainPtr dom, unsigned int flags)
J
Jim Fehlig 已提交
2869 2870 2871 2872 2873
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;

2874 2875
    /* Flags checked by virDomainDefFormat */

J
Jim Fehlig 已提交
2876
    libxlDriverLock(driver);
2877
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
2878 2879 2880
    libxlDriverUnlock(driver);

    if (!vm) {
2881 2882
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
                       _("no domain with matching uuid"));
J
Jim Fehlig 已提交
2883 2884 2885 2886 2887 2888 2889
        goto cleanup;
    }

    ret = virDomainDefFormat(vm->def, flags);

  cleanup:
    if (vm)
2890
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
2891 2892 2893
    return ret;
}

2894
static char *
2895 2896 2897
libxlConnectDomainXMLFromNative(virConnectPtr conn, const char * nativeFormat,
                                const char * nativeConfig,
                                unsigned int flags)
2898 2899 2900 2901 2902 2903 2904
{
    libxlDriverPrivatePtr driver = conn->privateData;
    const libxl_version_info *ver_info;
    virDomainDefPtr def = NULL;
    virConfPtr conf = NULL;
    char *xml = NULL;

E
Eric Blake 已提交
2905 2906
    virCheckFlags(0, NULL);

2907
    if (STRNEQ(nativeFormat, LIBXL_CONFIG_FORMAT_XM)) {
2908 2909
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unsupported config type %s"), nativeFormat);
2910 2911 2912
        goto cleanup;
    }

J
Jim Fehlig 已提交
2913
    if ((ver_info = libxl_get_version_info(driver->ctx)) == NULL) {
2914
        VIR_ERROR(_("cannot get version information from libxenlight"));
2915 2916 2917 2918 2919 2920 2921
        goto cleanup;
    }

    if (!(conf = virConfReadMem(nativeConfig, strlen(nativeConfig), 0)))
        goto cleanup;

    if (!(def = xenParseXM(conf, ver_info->xen_version_major, driver->caps))) {
2922
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("parsing xm config failed"));
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936
        goto cleanup;
    }

    xml = virDomainDefFormat(def, VIR_DOMAIN_XML_INACTIVE);

cleanup:
    virDomainDefFree(def);
    if (conf)
        virConfFree(conf);
    return xml;
}

#define MAX_CONFIG_SIZE (1024 * 65)
static char *
2937 2938 2939
libxlConnectDomainXMLToNative(virConnectPtr conn, const char * nativeFormat,
                              const char * domainXml,
                              unsigned int flags)
2940 2941 2942 2943 2944 2945 2946 2947
{
    libxlDriverPrivatePtr driver = conn->privateData;
    const libxl_version_info *ver_info;
    virDomainDefPtr def = NULL;
    virConfPtr conf = NULL;
    int len = MAX_CONFIG_SIZE;
    char *ret = NULL;

E
Eric Blake 已提交
2948 2949
    virCheckFlags(0, NULL);

2950
    if (STRNEQ(nativeFormat, LIBXL_CONFIG_FORMAT_XM)) {
2951 2952
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unsupported config type %s"), nativeFormat);
2953 2954 2955
        goto cleanup;
    }

J
Jim Fehlig 已提交
2956
    if ((ver_info = libxl_get_version_info(driver->ctx)) == NULL) {
2957
        VIR_ERROR(_("cannot get version information from libxenlight"));
2958 2959 2960
        goto cleanup;
    }

2961 2962
    if (!(def = virDomainDefParseString(domainXml,
                                        driver->caps, driver->xmlopt,
M
Matthias Bolte 已提交
2963
                                        1 << VIR_DOMAIN_VIRT_XEN, 0)))
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985
        goto cleanup;

    if (!(conf = xenFormatXM(conn, def, ver_info->xen_version_major)))
        goto cleanup;

    if (VIR_ALLOC_N(ret, len) < 0) {
        virReportOOMError();
        goto cleanup;
    }

    if (virConfWriteMem(ret, &len, conf) < 0) {
        VIR_FREE(ret);
        goto cleanup;
    }

cleanup:
    virDomainDefFree(def);
    if (conf)
        virConfFree(conf);
    return ret;
}

J
Jim Fehlig 已提交
2986
static int
2987 2988
libxlConnectListDefinedDomains(virConnectPtr conn,
                               char **const names, int nnames)
J
Jim Fehlig 已提交
2989 2990 2991 2992 2993
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int n;

    libxlDriverLock(driver);
2994
    n = virDomainObjListGetInactiveNames(driver->domains, names, nnames);
J
Jim Fehlig 已提交
2995 2996 2997 2998 2999
    libxlDriverUnlock(driver);
    return n;
}

static int
3000
libxlConnectNumOfDefinedDomains(virConnectPtr conn)
J
Jim Fehlig 已提交
3001 3002 3003 3004 3005
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int n;

    libxlDriverLock(driver);
3006
    n = virDomainObjListNumOfDomains(driver->domains, 0);
J
Jim Fehlig 已提交
3007 3008 3009 3010 3011 3012 3013
    libxlDriverUnlock(driver);

    return n;
}

static int
libxlDomainCreateWithFlags(virDomainPtr dom,
E
Eric Blake 已提交
3014
                           unsigned int flags)
J
Jim Fehlig 已提交
3015 3016 3017 3018 3019 3020 3021 3022
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

    virCheckFlags(VIR_DOMAIN_START_PAUSED, -1);

    libxlDriverLock(driver);
3023
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
3024 3025 3026
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
3027 3028
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
J
Jim Fehlig 已提交
3029 3030 3031 3032
        goto cleanup;
    }

    if (virDomainObjIsActive(vm)) {
3033 3034
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is already running"));
J
Jim Fehlig 已提交
3035 3036 3037
        goto cleanup;
    }

3038
    ret = libxlVmStart(driver, vm, (flags & VIR_DOMAIN_START_PAUSED) != 0, -1);
J
Jim Fehlig 已提交
3039 3040 3041

cleanup:
    if (vm)
3042
        virObjectUnlock(vm);
J
Jim Fehlig 已提交
3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059
    libxlDriverUnlock(driver);
    return ret;
}

static int
libxlDomainCreate(virDomainPtr dom)
{
    return libxlDomainCreateWithFlags(dom, 0);
}

static virDomainPtr
libxlDomainDefineXML(virConnectPtr conn, const char *xml)
{
    libxlDriverPrivatePtr driver = conn->privateData;
    virDomainDefPtr def = NULL;
    virDomainObjPtr vm = NULL;
    virDomainPtr dom = NULL;
3060
    virDomainEventPtr event = NULL;
3061
    virDomainDefPtr oldDef = NULL;
J
Jim Fehlig 已提交
3062 3063

    libxlDriverLock(driver);
3064
    if (!(def = virDomainDefParseString(xml, driver->caps, driver->xmlopt,
M
Matthias Bolte 已提交
3065
                                        1 << VIR_DOMAIN_VIRT_XEN,
J
Jim Fehlig 已提交
3066 3067 3068
                                        VIR_DOMAIN_XML_INACTIVE)))
        goto cleanup;

3069
    if (!(vm = virDomainObjListAdd(driver->domains, def,
3070
                                   driver->xmlopt,
3071 3072
                                   0,
                                   &oldDef)))
J
Jim Fehlig 已提交
3073 3074 3075 3076 3077 3078
        goto cleanup;
    def = NULL;
    vm->persistent = 1;

    if (virDomainSaveConfig(driver->configDir,
                            vm->newDef ? vm->newDef : vm->def) < 0) {
3079
        virDomainObjListRemove(driver->domains, vm);
J
Jim Fehlig 已提交
3080 3081 3082 3083 3084 3085 3086 3087
        vm = NULL;
        goto cleanup;
    }

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

3088
    event = virDomainEventNewFromObj(vm, VIR_DOMAIN_EVENT_DEFINED,
3089
                                     !oldDef ?
3090 3091 3092
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                     VIR_DOMAIN_EVENT_DEFINED_UPDATED);

J
Jim Fehlig 已提交
3093 3094
cleanup:
    virDomainDefFree(def);
3095
    virDomainDefFree(oldDef);
J
Jim Fehlig 已提交
3096
    if (vm)
3097
        virObjectUnlock(vm);
3098 3099
    if (event)
        libxlDomainEventQueue(driver, event);
J
Jim Fehlig 已提交
3100 3101 3102 3103 3104
    libxlDriverUnlock(driver);
    return dom;
}

static int
3105 3106
libxlDomainUndefineFlags(virDomainPtr dom,
                         unsigned int flags)
J
Jim Fehlig 已提交
3107 3108 3109
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
3110
    virDomainEventPtr event = NULL;
3111
    char *name = NULL;
J
Jim Fehlig 已提交
3112 3113
    int ret = -1;

3114 3115
    virCheckFlags(VIR_DOMAIN_UNDEFINE_MANAGED_SAVE, -1);

J
Jim Fehlig 已提交
3116
    libxlDriverLock(driver);
3117
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
3118 3119 3120 3121 3122

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];

        virUUIDFormat(dom->uuid, uuidstr);
3123 3124
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching uuid '%s'"), uuidstr);
J
Jim Fehlig 已提交
3125 3126 3127 3128
        goto cleanup;
    }

    if (!vm->persistent) {
3129 3130
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("cannot undefine transient domain"));
J
Jim Fehlig 已提交
3131 3132 3133
        goto cleanup;
    }

3134 3135 3136 3137 3138 3139 3140
    name = libxlDomainManagedSavePath(driver, vm);
    if (name == NULL)
        goto cleanup;

    if (virFileExists(name)) {
        if (flags & VIR_DOMAIN_UNDEFINE_MANAGED_SAVE) {
            if (unlink(name) < 0) {
3141 3142
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Failed to remove domain managed save image"));
3143 3144 3145
                goto cleanup;
            }
        } else {
3146 3147 3148
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Refusing to undefine while domain managed "
                             "save image exists"));
3149 3150 3151 3152
            goto cleanup;
        }
    }

J
Jim Fehlig 已提交
3153 3154 3155 3156 3157
    if (virDomainDeleteConfig(driver->configDir,
                              driver->autostartDir,
                              vm) < 0)
        goto cleanup;

3158 3159 3160
    event = virDomainEventNewFromObj(vm, VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

3161 3162 3163
    if (virDomainObjIsActive(vm)) {
        vm->persistent = 0;
    } else {
3164
        virDomainObjListRemove(driver->domains, vm);
3165 3166 3167
        vm = NULL;
    }

J
Jim Fehlig 已提交
3168 3169 3170
    ret = 0;

  cleanup:
3171
    VIR_FREE(name);
J
Jim Fehlig 已提交
3172
    if (vm)
3173
        virObjectUnlock(vm);
3174 3175
    if (event)
        libxlDomainEventQueue(driver, event);
J
Jim Fehlig 已提交
3176 3177 3178 3179
    libxlDriverUnlock(driver);
    return ret;
}

3180 3181 3182 3183 3184 3185
static int
libxlDomainUndefine(virDomainPtr dom)
{
    return libxlDomainUndefineFlags(dom, 0);
}

3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203
static int
libxlDomainChangeEjectableMedia(libxlDomainObjPrivatePtr priv,
                                virDomainObjPtr vm, virDomainDiskDefPtr disk)
{
    virDomainDiskDefPtr origdisk = NULL;
    libxl_device_disk x_disk;
    int i;
    int ret = -1;

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

    if (!origdisk) {
3204 3205 3206
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("No device with bus '%s' and target '%s'"),
                       virDomainDiskBusTypeToString(disk->bus), disk->dst);
3207 3208 3209 3210
        goto cleanup;
    }

    if (origdisk->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
3211 3212 3213
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Removable media not supported for %s device"),
                       virDomainDiskDeviceTypeToString(disk->device));
3214 3215 3216
        return -1;
    }

J
Jim Fehlig 已提交
3217
    if (libxlMakeDisk(disk, &x_disk) < 0)
3218 3219
        goto cleanup;

J
Jim Fehlig 已提交
3220
    if ((ret = libxl_cdrom_insert(priv->ctx, vm->def->id, &x_disk, NULL)) < 0) {
3221 3222 3223
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("libxenlight failed to change media for disk '%s'"),
                       disk->dst);
3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254
        goto cleanup;
    }

    VIR_FREE(origdisk->src);
    origdisk->src = disk->src;
    disk->src = NULL;
    origdisk->type = disk->type;


    virDomainDiskDefFree(disk);

    ret = 0;

cleanup:
    return ret;
}

static int
libxlDomainAttachDeviceDiskLive(libxlDomainObjPrivatePtr priv,
                                virDomainObjPtr vm, virDomainDeviceDefPtr dev)
{
    virDomainDiskDefPtr l_disk = dev->data.disk;
    libxl_device_disk x_disk;
    int ret = -1;

    switch (l_disk->device)  {
        case VIR_DOMAIN_DISK_DEVICE_CDROM:
            ret = libxlDomainChangeEjectableMedia(priv, vm, l_disk);
            break;
        case VIR_DOMAIN_DISK_DEVICE_DISK:
            if (l_disk->bus == VIR_DOMAIN_DISK_BUS_XEN) {
3255
                if (virDomainDiskIndexByName(vm->def, l_disk->dst, true) >= 0) {
3256 3257
                    virReportError(VIR_ERR_OPERATION_FAILED,
                                   _("target %s already exists"), l_disk->dst);
3258 3259 3260 3261
                    goto cleanup;
                }

                if (!l_disk->src) {
3262 3263
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("disk source path is missing"));
3264 3265 3266 3267 3268 3269 3270 3271
                    goto cleanup;
                }

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

J
Jim Fehlig 已提交
3272
                if (libxlMakeDisk(l_disk, &x_disk) < 0)
3273 3274
                    goto cleanup;

J
Jim Fehlig 已提交
3275 3276
                if ((ret = libxl_device_disk_add(priv->ctx, vm->def->id,
                                                &x_disk, NULL)) < 0) {
3277 3278 3279
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("libxenlight failed to attach disk '%s'"),
                                   l_disk->dst);
3280 3281 3282 3283 3284 3285
                    goto cleanup;
                }

                virDomainDiskInsertPreAlloced(vm->def, l_disk);

            } else {
3286 3287 3288
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("disk bus '%s' cannot be hotplugged."),
                               virDomainDiskBusTypeToString(l_disk->bus));
3289 3290 3291
            }
            break;
        default:
3292 3293 3294
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("disk device type '%s' cannot be hotplugged"),
                           virDomainDiskDeviceTypeToString(l_disk->device));
3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315
            break;
    }

cleanup:
    return ret;
}

static int
libxlDomainDetachDeviceDiskLive(libxlDomainObjPrivatePtr priv,
                                virDomainObjPtr vm, virDomainDeviceDefPtr dev)
{
    virDomainDiskDefPtr l_disk = NULL;
    libxl_device_disk x_disk;
    int i;
    int ret = -1;

    switch (dev->data.disk->device)  {
        case VIR_DOMAIN_DISK_DEVICE_DISK:
            if (dev->data.disk->bus == VIR_DOMAIN_DISK_BUS_XEN) {

                if ((i = virDomainDiskIndexByName(vm->def,
3316 3317
                                                  dev->data.disk->dst,
                                                  false)) < 0) {
3318 3319
                    virReportError(VIR_ERR_OPERATION_FAILED,
                                   _("disk %s not found"), dev->data.disk->dst);
3320 3321 3322 3323 3324
                    goto cleanup;
                }

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

J
Jim Fehlig 已提交
3325
                if (libxlMakeDisk(l_disk, &x_disk) < 0)
3326 3327
                    goto cleanup;

J
Jim Fehlig 已提交
3328 3329
                if ((ret = libxl_device_disk_remove(priv->ctx, vm->def->id,
                                                    &x_disk, NULL)) < 0) {
3330 3331 3332
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("libxenlight failed to detach disk '%s'"),
                                   l_disk->dst);
3333 3334 3335 3336 3337 3338 3339
                    goto cleanup;
                }

                virDomainDiskRemove(vm->def, i);
                virDomainDiskDefFree(l_disk);

            } else {
3340 3341 3342
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("disk bus '%s' cannot be hot unplugged."),
                               virDomainDiskBusTypeToString(dev->data.disk->bus));
3343 3344 3345
            }
            break;
        default:
3346 3347 3348
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("device type '%s' cannot hot unplugged"),
                           virDomainDiskDeviceTypeToString(dev->data.disk->device));
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369
            break;
    }

cleanup:
    return ret;
}

static int
libxlDomainAttachDeviceLive(libxlDomainObjPrivatePtr priv, virDomainObjPtr vm,
                            virDomainDeviceDefPtr dev)
{
    int ret = -1;

    switch (dev->type) {
        case VIR_DOMAIN_DEVICE_DISK:
            ret = libxlDomainAttachDeviceDiskLive(priv, vm, dev);
            if (!ret)
                dev->data.disk = NULL;
            break;

        default:
3370 3371 3372
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("device type '%s' cannot be attached"),
                           virDomainDeviceTypeToString(dev->type));
3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386
            break;
    }

    return ret;
}

static int
libxlDomainAttachDeviceConfig(virDomainDefPtr vmdef, virDomainDeviceDefPtr dev)
{
    virDomainDiskDefPtr disk;

    switch (dev->type) {
        case VIR_DOMAIN_DEVICE_DISK:
            disk = dev->data.disk;
3387
            if (virDomainDiskIndexByName(vmdef, disk->dst, true) >= 0) {
3388 3389
                virReportError(VIR_ERR_INVALID_ARG,
                               _("target %s already exists."), disk->dst);
3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400
                return -1;
            }
            if (virDomainDiskInsert(vmdef, disk)) {
                virReportOOMError();
                return -1;
            }
            /* vmdef has the pointer. Generic codes for vmdef will do all jobs */
            dev->data.disk = NULL;
            break;

        default:
3401 3402
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("persistent attach of device is not supported"));
3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419
            return -1;
    }
    return 0;
}

static int
libxlDomainDetachDeviceLive(libxlDomainObjPrivatePtr priv, virDomainObjPtr vm,
                            virDomainDeviceDefPtr dev)
{
    int ret = -1;

    switch (dev->type) {
        case VIR_DOMAIN_DEVICE_DISK:
            ret = libxlDomainDetachDeviceDiskLive(priv, vm, dev);
            break;

        default:
3420 3421 3422
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("device type '%s' cannot be detached"),
                           virDomainDeviceTypeToString(dev->type));
3423 3424 3425 3426 3427 3428 3429 3430 3431
            break;
    }

    return ret;
}

static int
libxlDomainDetachDeviceConfig(virDomainDefPtr vmdef, virDomainDeviceDefPtr dev)
{
3432
    virDomainDiskDefPtr disk, detach;
3433 3434 3435 3436 3437
    int ret = -1;

    switch (dev->type) {
        case VIR_DOMAIN_DEVICE_DISK:
            disk = dev->data.disk;
3438
            if (!(detach = virDomainDiskRemoveByName(vmdef, disk->dst))) {
3439 3440
                virReportError(VIR_ERR_INVALID_ARG,
                               _("no target device %s"), disk->dst);
3441 3442
                break;
            }
3443
            virDomainDiskDefFree(detach);
3444 3445 3446
            ret = 0;
            break;
        default:
3447 3448
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("persistent detach of device is not supported"));
3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471
            break;
    }

    return ret;
}

static int
libxlDomainUpdateDeviceLive(libxlDomainObjPrivatePtr priv,
                            virDomainObjPtr vm, virDomainDeviceDefPtr dev)
{
    virDomainDiskDefPtr disk;
    int ret = -1;

    switch (dev->type) {
        case VIR_DOMAIN_DEVICE_DISK:
            disk = dev->data.disk;
            switch (disk->device) {
                case VIR_DOMAIN_DISK_DEVICE_CDROM:
                    ret = libxlDomainChangeEjectableMedia(priv, vm, disk);
                    if (ret == 0)
                        dev->data.disk = NULL;
                    break;
                default:
3472 3473 3474
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("disk bus '%s' cannot be updated."),
                                   virDomainDiskBusTypeToString(disk->bus));
3475 3476 3477 3478
                    break;
            }
            break;
        default:
3479 3480 3481
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("device type '%s' cannot be updated"),
                           virDomainDeviceTypeToString(dev->type));
3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498
            break;
    }

    return ret;
}

static int
libxlDomainUpdateDeviceConfig(virDomainDefPtr vmdef, virDomainDeviceDefPtr dev)
{
    virDomainDiskDefPtr orig;
    virDomainDiskDefPtr disk;
    int i;
    int ret = -1;

    switch (dev->type) {
        case VIR_DOMAIN_DEVICE_DISK:
            disk = dev->data.disk;
3499
            if ((i = virDomainDiskIndexByName(vmdef, disk->dst, false)) < 0) {
3500 3501
                virReportError(VIR_ERR_INVALID_ARG,
                               _("target %s doesn't exist."), disk->dst);
3502 3503 3504 3505
                goto cleanup;
            }
            orig = vmdef->disks[i];
            if (!(orig->device == VIR_DOMAIN_DISK_DEVICE_CDROM)) {
3506 3507
                virReportError(VIR_ERR_INVALID_ARG, "%s",
                               _("this disk doesn't support update"));
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518
                goto cleanup;
            }

            VIR_FREE(orig->src);
            orig->src = disk->src;
            orig->type = disk->type;
            if (disk->driverName) {
                VIR_FREE(orig->driverName);
                orig->driverName = disk->driverName;
                disk->driverName = NULL;
            }
3519
            orig->format = disk->format;
3520 3521 3522
            disk->src = NULL;
            break;
        default:
3523 3524
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("persistent update of device is not supported"));
3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555
            goto cleanup;
    }

    ret = 0;

cleanup:
    return ret;
}

/* Actions for libxlDomainModifyDeviceFlags */
enum {
    LIBXL_DEVICE_ATTACH,
    LIBXL_DEVICE_DETACH,
    LIBXL_DEVICE_UPDATE,
};

static int
libxlDomainModifyDeviceFlags(virDomainPtr dom, const char *xml,
                             unsigned int flags, int action)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm = NULL;
    virDomainDefPtr vmdef = NULL;
    virDomainDeviceDefPtr dev = NULL;
    libxlDomainObjPrivatePtr priv;
    int ret = -1;

    virCheckFlags(VIR_DOMAIN_DEVICE_MODIFY_LIVE |
                  VIR_DOMAIN_DEVICE_MODIFY_CONFIG, -1);

    libxlDriverLock(driver);
3556
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
3557 3558

    if (!vm) {
3559
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570
        goto cleanup;
    }

    if (virDomainObjIsActive(vm)) {
        if (flags == VIR_DOMAIN_DEVICE_MODIFY_CURRENT)
            flags |= VIR_DOMAIN_DEVICE_MODIFY_LIVE;
    } else {
        if (flags == VIR_DOMAIN_DEVICE_MODIFY_CURRENT)
            flags |= VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
        /* check consistency between flags and the vm state */
        if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
3571 3572
            virReportError(VIR_ERR_OPERATION_INVALID,
                           "%s", _("Domain is not running"));
3573 3574 3575 3576 3577
            goto cleanup;
        }
    }

    if ((flags & VIR_DOMAIN_DEVICE_MODIFY_CONFIG) && !vm->persistent) {
3578 3579
         virReportError(VIR_ERR_OPERATION_INVALID,
                        "%s", _("cannot modify device on transient domain"));
3580 3581 3582 3583 3584 3585
         goto cleanup;
    }

    priv = vm->privateData;

    if (flags & VIR_DOMAIN_DEVICE_MODIFY_CONFIG) {
3586 3587
        if (!(dev = virDomainDeviceDefParse(xml, vm->def,
                                            driver->caps, driver->xmlopt,
3588 3589 3590 3591
                                            VIR_DOMAIN_XML_INACTIVE)))
            goto cleanup;

        /* Make a copy for updated domain. */
3592 3593
        if (!(vmdef = virDomainObjCopyPersistentDef(vm, driver->caps,
                                                    driver->xmlopt)))
3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604
            goto cleanup;

        switch (action) {
            case LIBXL_DEVICE_ATTACH:
                ret = libxlDomainAttachDeviceConfig(vmdef, dev);
                break;
            case LIBXL_DEVICE_DETACH:
                ret = libxlDomainDetachDeviceConfig(vmdef, dev);
                break;
            case LIBXL_DEVICE_UPDATE:
                ret = libxlDomainUpdateDeviceConfig(vmdef, dev);
3605
                break;
3606
            default:
3607 3608
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unknown domain modify action %d"), action);
3609 3610 3611 3612 3613 3614 3615 3616
                break;
        }
    } else
        ret = 0;

    if (flags & VIR_DOMAIN_DEVICE_MODIFY_LIVE) {
        /* If dev exists it was created to modify the domain config. Free it. */
        virDomainDeviceDefFree(dev);
3617 3618
        if (!(dev = virDomainDeviceDefParse(xml, vm->def,
                                            driver->caps, driver->xmlopt,
3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630
                                            VIR_DOMAIN_XML_INACTIVE)))
            goto cleanup;

        switch (action) {
            case LIBXL_DEVICE_ATTACH:
                ret = libxlDomainAttachDeviceLive(priv, vm, dev);
                break;
            case LIBXL_DEVICE_DETACH:
                ret = libxlDomainDetachDeviceLive(priv, vm, dev);
                break;
            case LIBXL_DEVICE_UPDATE:
                ret = libxlDomainUpdateDeviceLive(priv, vm, dev);
3631
                break;
3632
            default:
3633 3634
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unknown domain modify action %d"), action);
3635 3636 3637 3638 3639 3640
                break;
        }
        /*
         * update domain status forcibly because the domain status may be
         * changed even if we attach the device failed.
         */
3641
        if (virDomainSaveStatus(driver->xmlopt, driver->stateDir, vm) < 0)
3642 3643 3644 3645 3646 3647 3648
            ret = -1;
    }

    /* Finally, if no error until here, we can save config. */
    if (!ret && (flags & VIR_DOMAIN_DEVICE_MODIFY_CONFIG)) {
        ret = virDomainSaveConfig(driver->configDir, vmdef);
        if (!ret) {
3649
            virDomainObjAssignDef(vm, vmdef, false, NULL);
3650 3651 3652 3653 3654 3655 3656 3657
            vmdef = NULL;
        }
    }

cleanup:
    virDomainDefFree(vmdef);
    virDomainDeviceDefFree(dev);
    if (vm)
3658
        virObjectUnlock(vm);
3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697
    libxlDriverUnlock(driver);
    return ret;
}

static int
libxlDomainAttachDeviceFlags(virDomainPtr dom, const char *xml,
                             unsigned int flags)
{
    return libxlDomainModifyDeviceFlags(dom, xml, flags, LIBXL_DEVICE_ATTACH);
}

static int
libxlDomainAttachDevice(virDomainPtr dom, const char *xml)
{
    return libxlDomainAttachDeviceFlags(dom, xml,
                                        VIR_DOMAIN_DEVICE_MODIFY_LIVE);
}

static int
libxlDomainDetachDeviceFlags(virDomainPtr dom, const char *xml,
                             unsigned int flags)
{
    return libxlDomainModifyDeviceFlags(dom, xml, flags, LIBXL_DEVICE_DETACH);
}

static int
libxlDomainDetachDevice(virDomainPtr dom, const char *xml)
{
    return libxlDomainDetachDeviceFlags(dom, xml,
                                        VIR_DOMAIN_DEVICE_MODIFY_LIVE);
}

static int
libxlDomainUpdateDeviceFlags(virDomainPtr dom, const char *xml,
                             unsigned int flags)
{
    return libxlDomainModifyDeviceFlags(dom, xml, flags, LIBXL_DEVICE_UPDATE);
}

3698 3699 3700 3701 3702 3703 3704
static unsigned long long
libxlNodeGetFreeMemory(virConnectPtr conn)
{
    libxl_physinfo phy_info;
    const libxl_version_info* ver_info;
    libxlDriverPrivatePtr driver = conn->privateData;

J
Jim Fehlig 已提交
3705
    if (libxl_get_physinfo(driver->ctx, &phy_info)) {
3706 3707
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("libxl_get_physinfo_info failed"));
3708 3709 3710
        return 0;
    }

J
Jim Fehlig 已提交
3711
    if ((ver_info = libxl_get_version_info(driver->ctx)) == NULL) {
3712 3713
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("libxl_get_version_info failed"));
3714 3715 3716 3717 3718 3719
        return 0;
    }

    return phy_info.free_pages * ver_info->pagesize;
}

3720
static int
3721 3722 3723
libxlConnectDomainEventRegister(virConnectPtr conn,
                                virConnectDomainEventCallback callback, void *opaque,
                                virFreeCallback freecb)
3724 3725 3726 3727 3728
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int ret;

    libxlDriverLock(driver);
3729 3730 3731
    ret = virDomainEventStateRegister(conn,
                                      driver->domainEventState,
                                      callback, opaque, freecb);
3732 3733 3734 3735 3736 3737 3738
    libxlDriverUnlock(driver);

    return ret;
}


static int
3739 3740
libxlConnectDomainEventDeregister(virConnectPtr conn,
                                  virConnectDomainEventCallback callback)
3741 3742 3743 3744 3745
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int ret;

    libxlDriverLock(driver);
3746 3747 3748
    ret = virDomainEventStateDeregister(conn,
                                        driver->domainEventState,
                                        callback);
3749 3750 3751 3752 3753
    libxlDriverUnlock(driver);

    return ret;
}

3754 3755 3756 3757 3758 3759 3760 3761
static int
libxlDomainGetAutostart(virDomainPtr dom, int *autostart)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

    libxlDriverLock(driver);
3762
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
3763 3764 3765 3766 3767
    libxlDriverUnlock(driver);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
3768 3769
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
3770 3771 3772 3773 3774 3775 3776 3777
        goto cleanup;
    }

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

cleanup:
    if (vm)
3778
        virObjectUnlock(vm);
3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790
    return ret;
}

static int
libxlDomainSetAutostart(virDomainPtr dom, int autostart)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *configFile = NULL, *autostartLink = NULL;
    int ret = -1;

    libxlDriverLock(driver);
3791
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
3792 3793 3794 3795

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
3796 3797
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
3798 3799 3800 3801
        goto cleanup;
    }

    if (!vm->persistent) {
3802 3803
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("cannot set autostart for transient domain"));
3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815
        goto cleanup;
    }

    autostart = (autostart != 0);

    if (vm->autostart != autostart) {
        if (!(configFile = virDomainConfigFile(driver->configDir, vm->def->name)))
            goto cleanup;
        if (!(autostartLink = virDomainConfigFile(driver->autostartDir, vm->def->name)))
            goto cleanup;

        if (autostart) {
3816 3817
            if (virFileMakePath(driver->autostartDir) < 0) {
                virReportSystemError(errno,
3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845
                                     _("cannot create autostart directory %s"),
                                     driver->autostartDir);
                goto cleanup;
            }

            if (symlink(configFile, autostartLink) < 0) {
                virReportSystemError(errno,
                                     _("Failed to create symlink '%s to '%s'"),
                                     autostartLink, configFile);
                goto cleanup;
            }
        } else {
            if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
                virReportSystemError(errno,
                                     _("Failed to delete symlink '%s'"),
                                     autostartLink);
                goto cleanup;
            }
        }

        vm->autostart = autostart;
    }
    ret = 0;

cleanup:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
    if (vm)
3846
        virObjectUnlock(vm);
3847 3848 3849 3850
    libxlDriverUnlock(driver);
    return ret;
}

3851 3852 3853 3854 3855 3856 3857
static char *
libxlDomainGetSchedulerType(virDomainPtr dom, int *nparams)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    libxlDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
    char * ret = NULL;
J
Jim Fehlig 已提交
3858
    libxl_scheduler sched_id;
3859 3860

    libxlDriverLock(driver);
3861
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
3862 3863 3864
    libxlDriverUnlock(driver);

    if (!vm) {
3865
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
3866 3867 3868 3869
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
3870
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not running"));
3871 3872 3873 3874
        goto cleanup;
    }

    priv = vm->privateData;
J
Jim Fehlig 已提交
3875
    sched_id = libxl_get_scheduler(priv->ctx);
3876

3877 3878
    if (nparams)
        *nparams = 0;
3879
    switch (sched_id) {
J
Jim Fehlig 已提交
3880
    case LIBXL_SCHEDULER_SEDF:
3881 3882
        ret = strdup("sedf");
        break;
J
Jim Fehlig 已提交
3883
    case LIBXL_SCHEDULER_CREDIT:
3884
        ret = strdup("credit");
3885 3886
        if (nparams)
            *nparams = XEN_SCHED_CREDIT_NPARAM;
3887
        break;
J
Jim Fehlig 已提交
3888
    case LIBXL_SCHEDULER_CREDIT2:
3889 3890
        ret = strdup("credit2");
        break;
J
Jim Fehlig 已提交
3891
    case LIBXL_SCHEDULER_ARINC653:
3892 3893 3894
        ret = strdup("arinc653");
        break;
    default:
J
Jim Fehlig 已提交
3895 3896 3897
        virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("Failed to get scheduler id for domain '%d'"
                     " with libxenlight"), dom->id);
3898 3899 3900 3901 3902 3903 3904 3905
        goto cleanup;
    }

    if (!ret)
        virReportOOMError();

cleanup:
    if (vm)
3906
        virObjectUnlock(vm);
3907 3908 3909
    return ret;
}

3910
static int
3911 3912 3913 3914
libxlDomainGetSchedulerParametersFlags(virDomainPtr dom,
                                       virTypedParameterPtr params,
                                       int *nparams,
                                       unsigned int flags)
3915 3916 3917 3918
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    libxlDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
J
Jim Fehlig 已提交
3919 3920
    libxl_domain_sched_params sc_info;
    libxl_scheduler sched_id;
3921 3922
    int ret = -1;

3923 3924
    virCheckFlags(0, -1);

3925
    libxlDriverLock(driver);
3926
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
3927 3928 3929
    libxlDriverUnlock(driver);

    if (!vm) {
J
Jim Fehlig 已提交
3930 3931
        virReportError(VIR_ERR_NO_DOMAIN, "%s",
                       _("no domain with matching uuid"));
3932 3933 3934 3935
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
J
Jim Fehlig 已提交
3936 3937
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Domain is not running"));
3938 3939 3940 3941 3942
        goto cleanup;
    }

    priv = vm->privateData;

J
Jim Fehlig 已提交
3943
    sched_id = libxl_get_scheduler(priv->ctx);
3944

J
Jim Fehlig 已提交
3945
    if (sched_id != LIBXL_SCHEDULER_CREDIT) {
3946 3947
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Only 'credit' scheduler is supported"));
3948 3949 3950
        goto cleanup;
    }

J
Jim Fehlig 已提交
3951
    if (libxl_domain_sched_params_get(priv->ctx, dom->id, &sc_info) != 0) {
3952 3953 3954
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to get scheduler parameters for domain '%d'"
                         " with libxenlight"), dom->id);
3955 3956 3957
        goto cleanup;
    }

3958 3959
    if (virTypedParameterAssign(&params[0], VIR_DOMAIN_SCHEDULER_WEIGHT,
                                VIR_TYPED_PARAM_UINT, sc_info.weight) < 0)
3960 3961
        goto cleanup;

3962
    if (*nparams > 1) {
3963 3964
        if (virTypedParameterAssign(&params[0], VIR_DOMAIN_SCHEDULER_CAP,
                                    VIR_TYPED_PARAM_UINT, sc_info.cap) < 0)
3965
            goto cleanup;
3966 3967
    }

3968 3969
    if (*nparams > XEN_SCHED_CREDIT_NPARAM)
        *nparams = XEN_SCHED_CREDIT_NPARAM;
3970 3971 3972 3973
    ret = 0;

cleanup:
    if (vm)
3974
        virObjectUnlock(vm);
3975 3976 3977 3978
    return ret;
}

static int
3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989
libxlDomainGetSchedulerParameters(virDomainPtr dom, virTypedParameterPtr params,
                                  int *nparams)
{
    return libxlDomainGetSchedulerParametersFlags(dom, params, nparams, 0);
}

static int
libxlDomainSetSchedulerParametersFlags(virDomainPtr dom,
                                       virTypedParameterPtr params,
                                       int nparams,
                                       unsigned int flags)
3990 3991 3992 3993
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    libxlDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
J
Jim Fehlig 已提交
3994
    libxl_domain_sched_params sc_info;
3995 3996 3997 3998
    int sched_id;
    int i;
    int ret = -1;

3999
    virCheckFlags(0, -1);
4000 4001 4002 4003 4004 4005 4006
    if (virTypedParameterArrayValidate(params, nparams,
                                       VIR_DOMAIN_SCHEDULER_WEIGHT,
                                       VIR_TYPED_PARAM_UINT,
                                       VIR_DOMAIN_SCHEDULER_CAP,
                                       VIR_TYPED_PARAM_UINT,
                                       NULL) < 0)
        return -1;
4007

4008
    libxlDriverLock(driver);
4009
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
4010 4011 4012
    libxlDriverUnlock(driver);

    if (!vm) {
4013
        virReportError(VIR_ERR_NO_DOMAIN, "%s", _("no domain with matching uuid"));
4014 4015 4016 4017
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
4018
        virReportError(VIR_ERR_OPERATION_INVALID, "%s", _("Domain is not running"));
4019 4020 4021 4022 4023
        goto cleanup;
    }

    priv = vm->privateData;

J
Jim Fehlig 已提交
4024
    sched_id = libxl_get_scheduler(priv->ctx);
4025

J
Jim Fehlig 已提交
4026
    if (sched_id != LIBXL_SCHEDULER_CREDIT) {
4027 4028
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Only 'credit' scheduler is supported"));
4029 4030 4031
        goto cleanup;
    }

J
Jim Fehlig 已提交
4032
    if (libxl_domain_sched_params_get(priv->ctx, dom->id, &sc_info) != 0) {
4033 4034 4035
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to get scheduler parameters for domain '%d'"
                         " with libxenlight"), dom->id);
4036 4037 4038 4039
        goto cleanup;
    }

    for (i = 0; i < nparams; ++i) {
4040
        virTypedParameterPtr param = &params[i];
4041

4042
        if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_WEIGHT)) {
4043
            sc_info.weight = params[i].value.ui;
4044
        } else if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_CAP)) {
4045 4046 4047 4048
            sc_info.cap = params[i].value.ui;
        }
    }

J
Jim Fehlig 已提交
4049
    if (libxl_domain_sched_params_set(priv->ctx, dom->id, &sc_info) != 0) {
4050 4051 4052
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to set scheduler parameters for domain '%d'"
                         " with libxenlight"), dom->id);
4053 4054 4055 4056 4057 4058 4059
        goto cleanup;
    }

    ret = 0;

cleanup:
    if (vm)
4060
        virObjectUnlock(vm);
4061 4062 4063
    return ret;
}

4064 4065 4066 4067 4068 4069 4070
static int
libxlDomainSetSchedulerParameters(virDomainPtr dom, virTypedParameterPtr params,
                                  int nparams)
{
    return libxlDomainSetSchedulerParametersFlags(dom, params, nparams, 0);
}

J
Jim Fehlig 已提交
4071 4072 4073 4074 4075 4076 4077 4078
static int
libxlDomainIsActive(virDomainPtr dom)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr obj;
    int ret = -1;

    libxlDriverLock(driver);
4079
    obj = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
4080 4081
    libxlDriverUnlock(driver);
    if (!obj) {
4082
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
J
Jim Fehlig 已提交
4083 4084 4085 4086 4087 4088
        goto cleanup;
    }
    ret = virDomainObjIsActive(obj);

  cleanup:
    if (obj)
4089
        virObjectUnlock(obj);
J
Jim Fehlig 已提交
4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100
    return ret;
}

static int
libxlDomainIsPersistent(virDomainPtr dom)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr obj;
    int ret = -1;

    libxlDriverLock(driver);
4101
    obj = virDomainObjListFindByUUID(driver->domains, dom->uuid);
J
Jim Fehlig 已提交
4102 4103
    libxlDriverUnlock(driver);
    if (!obj) {
4104
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
J
Jim Fehlig 已提交
4105 4106 4107 4108 4109 4110
        goto cleanup;
    }
    ret = obj->persistent;

  cleanup:
    if (obj)
4111
        virObjectUnlock(obj);
J
Jim Fehlig 已提交
4112 4113 4114
    return ret;
}

4115 4116 4117 4118 4119 4120 4121 4122
static int
libxlDomainIsUpdated(virDomainPtr dom)
{
    libxlDriverPrivatePtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

    libxlDriverLock(driver);
4123
    vm = virDomainObjListFindByUUID(driver->domains, dom->uuid);
4124 4125
    libxlDriverUnlock(driver);
    if (!vm) {
4126
        virReportError(VIR_ERR_NO_DOMAIN, NULL);
4127 4128 4129 4130 4131 4132
        goto cleanup;
    }
    ret = vm->updated;

cleanup:
    if (vm)
4133
        virObjectUnlock(vm);
4134 4135 4136
    return ret;
}

4137
static int
4138 4139 4140
libxlConnectDomainEventRegisterAny(virConnectPtr conn, virDomainPtr dom, int eventID,
                                   virConnectDomainEventGenericCallback callback,
                                   void *opaque, virFreeCallback freecb)
4141 4142 4143 4144 4145
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int ret;

    libxlDriverLock(driver);
4146 4147 4148 4149
    if (virDomainEventStateRegisterID(conn,
                                      driver->domainEventState,
                                      dom, eventID, callback, opaque,
                                      freecb, &ret) < 0)
4150
        ret = -1;
4151 4152 4153 4154 4155 4156 4157
    libxlDriverUnlock(driver);

    return ret;
}


static int
4158
libxlConnectDomainEventDeregisterAny(virConnectPtr conn, int callbackID)
4159 4160 4161 4162 4163
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int ret;

    libxlDriverLock(driver);
4164 4165 4166
    ret = virDomainEventStateDeregisterID(conn,
                                          driver->domainEventState,
                                          callbackID);
4167 4168 4169 4170 4171
    libxlDriverUnlock(driver);

    return ret;
}

J
Jim Fehlig 已提交
4172

4173
static int
4174
libxlConnectIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
4175 4176 4177 4178
{
    return 1;
}

4179
static int
4180 4181 4182
libxlConnectListAllDomains(virConnectPtr conn,
                           virDomainPtr **domains,
                           unsigned int flags)
4183 4184 4185 4186
{
    libxlDriverPrivatePtr driver = conn->privateData;
    int ret = -1;

O
Osier Yang 已提交
4187
    virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ALL, -1);
4188 4189

    libxlDriverLock(driver);
4190
    ret = virDomainObjListExport(driver->domains, conn, domains, flags);
4191 4192 4193 4194 4195 4196
    libxlDriverUnlock(driver);

    return ret;
}


4197

J
Jim Fehlig 已提交
4198
static virDriver libxlDriver = {
4199 4200
    .no = VIR_DRV_LIBXL,
    .name = "xenlight",
4201 4202 4203 4204
    .connectOpen = libxlConnectOpen, /* 0.9.0 */
    .connectClose = libxlConnectClose, /* 0.9.0 */
    .connectGetType = libxlConnectGetType, /* 0.9.0 */
    .connectGetVersion = libxlConnectGetVersion, /* 0.9.0 */
4205
    .connectGetHostname = virGetHostname, /* 0.9.0 */
4206
    .connectGetMaxVcpus = libxlConnectGetMaxVcpus, /* 0.9.0 */
4207
    .nodeGetInfo = libxlNodeGetInfo, /* 0.9.0 */
4208 4209 4210 4211
    .connectGetCapabilities = libxlConnectGetCapabilities, /* 0.9.0 */
    .connectListDomains = libxlConnectListDomains, /* 0.9.0 */
    .connectNumOfDomains = libxlConnectNumOfDomains, /* 0.9.0 */
    .connectListAllDomains = libxlConnectListAllDomains, /* 0.9.13 */
4212 4213 4214 4215 4216 4217 4218
    .domainCreateXML = libxlDomainCreateXML, /* 0.9.0 */
    .domainLookupByID = libxlDomainLookupByID, /* 0.9.0 */
    .domainLookupByUUID = libxlDomainLookupByUUID, /* 0.9.0 */
    .domainLookupByName = libxlDomainLookupByName, /* 0.9.0 */
    .domainSuspend = libxlDomainSuspend, /* 0.9.0 */
    .domainResume = libxlDomainResume, /* 0.9.0 */
    .domainShutdown = libxlDomainShutdown, /* 0.9.0 */
4219
    .domainShutdownFlags = libxlDomainShutdownFlags, /* 0.9.10 */
4220 4221
    .domainReboot = libxlDomainReboot, /* 0.9.0 */
    .domainDestroy = libxlDomainDestroy, /* 0.9.0 */
4222
    .domainDestroyFlags = libxlDomainDestroyFlags, /* 0.9.4 */
4223 4224
    .domainGetOSType = libxlDomainGetOSType, /* 0.9.0 */
    .domainGetMaxMemory = libxlDomainGetMaxMemory, /* 0.9.0 */
4225
    .domainSetMaxMemory = libxlDomainSetMaxMemory, /* 0.9.2 */
4226 4227 4228 4229
    .domainSetMemory = libxlDomainSetMemory, /* 0.9.0 */
    .domainSetMemoryFlags = libxlDomainSetMemoryFlags, /* 0.9.0 */
    .domainGetInfo = libxlDomainGetInfo, /* 0.9.0 */
    .domainGetState = libxlDomainGetState, /* 0.9.2 */
4230
    .domainSave = libxlDomainSave, /* 0.9.2 */
4231
    .domainSaveFlags = libxlDomainSaveFlags, /* 0.9.4 */
4232
    .domainRestore = libxlDomainRestore, /* 0.9.2 */
4233
    .domainRestoreFlags = libxlDomainRestoreFlags, /* 0.9.4 */
4234
    .domainCoreDump = libxlDomainCoreDump, /* 0.9.2 */
4235 4236 4237 4238 4239 4240
    .domainSetVcpus = libxlDomainSetVcpus, /* 0.9.0 */
    .domainSetVcpusFlags = libxlDomainSetVcpusFlags, /* 0.9.0 */
    .domainGetVcpusFlags = libxlDomainGetVcpusFlags, /* 0.9.0 */
    .domainPinVcpu = libxlDomainPinVcpu, /* 0.9.0 */
    .domainGetVcpus = libxlDomainGetVcpus, /* 0.9.0 */
    .domainGetXMLDesc = libxlDomainGetXMLDesc, /* 0.9.0 */
4241 4242 4243 4244
    .connectDomainXMLFromNative = libxlConnectDomainXMLFromNative, /* 0.9.0 */
    .connectDomainXMLToNative = libxlConnectDomainXMLToNative, /* 0.9.0 */
    .connectListDefinedDomains = libxlConnectListDefinedDomains, /* 0.9.0 */
    .connectNumOfDefinedDomains = libxlConnectNumOfDefinedDomains, /* 0.9.0 */
4245 4246 4247 4248
    .domainCreate = libxlDomainCreate, /* 0.9.0 */
    .domainCreateWithFlags = libxlDomainCreateWithFlags, /* 0.9.0 */
    .domainDefineXML = libxlDomainDefineXML, /* 0.9.0 */
    .domainUndefine = libxlDomainUndefine, /* 0.9.0 */
4249
    .domainUndefineFlags = libxlDomainUndefineFlags, /* 0.9.4 */
4250 4251 4252 4253 4254
    .domainAttachDevice = libxlDomainAttachDevice, /* 0.9.2 */
    .domainAttachDeviceFlags = libxlDomainAttachDeviceFlags, /* 0.9.2 */
    .domainDetachDevice = libxlDomainDetachDevice,    /* 0.9.2 */
    .domainDetachDeviceFlags = libxlDomainDetachDeviceFlags, /* 0.9.2 */
    .domainUpdateDeviceFlags = libxlDomainUpdateDeviceFlags, /* 0.9.2 */
4255 4256 4257 4258
    .domainGetAutostart = libxlDomainGetAutostart, /* 0.9.0 */
    .domainSetAutostart = libxlDomainSetAutostart, /* 0.9.0 */
    .domainGetSchedulerType = libxlDomainGetSchedulerType, /* 0.9.0 */
    .domainGetSchedulerParameters = libxlDomainGetSchedulerParameters, /* 0.9.0 */
4259
    .domainGetSchedulerParametersFlags = libxlDomainGetSchedulerParametersFlags, /* 0.9.2 */
4260
    .domainSetSchedulerParameters = libxlDomainSetSchedulerParameters, /* 0.9.0 */
4261
    .domainSetSchedulerParametersFlags = libxlDomainSetSchedulerParametersFlags, /* 0.9.2 */
4262
    .nodeGetFreeMemory = libxlNodeGetFreeMemory, /* 0.9.0 */
4263 4264
    .connectDomainEventRegister = libxlConnectDomainEventRegister, /* 0.9.0 */
    .connectDomainEventDeregister = libxlConnectDomainEventDeregister, /* 0.9.0 */
4265 4266 4267
    .domainManagedSave = libxlDomainManagedSave, /* 0.9.2 */
    .domainHasManagedSaveImage = libxlDomainHasManagedSaveImage, /* 0.9.2 */
    .domainManagedSaveRemove = libxlDomainManagedSaveRemove, /* 0.9.2 */
4268 4269 4270
    .domainIsActive = libxlDomainIsActive, /* 0.9.0 */
    .domainIsPersistent = libxlDomainIsPersistent, /* 0.9.0 */
    .domainIsUpdated = libxlDomainIsUpdated, /* 0.9.0 */
4271 4272 4273
    .connectDomainEventRegisterAny = libxlConnectDomainEventRegisterAny, /* 0.9.0 */
    .connectDomainEventDeregisterAny = libxlConnectDomainEventDeregisterAny, /* 0.9.0 */
    .connectIsAlive = libxlConnectIsAlive, /* 0.9.8 */
J
Jim Fehlig 已提交
4274 4275 4276 4277
};

static virStateDriver libxlStateDriver = {
    .name = "LIBXL",
4278 4279 4280
    .stateInitialize = libxlStateInitialize,
    .stateCleanup = libxlStateCleanup,
    .stateReload = libxlStateReload,
J
Jim Fehlig 已提交
4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293
};


int
libxlRegister(void)
{
    if (virRegisterDriver(&libxlDriver) < 0)
        return -1;
    if (virRegisterStateDriver(&libxlStateDriver) < 0)
        return -1;

    return 0;
}