xenapi_driver.c 64.2 KB
Newer Older
1 2
/*
 * xenapi_driver.c: Xen API driver.
3
 * Copyright (C) 2011-2014 Red Hat, Inc.
4 5 6 7 8 9 10 11 12 13 14 15 16
 * Copyright (C) 2009, 2010 Citrix Ltd.
 *
 * 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/>.
19 20 21 22 23 24 25 26 27 28 29 30
 *
 * Author: Sharadha Prabhakar <sharadha.prabhakar@citrix.com>
 */

#include <config.h>

#include <limits.h>
#include <string.h>
#include <curl/curl.h>
#include <xen/api/xen_all.h>
#include "internal.h"
#include "domain_conf.h"
31
#include "virerror.h"
32
#include "datatypes.h"
33
#include "virauth.h"
34
#include "viruuid.h"
35
#include "viralloc.h"
36
#include "virbuffer.h"
M
Martin Kletzander 已提交
37
#include "viruri.h"
38 39 40
#include "xenapi_driver.h"
#include "xenapi_driver_private.h"
#include "xenapi_utils.h"
41
#include "virstring.h"
42

43 44
#define VIR_FROM_THIS VIR_FROM_XENAPI

45

46 47
static int
xenapiDomainDeviceDefPostParse(virDomainDeviceDefPtr dev,
48
                               const virDomainDef *def,
49 50
                               virCapsPtr caps ATTRIBUTE_UNUSED,
                               void *opaque ATTRIBUTE_UNUSED)
51
{
52 53 54 55 56 57
    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;

58 59 60 61 62 63 64 65 66 67
    /* forbid capabilities mode hostdev in this kind of hypervisor */
    if (dev->type == VIR_DOMAIN_DEVICE_HOSTDEV &&
        dev->data.hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_CAPABILITIES) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("hostdev mode 'capabilities' is not "
                         "supported in %s"),
                       virDomainVirtTypeToString(def->virtType));
        return -1;
    }

68
    return 0;
69 70 71
}


72 73 74 75 76 77 78 79 80
static int
xenapiDomainDefPostParse(virDomainDefPtr def ATTRIBUTE_UNUSED,
                         virCapsPtr caps ATTRIBUTE_UNUSED,
                         void *opaque ATTRIBUTE_UNUSED)
{
    return 0;
}


81 82
virDomainDefParserConfig xenapiDomainDefParserConfig = {
    .devicesPostParseCallback = xenapiDomainDeviceDefPostParse,
83
    .domainPostParseCallback = xenapiDomainDefPostParse,
84 85 86
};


87 88 89 90 91 92 93
/*
 * getCapsObject
 *
 * Build the capabilities of the hypervisor
 * Return virCapsPtr on success or NULL on failure
 */
static virCapsPtr
94
getCapsObject(void)
95
{
96 97
    virCapsGuestPtr guest1, guest2;
    virCapsGuestDomainPtr domain1, domain2;
98
    virCapsPtr caps = virCapabilitiesNew(virArchFromHost(), false, false);
99

100
    if (!caps)
101
        return NULL;
102
    guest1 = virCapabilitiesAddGuest(caps, "hvm", VIR_ARCH_X86_64, "", "", 0, NULL);
103 104
    if (!guest1)
        goto error_cleanup;
105
    domain1 = virCapabilitiesAddGuestDomain(guest1, "xen", "", "", 0, NULL);
106 107
    if (!domain1)
        goto error_cleanup;
108
    guest2 = virCapabilitiesAddGuest(caps, "xen", VIR_ARCH_X86_64, "", "", 0, NULL);
109 110
    if (!guest2)
        goto error_cleanup;
111
    domain2 = virCapabilitiesAddGuestDomain(guest2, "xen", "", "", 0, NULL);
112 113 114 115 116
    if (!domain2)
        goto error_cleanup;

    return caps;

117
 error_cleanup:
118
    virObjectUnref(caps);
119 120 121 122
    return NULL;
}

/*
123
 * xenapiConnectOpen
124 125 126 127 128
 *
 * Authenticates and creates a session with the server
 * Return VIR_DRV_OPEN_SUCCESS on success, else VIR_DRV_OPEN_ERROR
 */
static virDrvOpenStatus
129 130
xenapiConnectOpen(virConnectPtr conn, virConnectAuthPtr auth,
                  unsigned int flags)
131
{
132 133 134
    char *username = NULL;
    char *password = NULL;
    struct _xenapiPrivate *privP = NULL;
135

E
Eric Blake 已提交
136 137
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

138 139
    if (conn->uri == NULL || conn->uri->scheme == NULL ||
        STRCASENEQ(conn->uri->scheme, "XenAPI")) {
140 141
        return VIR_DRV_OPEN_DECLINED;
    }
142

143
    if (conn->uri->server == NULL) {
144
        xenapiSessionErrorHandler(conn, VIR_ERR_INVALID_ARG,
145
                                  _("Server name not in URI"));
146 147 148 149 150
        goto error;
    }

    if (auth == NULL) {
        xenapiSessionErrorHandler(conn, VIR_ERR_AUTH_FAILED,
151
                                  _("Authentication Credentials not found"));
152
        goto error;
153
    }
154 155

    if (conn->uri->user != NULL) {
156
        if (VIR_STRDUP(username, conn->uri->user) < 0)
157
            goto error;
158
    } else {
159
        username = virAuthGetUsername(conn, auth, "xen", NULL, conn->uri->server);
160 161 162

        if (username == NULL) {
            xenapiSessionErrorHandler(conn, VIR_ERR_AUTH_FAILED,
163
                                      _("Username request failed"));
164 165
            goto error;
        }
166
    }
167

168
    password = virAuthGetPassword(conn, auth, "xen", username, conn->uri->server);
169 170 171

    if (password == NULL) {
        xenapiSessionErrorHandler(conn, VIR_ERR_AUTH_FAILED,
172
                                  _("Password request failed"));
173
        goto error;
174
    }
175

176
    if (VIR_ALLOC(privP) < 0)
177 178
        goto error;

179
    if (virAsprintf(&privP->url, "https://%s", conn->uri->server) < 0)
180 181 182 183 184 185 186
        goto error;

    if (xenapiUtil_ParseQuery(conn, conn->uri, &privP->noVerify) < 0)
        goto error;

    if (!(privP->caps = getCapsObject())) {
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
187
                                  _("Capabilities not found"));
188 189 190
        goto error;
    }

191 192
    if (!(privP->xmlopt = virDomainXMLOptionNew(&xenapiDomainDefParserConfig,
                                                NULL, NULL))) {
193 194 195 196 197
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Failed to create XML conf object"));
        goto error;
    }

198 199 200 201
    xmlInitParser();
    xmlKeepBlanksDefault(0);
    xen_init();

202 203
    privP->session = xen_session_login_with_password(call_func, privP, username,
                                                     password, xen_api_latest_version);
204

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
    if (privP->session == NULL) {
        /* From inspection of xen_session_login_with_password in
         * libxenserver(Version 5.6.100-1), this appears not to be currently
         * possible. The only way for this to be NULL would be on malloc
         * failure, except that the code doesn't check for this and would
         * segfault before returning.
         *
         * We don't assume the reason here for a failure in an external library.
         */
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Failed to allocate xen session"));

        goto error;
    }

    if (privP->session->ok) {
221
        conn->privateData = privP;
222 223 224 225

        VIR_FREE(username);
        VIR_FREE(password);

226
        return VIR_DRV_OPEN_SUCCESS;
227 228
    }

229
    xenapiSessionErrorHandler(conn, VIR_ERR_AUTH_FAILED, NULL);
230

231
 error:
232 233 234 235
    VIR_FREE(username);
    VIR_FREE(password);

    if (privP != NULL) {
236
        virObjectUnref(privP->caps);
237
        virObjectUnref(privP->xmlopt);
238

239 240 241
        if (privP->session != NULL)
            xenSessionFree(privP->session);

242
        VIR_FREE(privP->url);
243 244
        VIR_FREE(privP);
    }
245 246

    return VIR_DRV_OPEN_ERROR;
247 248 249
}

/*
250
 * xenapiConnectClose:
251 252 253 254 255
 *
 * Returns 0 on successful session logout
 *
 */
static int
256
xenapiConnectClose(virConnectPtr conn)
257
{
258 259
    struct _xenapiPrivate *priv = conn->privateData;

260
    virObjectUnref(priv->caps);
261
    virObjectUnref(priv->xmlopt);
262 263 264

    if (priv->session != NULL) {
        xen_session_logout(priv->session);
265
        priv->session = NULL;
266 267 268 269 270 271 272
    }

    VIR_FREE(priv->url);
    VIR_FREE(priv);

    conn->privateData = NULL;

273 274 275 276 277
    return 0;
}

/*
 *
278
 * xenapiConnectSupportsFeature
279 280 281 282
 *
 * Returns 0
 */
static int
283
xenapiConnectSupportsFeature(virConnectPtr conn ATTRIBUTE_UNUSED, int feature)
284 285 286 287 288 289 290 291 292 293
{
    switch (feature) {
    case VIR_DRV_FEATURE_MIGRATION_V2:
    case VIR_DRV_FEATURE_MIGRATION_P2P:
    default:
        return 0;
    }
}

/*
294
 * xenapiConnectGetType:
295 296 297 298 299
 *
 *
 * Returns name of the driver
 */
static const char *
300
xenapiConnectGetType(virConnectPtr conn ATTRIBUTE_UNUSED)
301 302 303 304 305 306
{
    return "XenAPI";
}


/*
307
 * xenapiConnectGetVersion:
308 309 310 311 312
 *
 * Gets the version of XenAPI
 *
 */
static int
313
xenapiConnectGetVersion(virConnectPtr conn, unsigned long *hvVer)
314 315 316 317
{
    xen_host host;
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
    xen_string_string_map *result = NULL;
318 319
    size_t i;
    int ret = -1;
320 321 322 323 324 325 326 327 328 329 330 331 332 333
    char *version = NULL;
    if (!(xen_session_get_this_host(session, &host, session))) {
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
        return -1;
    }
    if (!(xen_host_get_software_version(session, &result, host))) {
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
        xen_host_free(host);
        return -1;
    }
    xen_host_free(host);
    if (result && result->size > 0) {
        for (i = 0; i < result->size; i++) {
            if (STREQ(result->contents[i].key, "xen")) {
334
                if (VIR_STRDUP(version, result->contents[i].val) < 0) {
335 336 337 338 339 340 341
                    xen_string_string_map_free(result);
                    return -1;
                }
                break;
            }
        }
        if (version) {
342
            if (virParseVersionString(version, hvVer, false) < 0)
343
                xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
344 345 346
                                          _("Couldn't parse version info"));
            else
                ret = 0;
347
            xen_string_string_map_free(result);
348 349
            VIR_FREE(version);
            return ret;
350
        }
351 352
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Couldn't get version info"));
353 354 355 356 357 358
    }
    return -1;
}


/*
359
 * xenapiConnectGetHostname:
360 361 362 363 364
 *
 *
 * Returns the hostname on success, or NULL on failure
 */
static char *
365
xenapiConnectGetHostname(virConnectPtr conn)
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
{
    char *result = NULL;
    xen_host host;
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
    if (!(xen_session_get_this_host(session, &host, session))) {
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
        return NULL;
    }
    if (!(xen_host_get_hostname(session, &result, host)))
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
    xen_host_free(host);
    return result;
}


/*
382
 * xenapiConnectGetMaxVcpus:
383 384 385 386 387
 *
 *
 * Returns a hardcoded value for Maximum VCPUS
 */
static int
388
xenapiConnectGetMaxVcpus(virConnectPtr conn ATTRIBUTE_UNUSED, const char *type ATTRIBUTE_UNUSED)
389 390 391 392 393 394 395 396 397 398 399 400 401 402
{
    /* this is hardcoded for simplicity and set to a resonable value compared
       to the actual value */
    return 16;
}


/*
 * xenapiNodeGetInfo:
 *
 *
 * Returns Node details on success or else -1
 */
static int
403
xenapiNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info)
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
{
    int64_t memory, mhz;
    xen_host_cpu_set *host_cpu_set;
    xen_host_cpu host_cpu;
    xen_host_metrics_set *xen_met_set;
    char *modelname;
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
    info->nodes = 1;
    info->threads = 1;
    info->sockets = 1;

    if (xen_host_metrics_get_all(session, &xen_met_set)) {
        xen_host_metrics_get_memory_total(session, &memory, xen_met_set->contents[0]);
        info->memory = (unsigned long)(memory / 1024);
        xen_host_metrics_set_free(xen_met_set);
    } else {
420 421
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Unable to get host metric Information"));
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
        return -1;
    }
    if (xen_host_cpu_get_all(session, &host_cpu_set)) {
        host_cpu = host_cpu_set->contents[0];
        xen_host_cpu_get_modelname(session, &modelname, host_cpu);
        if (!virStrncpy(info->model, modelname, LIBVIRT_MODELNAME_LEN - 1, LIBVIRT_MODELNAME_LEN)) {
            virReportOOMError();
            xen_host_cpu_set_free(host_cpu_set);
            VIR_FREE(modelname);
            return -1;
        }
        xen_host_cpu_get_speed(session, &mhz, host_cpu);
        info->mhz = (unsigned long)mhz;
        info->cpus = host_cpu_set->size;
        info->cores = host_cpu_set->size;

        xen_host_cpu_set_free(host_cpu_set);
        VIR_FREE(modelname);
        return 0;
    }
442 443
    xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                              _("Unable to get Host CPU set"));
444 445 446 447
    return -1;
}

/*
448
 * xenapiConnectGetCapabilities:
449 450 451 452 453
 *
 *
 * Returns capabilities as an XML string
 */
static char *
454
xenapiConnectGetCapabilities(virConnectPtr conn)
455
{
456

457
    virCapsPtr caps = ((struct _xenapiPrivate *)(conn->privateData))->caps;
458 459
    if (caps)
        return virCapabilitiesFormatXML(caps);
460

461 462
    xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                              _("Capabilities not available"));
463 464 465 466 467
    return NULL;
}


/*
468
 * xenapiConnectListDomains
469 470 471 472 473
 *
 * Collects the list of active domains, and store their ID in @maxids
 * Returns the number of domain found or -1 in case of error
 */
static int
474
xenapiConnectListDomains(virConnectPtr conn, int *ids, int maxids)
475 476 477 478 479
{
    /* vm.list */
    xen_host host;
    xen_vm_set *result = NULL;
    int64_t t0;
480
    size_t i;
481 482 483 484
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
    if (xen_session_get_this_host(session, &host, session)) {
        xen_host_get_resident_vms(session, &result, host);
        xen_host_free(host);
485
    } else {
486
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
487
    }
488 489 490 491
    if (result != NULL) {
        for (i = 0; (i < (result->size)) && (i < maxids); i++) {
            xen_vm_get_domid(session, &t0, result->contents[i]);
            if (t0 > (int64_t)INT_MAX || t0 < (int64_t)INT_MIN) {
492 493
                xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                          _("DomainID can't fit in 32 bits"));
494 495 496 497 498 499 500 501 502 503 504 505
                xen_vm_set_free(result);
                return -1;
            }
            ids[i] = (int)t0;
        }
        xen_vm_set_free(result);
        return i;
    }
    return -1;
}

/*
506
 * xenapiConnectNumOfDomains
507 508 509 510 511
 *
 *
 * Returns the number of domains found or -1 in case of error
 */
static int
512
xenapiConnectNumOfDomains(virConnectPtr conn)
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
{
    /* #(vm.list) */
    xen_vm_set *result = NULL;
    xen_host host = NULL;
    int numDomains = -1;
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;

    xen_session_get_this_host(session, &host, session);
    if (host != NULL) {
        xen_host_get_resident_vms(session, &result, host);
        if (result != NULL) {
            numDomains = result->size;
            xen_vm_set_free(result);
        }
        xen_host_free(host);
    }
    if (!session->ok)
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
    return numDomains;
}

/*
 * xenapiDomainCreateXML
 *
 * Launches a new domain based on the XML description
 * Returns the domain pointer or NULL in case of error
 */
static virDomainPtr
541 542 543
xenapiDomainCreateXML(virConnectPtr conn,
                      const char *xmlDesc,
                      unsigned int flags)
544
{
545
    struct _xenapiPrivate *priv = conn->privateData;
546 547 548
    xen_vm_record *record = NULL;
    xen_vm vm = NULL;
    virDomainPtr domP = NULL;
549
    if (!priv->caps)
550 551
        return NULL;

552 553
    virCheckFlags(0, NULL);

554 555
    virDomainDefPtr defPtr = virDomainDefParseString(xmlDesc,
                                                     priv->caps, priv->xmlopt,
M
Matthias Bolte 已提交
556
                                                     1 << VIR_DOMAIN_VIRT_XEN,
557
                                                     VIR_DOMAIN_DEF_PARSE_INACTIVE);
558 559 560 561
    createVMRecordFromXml(conn, defPtr, &record, &vm);
    virDomainDefFree(defPtr);
    if (record) {
        unsigned char raw_uuid[VIR_UUID_BUFLEN];
562
        ignore_value(virUUIDParse(record->uuid, raw_uuid));
563
        if (vm) {
564
            if (xen_vm_start(priv->session, vm, false, false)) {
565 566 567
                domP = virGetDomain(conn, record->name_label, raw_uuid);
                if (!domP) {
                    xen_vm_record_free(record);
568 569
                    xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                              _("Domain Pointer is invalid"));
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
                    return domP;
                }
                domP->id = record->domid;
                xen_vm_free(vm);
            }
            else
                xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
        }
        xen_vm_record_free(record);
    }
    else
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
    return domP;
}

/*
 * xenapiDomainLookupByID
 *
 *
 * Returns a valid domain pointer of the domain with ID same as the one passed
 * or NULL in case of error
 */
static virDomainPtr
593
xenapiDomainLookupByID(virConnectPtr conn, int id)
594
{
595
    size_t i;
596 597 598 599 600 601
    int64_t domID;
    char *uuid;
    xen_host host;
    xen_vm_set *result;
    xen_vm_record *record;
    unsigned char raw_uuid[VIR_UUID_BUFLEN];
602
    virDomainPtr domP = NULL;
603 604 605 606 607
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;

    xen_session_get_this_host(session, &host, session);
    if (host != NULL && session->ok) {
        xen_host_get_resident_vms(session, &result, host);
608
        if (result != NULL) {
609 610 611 612 613
            for (i = 0; i < result->size; i++) {
                xen_vm_get_domid(session, &domID, result->contents[i]);
                if (domID == id) {
                    xen_vm_get_record(session, &record, result->contents[i]);
                    xen_vm_get_uuid(session, &uuid, result->contents[i]);
614
                    ignore_value(virUUIDParse(uuid, raw_uuid));
615 616 617 618 619 620
                    domP = virGetDomain(conn, record->name_label, raw_uuid);
                    if (domP) {
                        int64_t domid = -1;
                        xen_vm_get_domid(session, &domid, result->contents[i]);
                        domP->id = domid;
                    } else {
621 622
                        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                                  _("Domain Pointer not valid"));
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
                        domP = NULL;
                    }
                    xen_uuid_free(uuid);
                    xen_vm_record_free(record);
                    break;
                }
            }
            xen_vm_set_free(result);
        } else {
            xenapiSessionErrorHandler(conn, VIR_ERR_NO_DOMAIN, NULL);
        }
        xen_host_free(host);
    } else {
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
    }
    return domP;
}

/*
 * xenapiDomainLookupByUUID
 *
 * Returns the domain pointer of domain with matching UUID
 * or -1 in case of error
 */
static virDomainPtr
648 649
xenapiDomainLookupByUUID(virConnectPtr conn,
                         const unsigned char *uuid)
650 651 652 653 654 655 656
{
    /* vm.get_by_uuid */
    xen_vm vm;
    xen_vm_record *record;
    char uuidStr[VIR_UUID_STRING_BUFLEN];
    virDomainPtr domP = NULL;
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
E
Eric Blake 已提交
657
    virUUIDFormat(uuid, uuidStr);
658 659 660 661 662
    if (xen_vm_get_by_uuid(session, &vm, uuidStr)) {
        xen_vm_get_record(session, &record, vm);
        if (record != NULL) {
            domP = virGetDomain(conn, record->name_label, uuid);
            if (!domP) {
663 664
                xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                          _("Domain Pointer not valid"));
665 666 667 668 669
                domP = NULL;
            } else {
                domP->id = record->domid;
            }
            xen_vm_record_free(record);
670
        } else {
671
            xenapiSessionErrorHandler(conn, VIR_ERR_NO_DOMAIN, NULL);
672
        }
673
        xen_vm_free(vm);
674
    } else {
675
        xenapiSessionErrorHandler(conn, VIR_ERR_NO_DOMAIN, NULL);
676
    }
677 678 679 680 681 682 683 684 685 686
    return domP;
}

/*
 * xenapiDomainLookupByName
 *
 * Returns the domain pointer of domain with matching name
 * or -1 in case of error
 */
static virDomainPtr
687 688
xenapiDomainLookupByName(virConnectPtr conn,
                         const char *name)
689 690 691 692 693 694 695 696 697 698
{
    /* vm.get_by_name_label */
    xen_vm_set *vms = NULL;
    xen_vm vm;
    char *uuid = NULL;
    unsigned char raw_uuid[VIR_UUID_BUFLEN];
    virDomainPtr domP = NULL;
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
    if (xen_vm_get_by_name_label(session, &vms, (char *)name) && vms->size > 0) {
        if (vms->size != 1) {
699 700
            xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
701 702 703 704 705
            xen_vm_set_free(vms);
            return NULL;
        }
        vm = vms->contents[0];
        xen_vm_get_uuid(session, &uuid, vm);
706
        if (uuid != NULL) {
707
            ignore_value(virUUIDParse(uuid, raw_uuid));
708 709 710 711 712 713 714 715 716 717 718 719
            domP = virGetDomain(conn, name, raw_uuid);
            if (domP != NULL) {
                int64_t domid = -1;
                xen_vm_get_domid(session, &domid, vm);
                domP->id = domid;
                xen_uuid_free(uuid);
                xen_vm_set_free(vms);
                return domP;
            } else {
                xen_uuid_free(uuid);
                xen_vm_set_free(vms);
            if (!session->ok)
720 721
                xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                          _("Couldn't get the Domain Pointer"));
722 723 724 725
                return NULL;
            }
        }
    }
726 727
    if (vms)
        xen_vm_set_free(vms);
728
    xenapiSessionErrorHandler(conn, VIR_ERR_NO_DOMAIN, NULL);
729 730 731 732 733 734 735 736 737 738
    return NULL;
}

/*
 * xenapiDomainSuspend
 *
 * a VM is paused
 * Returns 0 on success or -1 in case of error
 */
static int
739
xenapiDomainSuspend(virDomainPtr dom)
740 741 742
{
    /* vm.pause() */
    xen_vm vm;
743
    xen_vm_set *vms = NULL;
744 745 746
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    if (xen_vm_get_by_name_label(session, &vms, dom->name) &&  vms->size > 0) {
        if (vms->size != 1) {
747 748
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
749 750 751 752 753 754 755 756 757 758 759 760 761
            xen_vm_set_free(vms);
            return -1;
        } else {
            vm = vms->contents[0];
            if (!xen_vm_pause(session, vm)) {
                xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
                xen_vm_set_free(vms);
                return -1;
            }
            xen_vm_set_free(vms);
            return 0;
        }
    }
762 763
    if (vms)
        xen_vm_set_free(vms);
764
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
765 766 767 768 769 770 771 772 773 774
    return -1;
}

/*
 * xenapiDomainResume
 *
 * Resumes a VM
 * Returns 0 on success or -1 in case of error
 */
static int
775
xenapiDomainResume(virDomainPtr dom)
776 777 778 779 780 781 782
{
    /* vm.unpause() */
    xen_vm vm;
    xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
783 784
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
785 786 787 788 789 790 791 792 793 794 795 796 797
            xen_vm_set_free(vms);
            return -1;
        } else {
            vm = vms->contents[0];
            if (!xen_vm_unpause(session, vm)) {
                xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
                xen_vm_set_free(vms);
                return -1;
            }
            xen_vm_set_free(vms);
            return 0;
        }
    }
798 799
    if (vms)
        xen_vm_set_free(vms);
800
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
801 802 803 804 805 806 807 808 809 810
    return -1;
}

/*
 * xenapiDomainShutdown
 *
 * shutsdown a VM
 * Returns 0 on success or -1 in case of error
 */
static int
811
xenapiDomainShutdownFlags(virDomainPtr dom, unsigned int flags)
812 813 814 815 816
{
    /* vm.clean_shutdown */
    xen_vm vm;
    xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
817 818 819

    virCheckFlags(0, -1);

820 821
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
822 823
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
824 825 826 827 828 829 830 831 832 833 834 835 836
            xen_vm_set_free(vms);
            return -1;
        } else {
            vm = vms->contents[0];
            if (!xen_vm_clean_shutdown(session, vm)) {
                xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
                xen_vm_set_free(vms);
                return -1;
            }
            xen_vm_set_free(vms);
            return 0;
        }
    }
837 838
    if (vms)
        xen_vm_set_free(vms);
839
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
840 841 842
    return -1;
}

843 844 845 846 847 848
static int
xenapiDomainShutdown(virDomainPtr dom)
{
    return xenapiDomainShutdownFlags(dom, 0);
}

849 850 851 852 853 854 855
/*
 * xenapiDomainReboot
 *
 * Reboots a VM
 * Returns 0 on success or -1 in case of error
 */
static int
856
xenapiDomainReboot(virDomainPtr dom, unsigned int flags)
857 858 859 860 861
{
    /* vm.clean_reboot */
    xen_vm vm;
    struct xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
E
Eric Blake 已提交
862 863 864

    virCheckFlags(0, -1);

865 866
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
867 868
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
869 870 871 872 873 874 875 876 877 878 879 880
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        if (!xen_vm_clean_reboot(session, vm)) {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            xen_vm_set_free(vms);
            return -1;
        }
        xen_vm_set_free(vms);
        return 0;
    }
881 882
    if (vms)
        xen_vm_set_free(vms);
883
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
884 885 886 887
    return -1;
}

/*
888 889 890 891 892 893
 * xenapiDomainDestroyFlags:
 * @dom: domain object
 * @flags: an OR'ed set of virDomainDestroyFlagsValues
 *
 * Calling this function with no flags set (equal to zero)
 * is equivalent to calling xenapiDomainDestroy.
894 895 896 897 898
 *
 * A VM is hard shutdown
 * Returns 0 on success or -1 in case of error
 */
static int
899 900
xenapiDomainDestroyFlags(virDomainPtr dom,
                         unsigned int flags)
901 902 903 904 905
{
    /* vm.hard_shutdown */
    xen_vm vm;
    struct xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
906 907 908

    virCheckFlags(0, -1);

909 910
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
911 912
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
913 914 915 916 917 918 919 920 921 922
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        if (!xen_vm_hard_shutdown(session, vm)) {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            xen_vm_set_free(vms);
            return -1;
        }
        xen_vm_set_free(vms);
923
        dom->id = -1;
924 925
        return 0;
    }
926 927
    if (vms)
        xen_vm_set_free(vms);
928
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
929 930 931
    return -1;
}

932 933 934 935 936 937 938 939 940 941 942
/*
 * xenapiDomainDestroy:
 * @dom: domain object
 *
 * See xenapiDomainDestroyFlags
 */
static int
xenapiDomainDestroy(virDomainPtr dom)
{
    return xenapiDomainDestroyFlags(dom, 0);
}
943 944 945 946 947 948 949
/*
 * xenapiDomainGetOSType
 *
 *
 * Returns OS version on success or NULL in case of error
 */
static char *
950
xenapiDomainGetOSType(virDomainPtr dom)
951
{
952
    xen_vm vm = NULL;
953 954
    xen_vm_set *vms;
    char *ostype = NULL;
955
    char *boot_policy = NULL;
956 957 958 959
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;

    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
960 961
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
962 963 964 965 966 967 968 969
            xen_vm_set_free(vms);
            return NULL;
        }
        vm = vms->contents[0];
        if (!xen_vm_get_hvm_boot_policy(session, &boot_policy, vm)) {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            goto cleanup;
        }
970 971
        ignore_value(VIR_STRDUP(ostype,
                                STREQ(boot_policy, "BIOS order") ? "hvm" : "xen"));
972
        VIR_FREE(boot_policy);
973
    } else {
974
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
975
    }
976

977
 cleanup:
978 979
    if (vms)
        xen_vm_set_free(vms);
980 981 982 983 984 985 986 987
    return ostype;
}
/*
 * xenapiDomainGetMaxMemory
 *
 * Returns maximum static memory for VM on success
 * or 0 in case of error
 */
988
static unsigned long long
989
xenapiDomainGetMaxMemory(virDomainPtr dom)
990 991 992 993 994 995 996
{
    int64_t mem_static_max = 0;
    xen_vm vm;
    xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
997 998
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
999 1000 1001 1002 1003 1004
            xen_vm_set_free(vms);
            return 0;
        }
        vm = vms->contents[0];
        xen_vm_get_memory_static_max(session, &mem_static_max, vm);
        xen_vm_set_free(vms);
1005
        return mem_static_max / 1024;
1006
    } else {
1007 1008
        if (vms)
            xen_vm_set_free(vms);
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
        return 0;
    }
}

/*
 * xenapiDomainSetMaxMemory
 *
 * Sets maximum static memory for VM on success
 * Returns 0 on success or -1 in case of error
 */
static int
1021
xenapiDomainSetMaxMemory(virDomainPtr dom, unsigned long memory)
1022 1023 1024 1025 1026 1027 1028
{
    /* vm.set_memory_static_max */
    xen_vm vm;
    struct xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1029 1030
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        if (!(xen_vm_set_memory_static_max(session, vm, memory * 1024))) {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            xen_vm_set_free(vms);
            return -1;
        }
        xen_vm_set_free(vms);
    } else {
1042 1043
        if (vms)
            xen_vm_set_free(vms);
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
        return -1;
    }
    return 0;
}

/*
 * xenapiDomainGetInfo:
 *
 * Fills a structure with domain information
 * Returns 0 on success or -1 in case of error
 */
static int
1057
xenapiDomainGetInfo(virDomainPtr dom, virDomainInfoPtr info)
1058 1059 1060 1061 1062 1063 1064 1065 1066
{
    int64_t maxmem = 0, memory = 0, vcpu = 0;
    xen_vm vm;
    xen_vm_record *record;
    xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    info->cpuTime = 0; /* CPU time is not advertised */
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1067 1068
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1069 1070 1071 1072 1073 1074
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        xen_vm_get_memory_static_max(session, &maxmem, vm);
        info->maxMem = (maxmem / 1024);
1075
        enum xen_vm_power_state state = XEN_VM_POWER_STATE_UNDEFINED;
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
        xen_vm_get_power_state(session, &state, vm);
        info->state = mapPowerState(state);
        xen_vm_get_record(session, &record, vm);
        if (record != NULL) {
            xen_vm_metrics_get_memory_actual(session, &memory, record->metrics->u.handle);
            info->memory = (memory / 1024);
            xen_vm_record_free(record);
        }
        xen_vm_get_vcpus_max(session, &vcpu, vm);
        info->nrVirtCpu = vcpu;
        xen_vm_set_free(vms);
        return 0;
    }
1089 1090
    if (vms)
        xen_vm_set_free(vms);
1091 1092 1093 1094
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
    return -1;
}

1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
/*
 * xenapiDomainGetState:
 *
 * Retrieves domain status and its reason.
 *
 * Returns 0 on success or -1 in case of error
 */
static int
xenapiDomainGetState(virDomainPtr dom,
                     int *state,
                     int *reason,
                     unsigned int flags)
{
    struct _xenapiPrivate *priv = dom->conn->privateData;
    enum xen_vm_power_state powerState = XEN_VM_POWER_STATE_UNDEFINED;
    xen_vm_set *vms = NULL;
    xen_vm vm;
    int ret = -1;

    virCheckFlags(0, -1);

    if (!xen_vm_get_by_name_label(priv->session, &vms, dom->name) ||
        vms->size == 0) {
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
        goto cleanup;
    }

    if (vms->size != 1) {
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Domain name is not unique"));
        goto cleanup;
    }

    vm = vms->contents[0];
    xen_vm_get_power_state(priv->session, &powerState, vm);

    *state = mapPowerState(powerState);
    if (reason)
        *reason = 0;

    ret = 0;

1137
 cleanup:
1138 1139 1140 1141 1142
    if (vms)
        xen_vm_set_free(vms);
    return ret;
}

1143 1144

/*
1145
 * xenapiDomainSetVcpusFlags
1146 1147 1148 1149 1150
 *
 * Sets the VCPUs on the domain
 * Return 0 on success or -1 in case of error
 */
static int
1151 1152
xenapiDomainSetVcpusFlags(virDomainPtr dom, unsigned int nvcpus,
                          unsigned int flags)
1153 1154 1155 1156 1157
{
    /* vm.set_vcpus_max */
    xen_vm vm;
    xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
1158 1159

    if (flags != VIR_DOMAIN_VCPU_LIVE) {
1160 1161
        virReportError(VIR_ERR_INVALID_ARG, _("unsupported flags: (0x%x)"),
                       flags);
1162 1163 1164
        return -1;
    }

1165 1166
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1167 1168
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1169 1170 1171 1172 1173 1174 1175 1176 1177
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        if (xen_vm_set_vcpus_number_live(session, vm, (int64_t)nvcpus)) {
            xen_vm_set_free(vms);
            return 0;
        }
    }
1178 1179
    if (vms)
        xen_vm_set_free(vms);
1180 1181 1182 1183
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
    return -1;
}

1184 1185 1186 1187 1188 1189 1190
/*
 * xenapiDomainSetVcpus
 *
 * Sets the VCPUs on the domain
 * Return 0 on success or -1 in case of error
 */
static int
1191
xenapiDomainSetVcpus(virDomainPtr dom, unsigned int nvcpus)
1192 1193 1194 1195
{
    return xenapiDomainSetVcpusFlags(dom, nvcpus, VIR_DOMAIN_VCPU_LIVE);
}

1196 1197 1198 1199 1200 1201 1202
/*
 * xenapiDomainPinVcpu
 *
 * Dynamically change the real CPUs which can be allocated to a virtual CPU
 * Returns 0 on success or -1 in case of error
 */
static int
1203 1204
xenapiDomainPinVcpu(virDomainPtr dom, unsigned int vcpu ATTRIBUTE_UNUSED,
                    unsigned char *cpumap, int maplen)
1205 1206 1207 1208 1209 1210 1211
{
    char *value = NULL;
    xen_vm vm;
    xen_vm_set *vms;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1212 1213
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        if ((value = mapDomainPinVcpu(cpumap, maplen))) {
            xen_vm_remove_from_vcpus_params(session, vm, (char *)"mask");
            if (xen_vm_add_to_vcpus_params(session, vm, (char *)"mask", value)) {
                xen_vm_set_free(vms);
                VIR_FREE(value);
                return 0;
            }
            VIR_FREE(value);
        } else {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            xen_vm_set_free(vms);
            return -1;
        }
    }
1232 1233
    if (vms)
        xen_vm_set_free(vms);
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
    return -1;
}

/*
 * xenapiDomainGetVcpus
 *
 * Gets Vcpu information
 * Return number of structures filled on success or -1 in case of error
 */
static int
1245 1246 1247
xenapiDomainGetVcpus(virDomainPtr dom,
                     virVcpuInfoPtr info, int maxinfo,
                     unsigned char *cpumaps, int maplen)
1248 1249 1250 1251 1252
{

    xen_vm_set *vms = NULL;
    xen_vm vm = NULL;
    xen_string_string_map *vcpu_params = NULL;
1253 1254
    int nvcpus = 0;
    size_t i;
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
    virDomainInfo domInfo;
    virNodeInfo nodeInfo;
    virVcpuInfoPtr ifptr;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    char *mask = NULL;
    if (cpumaps != NULL && maplen < 1)
        return -1;
    if (xenapiDomainGetInfo(dom, &domInfo) == 0) {
        nvcpus = domInfo.nrVirtCpu;
    } else {
1265 1266
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Couldn't fetch Domain Information"));
1267 1268
        return -1;
    }
E
Eric Blake 已提交
1269
    if (xenapiNodeGetInfo(dom->conn, &nodeInfo) != 0) {
1270 1271
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Couldn't fetch Node Information"));
1272 1273 1274 1275 1276 1277 1278 1279 1280
        return -1;
    }
    if (nvcpus > maxinfo)
        nvcpus = maxinfo;
    if (cpumaps != NULL)
        memset(cpumaps, 0, maxinfo * maplen);
    if (!xen_vm_get_by_name_label(session, &vms, dom->name))
        return -1;
    if (vms->size != 1) {
1281 1282
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Domain name is not unique"));
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
        xen_vm_set_free(vms);
        return -1;
    }
    vm = vms->contents[0];
    if (!xen_vm_get_vcpus_params(session, &vcpu_params, vm)) {
        xen_vm_set_free(vms);
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
        return -1;
    }
    for (i = 0; i < vcpu_params->size; i++) {
        if (STREQ(vcpu_params->contents[i].key, "mask")) {
1294
            if (VIR_STRDUP(mask, vcpu_params->contents[i].val) < 0) {
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
                 xen_vm_set_free(vms);
                 xen_string_string_map_free(vcpu_params);
                 return -1;
            }
            break;
         }
    }
    xen_string_string_map_free(vcpu_params);
    for (i = 0, ifptr = info; i < nvcpus; i++, ifptr++) {
        ifptr->number = i;
        ifptr->state = VIR_VCPU_RUNNING;
        ifptr->cpuTime = 0;
        ifptr->cpu = 0;
        if (mask != NULL)
            getCpuBitMapfromString(mask, VIR_GET_CPUMAP(cpumaps, maplen, i), maplen);
    }
    VIR_FREE(mask);
    xen_vm_set_free(vms);
    return i;
}

/*
1317
 * xenapiDomainGetVcpusFlags
1318 1319
 *
 *
1320
 * Returns Vcpus count on success or -1 in case of error
1321 1322
 */
static int
1323
xenapiDomainGetVcpusFlags(virDomainPtr dom, unsigned int flags)
1324 1325 1326 1327 1328 1329
{
    xen_vm vm;
    xen_vm_set *vms;
    int64_t maxvcpu = 0;
    enum xen_vm_power_state state;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
1330 1331

    if (flags != (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_MAXIMUM)) {
1332 1333
        virReportError(VIR_ERR_INVALID_ARG, _("unsupported flags: (0x%x)"),
                       flags);
1334 1335 1336
        return -1;
    }

1337 1338
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1339 1340
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1341 1342 1343 1344 1345 1346 1347 1348
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        xen_vm_get_power_state(session, &state, vm);
        if (state == XEN_VM_POWER_STATE_RUNNING) {
            xen_vm_get_vcpus_max(session, &maxvcpu, vm);
        } else {
1349
            maxvcpu = xenapiConnectGetMaxVcpus(dom->conn, NULL);
1350 1351 1352 1353
        }
        xen_vm_set_free(vms);
        return (int)maxvcpu;
    }
1354 1355
    if (vms)
        xen_vm_set_free(vms);
1356 1357 1358 1359
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
    return -1;
}

1360 1361 1362 1363 1364 1365 1366
/*
 * xenapiDomainGetMaxVcpus
 *
 *
 * Returns maximum number of Vcpus on success or -1 in case of error
 */
static int
1367
xenapiDomainGetMaxVcpus(virDomainPtr dom)
1368 1369 1370 1371 1372
{
    return xenapiDomainGetVcpusFlags(dom, (VIR_DOMAIN_VCPU_LIVE |
                                           VIR_DOMAIN_VCPU_MAXIMUM));
}

1373
/*
1374
 * xenapiDomainGetXMLDesc
1375 1376 1377 1378 1379
 *
 *
 * Returns XML string of the domain configuration on success or -1 in case of error
 */
static char *
E
Eric Blake 已提交
1380
xenapiDomainGetXMLDesc(virDomainPtr dom, unsigned int flags)
1381
{
1382
    xen_vm vm = NULL;
1383
    xen_vm_set *vms;
1384
    xen_string_string_map *result = NULL;
1385 1386
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    virDomainDefPtr defPtr = NULL;
1387
    char *boot_policy = NULL;
1388 1389
    unsigned long memory = 0;
    int64_t dynamic_mem = 0;
1390 1391 1392
    char *val = NULL;
    struct xen_vif_set *vif_set = NULL;
    char *xml;
1393

1394
    /* Flags checked by virDomainDefFormat */
E
Eric Blake 已提交
1395

1396 1397
    if (!xen_vm_get_by_name_label(session, &vms, dom->name))
        return NULL;
1398
    if (vms->size != 1) {
1399 1400
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Domain name is not unique"));
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
        xen_vm_set_free(vms);
        return NULL;
    }
    if (VIR_ALLOC(defPtr) < 0) {
        xen_vm_set_free(vms);
        return NULL;
    }
    vm = vms->contents[0];
    defPtr->virtType = VIR_DOMAIN_VIRT_XEN;
    defPtr->id = dom->id;
    memcpy(defPtr->uuid, dom->uuid, VIR_UUID_BUFLEN);
1412 1413
    if (VIR_STRDUP(defPtr->name, dom->name) < 0)
        goto error;
1414
    xen_vm_get_hvm_boot_policy(session, &boot_policy, vm);
E
Eric Blake 已提交
1415
    if (STREQ(boot_policy, "BIOS order")) {
1416
        if (VIR_STRDUP(defPtr->os.type, "hvm") < 0) {
1417
            VIR_FREE(boot_policy);
1418
            goto error;
1419 1420 1421
        }
        xen_vm_get_hvm_boot_params(session, &result, vm);
        if (result != NULL) {
1422
            size_t i;
1423 1424 1425
            for (i = 0; i < result->size; i++) {
                if (STREQ(result->contents[i].key, "order")) {
                    int cnt = 0;
1426
                    while (result->contents[i].val[cnt] != '\0') {
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
                        defPtr->os.bootDevs[cnt] = map2LibvirtBootOrder(result->contents[i].val[cnt]);
                        cnt++;
                    }
                    defPtr->os.nBootDevs = cnt;
                    break;
                }
            }
            xen_string_string_map_free(result);
        }
        VIR_FREE(boot_policy);
    } else {
        char *value = NULL;
1439
        if (VIR_STRDUP(defPtr->os.type, "xen") < 0) {
1440
            VIR_FREE(boot_policy);
1441
            goto error;
1442
        }
1443 1444
        if (VIR_ALLOC(defPtr->os.loader) < 0 ||
            VIR_STRDUP(defPtr->os.loader->path, "pygrub") < 0) {
1445
            VIR_FREE(boot_policy);
1446
            goto error;
1447 1448 1449
        }
        xen_vm_get_pv_kernel(session, &value, vm);
        if (STRNEQ(value, "")) {
1450
            if (VIR_STRDUP(defPtr->os.kernel, value) < 0) {
1451 1452
                VIR_FREE(boot_policy);
                VIR_FREE(value);
1453
                goto error;
1454 1455 1456 1457 1458
            }
            VIR_FREE(value);
        }
        xen_vm_get_pv_ramdisk(session, &value, vm);
        if (STRNEQ(value, "")) {
1459
            if (VIR_STRDUP(defPtr->os.initrd, value) < 0) {
1460 1461
                VIR_FREE(boot_policy);
                VIR_FREE(value);
1462
                goto error;
1463 1464 1465 1466 1467
            }
            VIR_FREE(value);
        }
        xen_vm_get_pv_args(session, &value, vm);
        if (STRNEQ(value, "")) {
1468
            if (VIR_STRDUP(defPtr->os.cmdline, value) < 0) {
1469 1470
                VIR_FREE(boot_policy);
                VIR_FREE(value);
1471
                goto error;
1472 1473 1474 1475
            }
            VIR_FREE(value);
        }
        VIR_FREE(boot_policy);
1476 1477
        if (VIR_STRDUP(defPtr->os.bootloader, "pygrub") < 0)
            goto error;
1478 1479 1480
    }
    xen_vm_get_pv_bootloader_args(session, &val, vm);
    if (STRNEQ(val, "")) {
1481
        if (VIR_STRDUP(defPtr->os.bootloaderArgs, val) < 0) {
1482
            VIR_FREE(val);
1483
            goto error;
1484 1485 1486 1487
        }
        VIR_FREE(val);
    }
    memory = xenapiDomainGetMaxMemory(dom);
1488
    defPtr->mem.max_balloon = memory;
1489
    if (xen_vm_get_memory_dynamic_max(session, &dynamic_mem, vm)) {
1490
        defPtr->mem.cur_balloon = (unsigned long) (dynamic_mem / 1024);
1491
    } else {
1492
        defPtr->mem.cur_balloon = memory;
1493
    }
E
Eric Blake 已提交
1494
    defPtr->maxvcpus = defPtr->vcpus = xenapiDomainGetMaxVcpus(dom);
1495
    enum xen_on_normal_exit action;
1496
    if (xen_vm_get_actions_after_shutdown(session, &action, vm))
1497
        defPtr->onPoweroff = xenapiNormalExitEnum2virDomainLifecycle(action);
1498
    if (xen_vm_get_actions_after_reboot(session, &action, vm))
1499 1500
        defPtr->onReboot = xenapiNormalExitEnum2virDomainLifecycle(action);
    enum xen_on_crash_behaviour crash;
1501
    if (xen_vm_get_actions_after_crash(session, &crash, vm))
1502 1503 1504
        defPtr->onCrash = xenapiCrashExitEnum2virDomainLifecycle(action);
    xen_vm_get_platform(session, &result, vm);
    if (result != NULL) {
1505
        size_t i;
1506
        for (i = 0; i < result->size; i++) {
1507 1508
            if (STREQ(result->contents[i].val, "true")) {
                if (STREQ(result->contents[i].key, "acpi"))
J
Ján Tomko 已提交
1509
                    defPtr->features[VIR_DOMAIN_FEATURE_ACPI] = VIR_TRISTATE_SWITCH_ON;
1510
                else if (STREQ(result->contents[i].key, "apic"))
J
Ján Tomko 已提交
1511
                    defPtr->features[VIR_DOMAIN_FEATURE_APIC] = VIR_TRISTATE_SWITCH_ON;
1512
                else if (STREQ(result->contents[i].key, "pae"))
J
Ján Tomko 已提交
1513
                    defPtr->features[VIR_DOMAIN_FEATURE_PAE] = VIR_TRISTATE_SWITCH_ON;
1514
                else if (STREQ(result->contents[i].key, "hap"))
J
Ján Tomko 已提交
1515
                    defPtr->features[VIR_DOMAIN_FEATURE_HAP] = VIR_TRISTATE_SWITCH_ON;
1516
                else if (STREQ(result->contents[i].key, "viridian"))
J
Ján Tomko 已提交
1517
                    defPtr->features[VIR_DOMAIN_FEATURE_VIRIDIAN] = VIR_TRISTATE_SWITCH_ON;
1518 1519 1520 1521 1522 1523
            }
        }
        xen_string_string_map_free(result);
    }
    xen_vm_get_vifs(session, &vif_set, vm);
    if (vif_set) {
1524
        size_t i;
1525 1526 1527 1528 1529 1530 1531
        xen_vif vif;
        xen_vif_record *vif_rec = NULL;
        xen_network network;
        char *bridge = NULL;
        defPtr->nnets = vif_set->size;
        if (VIR_ALLOC_N(defPtr->nets, vif_set->size) < 0) {
            xen_vif_set_free(vif_set);
1532
            goto error;
1533 1534 1535 1536
        }
        for (i = 0; i < vif_set->size; i++) {
            if (VIR_ALLOC(defPtr->nets[i]) < 0) {
                xen_vif_set_free(vif_set);
1537
                goto error;
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
            }
            defPtr->nets[i]->type = VIR_DOMAIN_NET_TYPE_BRIDGE;
            vif = vif_set->contents[i];
            xen_vif_get_network(session, &network, vif);
            if (network != NULL) {
                xen_network_get_bridge(session, &bridge, network);
                if (bridge != NULL)
                    defPtr->nets[i]->data.bridge.brname = bridge;
                xen_network_free(network);
            }
            xen_vif_get_record(session, &vif_rec, vif);
            if (vif_rec != NULL) {
J
Jiri Denemark 已提交
1550 1551
                if (virMacAddrParse((const char *)vif_rec->mac,
                                    &defPtr->nets[i]->mac) < 0)
1552
                    xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
1553
                                              _("Unable to parse given mac address"));
1554 1555 1556 1557 1558
                xen_vif_record_free(vif_rec);
            }
        }
        xen_vif_set_free(vif_set);
    }
1559 1560
    if (vms)
        xen_vm_set_free(vms);
E
Eric Blake 已提交
1561
    xml = virDomainDefFormat(defPtr, flags);
1562 1563 1564
    virDomainDefFree(defPtr);
    return xml;

1565
 error:
1566 1567 1568 1569 1570 1571
    xen_vm_set_free(vms);
    virDomainDefFree(defPtr);
    return NULL;
}

/*
1572
 * xenapiConnectListDefinedDomains
1573 1574 1575 1576 1577
 *
 * list the defined but inactive domains, stores the pointers to the names in @names
 * Returns number of names provided in the array or -1 in case of error
 */
static int
1578 1579
xenapiConnectListDefinedDomains(virConnectPtr conn, char **const names,
                                int maxnames)
1580
{
1581 1582
    size_t i, j;
    int doms;
1583 1584 1585 1586
    xen_vm_set *result;
    xen_vm_record *record;
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
    xen_vm_get_all(session, &result);
1587
    memset(names, 0, sizeof(names[0])*maxnames);
1588
    if (result != NULL) {
1589
        for (i = 0, j = 0; i < result->size && j < maxnames; i++) {
1590 1591 1592 1593
            xen_vm_get_record(session, &record, result->contents[i]);
            if (record != NULL) {
                if (record->is_a_template == 0) {
                    char *usenames = NULL;
1594
                    if (VIR_STRDUP(usenames, record->name_label) < 0) {
1595 1596
                        xen_vm_record_free(record);
                        xen_vm_set_free(result);
1597 1598
                        for (i = 0; i < maxnames; i++)
                            VIR_FREE(names[j]);
1599 1600 1601 1602 1603 1604
                        return -1;
                    }
                    names[j++] = usenames;
                }
                xen_vm_record_free(record);
            } else {
1605 1606
                xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                          _("Couldn't get VM record"));
1607
                xen_vm_set_free(result);
1608 1609 1610
                for (i = 0; i < maxnames; i++)
                    VIR_FREE(names[j]);
                return -1;
1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
            }
        }
        doms = j;
        xen_vm_set_free(result);
        return doms;
    }
    xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
    return -1;
}

/*
1622
 * xenapiConnectNumOfDefinedDomains
1623 1624 1625 1626 1627
 *
 * Provides the number of defined but inactive domains
 * Returns number of domains found on success or -1 in case of error
 */
static int
1628
xenapiConnectNumOfDefinedDomains(virConnectPtr conn)
1629 1630 1631
{
    xen_vm_set *result;
    xen_vm_record *record;
1632 1633
    int DomNum = 0;
    size_t i;
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
    xen_vm_get_all(session, &result);
    if (result != NULL) {
        for (i = 0; i < result->size; i++) {
            xen_vm_get_record(session, &record, result->contents[i]);
            if (record == NULL && !session->ok) {
                xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
                xen_vm_set_free(result);
                return -1;
            }
            if (record->is_a_template == 0)
                DomNum++;
            xen_vm_record_free(record);
        }
        xen_vm_set_free(result);
        return DomNum;
    }
    xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
    return -1;
}

/*
1656
 * xenapiDomainCreateWithFlags
1657 1658 1659 1660 1661
 *
 * starts a VM
 * Return 0 on success or -1 in case of error
 */
static int
1662
xenapiDomainCreateWithFlags(virDomainPtr dom, unsigned int flags)
1663 1664 1665 1666
{
    xen_vm_set *vms;
    xen_vm vm;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
1667
    int64_t domid = -1;
1668 1669 1670

    virCheckFlags(0, -1);

1671 1672
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1673 1674
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1675 1676 1677 1678 1679 1680 1681 1682 1683
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        if (!xen_vm_start(session, vm, false, false)) {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            xen_vm_set_free(vms);
            return -1;
        }
1684 1685 1686 1687

        xen_vm_get_domid(session, &domid, vm);
        dom->id = domid;

1688 1689
        xen_vm_set_free(vms);
    } else {
1690 1691
        if (vms)
            xen_vm_set_free(vms);
1692 1693 1694 1695 1696 1697
        xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
        return -1;
    }
    return 0;
}

1698 1699 1700 1701 1702 1703 1704
/*
 * xenapiDomainCreate
 *
 * starts a VM
 * Return 0 on success or -1 in case of error
 */
static int
1705
xenapiDomainCreate(virDomainPtr dom)
1706 1707 1708 1709
{
    return xenapiDomainCreateWithFlags(dom, 0);
}

1710 1711 1712 1713 1714 1715 1716
/*
 * xenapiDomainDefineXML
 *
 * Defines a domain from the given XML but does not start it
 * Returns 0 on success or -1 in case of error
 */
static virDomainPtr
1717
xenapiDomainDefineXMLFlags(virConnectPtr conn, const char *xml, unsigned int flags)
1718
{
1719
    struct _xenapiPrivate *priv = conn->privateData;
1720 1721 1722
    xen_vm_record *record = NULL;
    xen_vm vm = NULL;
    virDomainPtr domP = NULL;
1723 1724 1725

    virCheckFlags(0, NULL);

1726
    if (!priv->caps)
1727
        return NULL;
1728 1729
    virDomainDefPtr defPtr = virDomainDefParseString(xml,
                                                     priv->caps, priv->xmlopt,
1730
                                                     1 << VIR_DOMAIN_VIRT_XEN,
1731
                                                     VIR_DOMAIN_DEF_PARSE_INACTIVE);
1732 1733
    if (!defPtr)
        return NULL;
M
Matthias Bolte 已提交
1734

1735
    if (createVMRecordFromXml(conn, defPtr, &record, &vm) != 0) {
1736
        if (!priv->session->ok)
1737 1738
            xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR, NULL);
        else
1739 1740
            xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Couldn't get VM information from XML"));
1741 1742 1743 1744 1745
        virDomainDefFree(defPtr);
        return NULL;
    }
    if (record != NULL) {
        unsigned char raw_uuid[VIR_UUID_BUFLEN];
1746
        ignore_value(virUUIDParse(record->uuid, raw_uuid));
1747
        domP = virGetDomain(conn, record->name_label, raw_uuid);
1748
        if (!domP && !priv->session->ok)
1749 1750 1751 1752 1753 1754 1755 1756 1757
            xenapiSessionErrorHandler(conn, VIR_ERR_NO_DOMAIN, NULL);
        xen_vm_record_free(record);
    }
    else if (vm != NULL)
        xen_vm_free(vm);
    virDomainDefFree(defPtr);
    return domP;
}

1758 1759 1760 1761 1762 1763
static virDomainPtr
xenapiDomainDefineXML(virConnectPtr conn, const char *xml)
{
    return xenapiDomainDefineXMLFlags(conn, xml, 0);
}

1764
/*
1765
 * xenapiDomainUndefineFlags
1766 1767 1768 1769 1770
 *
 * destroys a domain
 * Return 0 on success or -1 in case of error
 */
static int
1771
xenapiDomainUndefineFlags(virDomainPtr dom, unsigned int flags)
1772 1773 1774 1775
{
    struct xen_vm_set *vms;
    xen_vm vm;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
1776 1777
    virCheckFlags(0, -1);

1778 1779
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1780 1781
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        if (!xen_vm_destroy(session, vm)) {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            xen_vm_set_free(vms);
            return -1;
        }
        xen_vm_set_free(vms);
        return 0;
    }
1794 1795
    if (vms)
        xen_vm_set_free(vms);
1796
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
1797 1798 1799
    return -1;
}

1800 1801 1802 1803 1804 1805
static int
xenapiDomainUndefine(virDomainPtr dom)
{
    return xenapiDomainUndefineFlags(dom, 0);
}

1806 1807 1808 1809 1810 1811 1812 1813
/*
 * xenapiDomainGetAutostart
 *
 * Provides a boolean value indicating whether the domain configured
 * to be automatically started when the host machine boots
 * Return 0 on success or -1 in case of error
 */
static int
1814
xenapiDomainGetAutostart(virDomainPtr dom, int *autostart)
1815
{
1816 1817
    size_t i;
    int flag = 0;
1818 1819 1820 1821 1822 1823
    xen_vm_set *vms;
    xen_vm vm;
    xen_string_string_map *result;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1824 1825
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        if (!xen_vm_get_other_config(session, &result, vm)) {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            xen_vm_set_free(vms);
            return -1;
        }
        for (i = 0; i < result->size; i++) {
            if (STREQ(result->contents[i].key, "auto_poweron")) {
                flag = 1;
                if (STREQ(result->contents[i].val, "true"))
                    *autostart = 1;
                else
                    *autostart = 0;
                break;
            }
        }
        xen_vm_set_free(vms);
        xen_string_string_map_free(result);
1847 1848
        if (flag == 0)
            return -1;
1849 1850
        return 0;
    }
1851 1852
    if (vms)
        xen_vm_set_free(vms);
1853
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863
    return -1;
}

/*
 * xenapiDomainSetAutostart
 *
 * Configure the domain to be automatically started when the host machine boots
 * Return 0 on success or -1 in case of error
 */
static int
1864
xenapiDomainSetAutostart(virDomainPtr dom, int autostart)
1865 1866 1867 1868 1869 1870 1871
{
    xen_vm_set *vms;
    xen_vm vm;
    char *value;
    xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session;
    if (xen_vm_get_by_name_label(session, &vms, dom->name) && vms->size > 0) {
        if (vms->size != 1) {
1872 1873
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Domain name is not unique"));
1874 1875 1876 1877 1878
            xen_vm_set_free(vms);
            return -1;
        }
        vm = vms->contents[0];
        xen_vm_remove_from_other_config(session, vm, (char *)"auto_poweron");
1879
        if (autostart == 1)
1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
            value = (char *)"true";
        else
            value = (char *)"false";
        if (!xen_vm_add_to_other_config(session, vm, (char *)"auto_poweron", value)) {
            xenapiSessionErrorHandler(dom->conn, VIR_ERR_INTERNAL_ERROR, NULL);
            xen_vm_set_free(vms);
            return -1;
        }
        xen_vm_set_free(vms);
        return 0;
    }
1891 1892
    if (vms)
        xen_vm_set_free(vms);
1893
    xenapiSessionErrorHandler(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
1894 1895 1896 1897
    return -1;
}

static char *
1898
xenapiDomainGetSchedulerType(virDomainPtr dom ATTRIBUTE_UNUSED, int *nparams)
1899 1900
{
    char *result = NULL;
1901 1902 1903

    if (nparams)
        *nparams = 0;
1904
    ignore_value(VIR_STRDUP(result, "credit"));
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
    return result;
}

/*
 * xenapiNodeGetFreeMemory
 *
 * provides the free memory available on the Node
 * Returns memory size on success or 0 in case of error
 */
static unsigned long long
1915
xenapiNodeGetFreeMemory(virConnectPtr conn)
1916 1917 1918 1919 1920 1921 1922
{
    xen_host_metrics_set *xen_met_set;
    unsigned long long freeMem = 0;
    xen_session *session = ((struct _xenapiPrivate *)(conn->privateData))->session;
    xen_host_metrics_get_all(session, &xen_met_set);
    if (xen_met_set != NULL) {
        if (!xen_host_metrics_get_memory_free(session, (int64_t *)&freeMem, xen_met_set->contents[0])) {
1923 1924
            xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                      _("Couldn't get host metrics - memory information"));
1925 1926 1927 1928
            freeMem = 0;
        }
        xen_host_metrics_set_free(xen_met_set);
    } else {
1929 1930
        xenapiSessionErrorHandler(conn, VIR_ERR_INTERNAL_ERROR,
                                  _("Couldn't get host metrics"));
1931 1932 1933 1934
    }
    return freeMem;
}

1935 1936 1937 1938 1939 1940
static int
xenapiDomainIsUpdated(virDomainPtr dom ATTRIBUTE_UNUSED)
{
    return 0;
}

1941 1942 1943 1944 1945 1946 1947
/*
 * xenapiNodeGetCellsFreeMemory
 *
 *
 * Returns the number of entries filled in freeMems, or -1 in case of error.
 */
static int
1948 1949
xenapiNodeGetCellsFreeMemory(virConnectPtr conn, unsigned long long *freeMems,
                             int startCell, int maxCells)
1950 1951
{
    if (maxCells > 1 && startCell > 0) {
1952
        xenapiSessionErrorHandler(conn, VIR_ERR_NO_SUPPORT, NULL);
1953 1954 1955 1956 1957 1958 1959
        return -1;
    } else {
        freeMems[0] = xenapiNodeGetFreeMemory(conn);
        return 1;
    }
}

1960
static int
1961
xenapiConnectIsAlive(virConnectPtr conn)
1962 1963 1964 1965 1966 1967 1968 1969 1970
{
    struct _xenapiPrivate *priv = conn->privateData;

    if (priv->session && priv->session->ok)
        return 1;
    else
        return 0;
}

1971
/* The interface which we export upwards to libvirt.c. */
1972
static virHypervisorDriver xenapiDriver = {
1973 1974
    .no = VIR_DRV_XENAPI,
    .name = "XenAPI",
1975 1976 1977 1978 1979 1980 1981
    .connectOpen = xenapiConnectOpen, /* 0.8.0 */
    .connectClose = xenapiConnectClose, /* 0.8.0 */
    .connectSupportsFeature = xenapiConnectSupportsFeature, /* 0.8.0 */
    .connectGetType = xenapiConnectGetType, /* 0.8.0 */
    .connectGetVersion = xenapiConnectGetVersion, /* 0.8.0 */
    .connectGetHostname = xenapiConnectGetHostname, /* 0.8.0 */
    .connectGetMaxVcpus = xenapiConnectGetMaxVcpus, /* 0.8.0 */
1982
    .nodeGetInfo = xenapiNodeGetInfo, /* 0.8.0 */
1983 1984 1985
    .connectGetCapabilities = xenapiConnectGetCapabilities, /* 0.8.0 */
    .connectListDomains = xenapiConnectListDomains, /* 0.8.0 */
    .connectNumOfDomains = xenapiConnectNumOfDomains, /* 0.8.0 */
1986 1987 1988 1989 1990 1991 1992
    .domainCreateXML = xenapiDomainCreateXML, /* 0.8.0 */
    .domainLookupByID = xenapiDomainLookupByID, /* 0.8.0 */
    .domainLookupByUUID = xenapiDomainLookupByUUID, /* 0.8.0 */
    .domainLookupByName = xenapiDomainLookupByName, /* 0.8.0 */
    .domainSuspend = xenapiDomainSuspend, /* 0.8.0 */
    .domainResume = xenapiDomainResume, /* 0.8.0 */
    .domainShutdown = xenapiDomainShutdown, /* 0.8.0 */
1993
    .domainShutdownFlags = xenapiDomainShutdownFlags, /* 0.9.10 */
1994 1995
    .domainReboot = xenapiDomainReboot, /* 0.8.0 */
    .domainDestroy = xenapiDomainDestroy, /* 0.8.0 */
1996
    .domainDestroyFlags = xenapiDomainDestroyFlags, /* 0.9.4 */
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008
    .domainGetOSType = xenapiDomainGetOSType, /* 0.8.0 */
    .domainGetMaxMemory = xenapiDomainGetMaxMemory, /* 0.8.0 */
    .domainSetMaxMemory = xenapiDomainSetMaxMemory, /* 0.8.0 */
    .domainGetInfo = xenapiDomainGetInfo, /* 0.8.0 */
    .domainGetState = xenapiDomainGetState, /* 0.9.2 */
    .domainSetVcpus = xenapiDomainSetVcpus, /* 0.8.0 */
    .domainSetVcpusFlags = xenapiDomainSetVcpusFlags, /* 0.8.5 */
    .domainGetVcpusFlags = xenapiDomainGetVcpusFlags, /* 0.8.5 */
    .domainPinVcpu = xenapiDomainPinVcpu, /* 0.8.0 */
    .domainGetVcpus = xenapiDomainGetVcpus, /* 0.8.0 */
    .domainGetMaxVcpus = xenapiDomainGetMaxVcpus, /* 0.8.0 */
    .domainGetXMLDesc = xenapiDomainGetXMLDesc, /* 0.8.0 */
2009 2010
    .connectListDefinedDomains = xenapiConnectListDefinedDomains, /* 0.8.0 */
    .connectNumOfDefinedDomains = xenapiConnectNumOfDefinedDomains, /* 0.8.0 */
2011 2012 2013
    .domainCreate = xenapiDomainCreate, /* 0.8.0 */
    .domainCreateWithFlags = xenapiDomainCreateWithFlags, /* 0.8.2 */
    .domainDefineXML = xenapiDomainDefineXML, /* 0.8.0 */
2014
    .domainDefineXMLFlags = xenapiDomainDefineXMLFlags, /* 1.2.12 */
2015
    .domainUndefine = xenapiDomainUndefine, /* 0.8.0 */
2016
    .domainUndefineFlags = xenapiDomainUndefineFlags, /* 0.9.5 */
2017 2018 2019 2020 2021 2022
    .domainGetAutostart = xenapiDomainGetAutostart, /* 0.8.0 */
    .domainSetAutostart = xenapiDomainSetAutostart, /* 0.8.0 */
    .domainGetSchedulerType = xenapiDomainGetSchedulerType, /* 0.8.0 */
    .nodeGetCellsFreeMemory = xenapiNodeGetCellsFreeMemory, /* 0.8.0 */
    .nodeGetFreeMemory = xenapiNodeGetFreeMemory, /* 0.8.0 */
    .domainIsUpdated = xenapiDomainIsUpdated, /* 0.8.6 */
2023
    .connectIsAlive = xenapiConnectIsAlive, /* 0.9.8 */
2024 2025 2026 2027 2028 2029 2030 2031 2032
};

/**
 * xenapiRegister:
 *
 *
 * Returns the driver priority or -1 in case of error.
 */
int
2033
xenapiRegister(void)
2034
{
2035
    return virRegisterHypervisorDriver(&xenapiDriver);
2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
}

/*
 * write_func
 * used by curl to read data from the server
 */
size_t
write_func(void *ptr, size_t size, size_t nmemb, void *comms_)
{
    xen_comms *comms = comms_;
    size_t n = size * nmemb;
J
Jiri Denemark 已提交
2047 2048
#ifdef PRINT_XML
    printf("\n\n---Result from server -----------------------\n");
E
Eric Blake 已提交
2049
    printf("%s\n", (char*) ptr);
J
Jiri Denemark 已提交
2050 2051
    fflush(stdout);
#endif
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063
    return (size_t) (comms->func(ptr, n, comms->handle) ? n : 0);
}

/*
 * call_func
 * sets curl options, used with xen_session_login_with_password
 */
int
call_func(const void *data, size_t len, void *user_handle,
          void *result_handle, xen_result_func result_func)
{
    struct _xenapiPrivate *priv = (struct _xenapiPrivate *)user_handle;
J
Jiri Denemark 已提交
2064 2065
#ifdef PRINT_XML
    printf("\n\n---Data to server: -----------------------\n");
E
Eric Blake 已提交
2066
    printf("%s\n", (char*) data);
J
Jiri Denemark 已提交
2067 2068
    fflush(stdout);
#endif
2069
    CURL *curl = curl_easy_init();
2070
    if (!curl)
2071 2072 2073 2074 2075 2076 2077
      return -1;
    xen_comms comms = {
     .func = result_func,
     .handle = result_handle
    };
    curl_easy_setopt(curl, CURLOPT_URL, priv->url);
    curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1);
J
Jiri Denemark 已提交
2078 2079 2080
#ifdef CURLOPT_MUTE
    curl_easy_setopt(curl, CURLOPT_MUTE, 1);
#endif
2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091
    curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &write_func);
    curl_easy_setopt(curl, CURLOPT_WRITEDATA, &comms);
    curl_easy_setopt(curl, CURLOPT_POST, 1);
    curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
    curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, len);
    curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, priv->noVerify?0:1);
    curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, priv->noVerify?0:2);
    CURLcode result = curl_easy_perform(curl);
    curl_easy_cleanup(curl);
    return result;
}