You need to sign in or sign up before continuing.
xen_internal.c 19.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * xen_internal.c: direct access to Xen hypervisor level
 *
 * Copyright (C) 2005 Red Hat, Inc.
 *
 * See COPYING.LIB for the License of this software
 *
 * Daniel Veillard <veillard@redhat.com>
 */

#include <stdio.h>
#include <string.h>
13
/* required for uint8_t, uint32_t, etc ... */
14 15 16 17 18 19 20 21
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/ioctl.h>

22 23 24
#include <stdint.h>

/* required for dom0_getdomaininfo_t */
25
#include <xen/dom0_ops.h>
26
#include <xen/version.h>
27
#include <xen/xen.h>
28
#include <xen/linux/privcmd.h>
29

30
/* #ifndef __LINUX_PUBLIC_PRIVCMD_H__ */
31 32 33 34 35 36 37
typedef struct old_hypercall_struct {
    unsigned long op;
    unsigned long arg[5];
} old_hypercall_t;
#define XEN_OLD_IOCTL_HYPERCALL_CMD \
        _IOC(_IOC_NONE, 'P', 0, sizeof(old_hypercall_t))

38 39
typedef struct privcmd_hypercall hypercall_t;
#define XEN_IOCTL_HYPERCALL_CMD IOCTL_PRIVCMD_HYPERCALL
40

41 42 43 44
static int xen_ioctl_hypercall_cmd = 0;
static int old_hypervisor = 0;
static int initialized = 0;
static int hv_version = 0;
45 46

#include "internal.h"
47
#include "driver.h"
48 49 50 51
#include "xen_internal.h"

#define XEN_HYPERVISOR_SOCKET "/proc/xen/privcmd"

52
static const char * xenHypervisorGetType(virConnectPtr conn);
53
static unsigned long xenHypervisorGetMaxMemory(virDomainPtr domain);
54
static int xenHypervisorInit(void);
55

56 57
static virDriver xenHypervisorDriver = {
    "Xen",
58 59 60
    (DOM0_INTERFACE_VERSION >> 24) * 1000000 +
    ((DOM0_INTERFACE_VERSION >> 16) & 0xFF) * 1000 +
    (DOM0_INTERFACE_VERSION & 0xFFFF),
61
    xenHypervisorInit, /* init */
62 63
    xenHypervisorOpen, /* open */
    xenHypervisorClose, /* close */
64
    xenHypervisorGetType, /* type */
65
    xenHypervisorGetVersion, /* version */
66
    NULL, /* nodeGetInfo */
67 68
    xenHypervisorListDomains, /* listDomains */
    xenHypervisorNumOfDomains, /* numOfDomains */
69 70 71 72 73 74 75
    NULL, /* domainCreateLinux */
    NULL, /* domainLookupByID */
    NULL, /* domainLookupByUUID */
    NULL, /* domainLookupByName */
    xenHypervisorPauseDomain, /* domainSuspend */
    xenHypervisorResumeDomain, /* domainResume */
    NULL, /* domainShutdown */
76
    NULL, /* domainReboot */
77 78 79 80 81 82
    xenHypervisorDestroyDomain, /* domainDestroy */
    NULL, /* domainFree */
    NULL, /* domainGetName */
    NULL, /* domainGetID */
    NULL, /* domainGetUUID */
    NULL, /* domainGetOSType */
83
    xenHypervisorGetMaxMemory, /* domainGetMaxMemory */
84
    xenHypervisorSetMaxMemory, /* domainSetMaxMemory */
85
    NULL, /* domainSetMemory */
86 87 88 89 90
    xenHypervisorGetDomainInfo, /* domainGetInfo */
    NULL, /* domainSave */
    NULL /* domainRestore */
};

91 92 93 94 95 96 97 98 99
/**
 * virXenError:
 * @conn: the connection if available
 * @error: the error number
 * @info: extra information string
 *
 * Handle an error at the xend daemon interface
 */
static void
100 101
virXenError(virErrorNumber error, const char *info, int value)
{
102
    const char *errmsg;
103

104 105 106 107 108
    if (error == VIR_ERR_OK)
        return;

    errmsg = __virErrorMsg(error, info);
    __virRaiseError(NULL, NULL, VIR_FROM_XEN, error, VIR_ERR_ERROR,
109
                    errmsg, info, NULL, value, 0, errmsg, info, value);
110 111
}

112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
/**
 * xenHypervisorInit:
 *
 * Initialize the hypervisor layer. Try to detect the kind of interface
 * used i.e. pre or post changeset 10277
 */
int xenHypervisorInit(void)
{
    int fd, ret, cmd;
    hypercall_t hc;
    old_hypercall_t old_hc;

    if (initialized) {
        if (old_hypervisor == -1)
	    return(-1);
	return(0);
    }
    initialized = 1;

    ret = open(XEN_HYPERVISOR_SOCKET, O_RDWR);
    if (ret < 0) {
	old_hypervisor = -1;
        return (-1);
    }
    fd = ret;

    hc.op = __HYPERVISOR_xen_version;
    hc.arg[0] = (unsigned long) XENVER_version;
    hc.arg[1] = 0;

    cmd = IOCTL_PRIVCMD_HYPERCALL;
    ret = ioctl(fd, cmd, (unsigned long) &hc);

    if ((ret != -1) && (ret != 0)) {
        fprintf(stderr, "Using new hypervisor call: %X\n", ret);
	hv_version = ret;
	xen_ioctl_hypercall_cmd = cmd;
        old_hypervisor = 0;
	goto done;
    }
    
    old_hc.op = __HYPERVISOR_xen_version;
    old_hc.arg[0] = (unsigned long) XENVER_version;
    old_hc.arg[1] = 0;
    cmd = _IOC(_IOC_NONE, 'P', 0, sizeof(old_hypercall_t));
    ret = ioctl(fd, cmd, (unsigned long) &old_hc);
    if ((ret != -1) && (ret != 0)) {
        fprintf(stderr, "Using old hypervisor call: %X\n", ret);
	hv_version = ret;
	xen_ioctl_hypercall_cmd = cmd;
        old_hypervisor = 1;
	goto done;
    }

    old_hypervisor = -1;
    virXenError(VIR_ERR_XEN_CALL, " ioctl ", IOCTL_PRIVCMD_HYPERCALL);
    close(fd);
    return(-1);

done:
    close(fd);
    return(0);

}

/**
 * xenHypervisorRegister:
 *
 * Registers the xenHypervisor driver
 */
void xenHypervisorRegister(void)
{
    if (initialized == 0)
        xenHypervisorInit();

    virRegisterDriver(&xenHypervisorDriver);
}

190 191
/**
 * xenHypervisorOpen:
192 193 194
 * @conn: pointer to the connection block
 * @name: URL for the target, NULL for local
 * @flags: combination of virDrvOpenFlag(s)
195 196 197
 *
 * Connects to the Xen hypervisor.
 *
198
 * Returns 0 or -1 in case of error.
199
 */
200
int
201
xenHypervisorOpen(virConnectPtr conn, const char *name, int flags)
202
{
203 204
    int ret;

205 206 207
    if (initialized == 0)
        xenHypervisorInit();

208
    if ((name != NULL) && (strcasecmp(name, "xen")))
209 210 211 212
        return(-1);

    conn->handle = -1;

213
    ret = open(XEN_HYPERVISOR_SOCKET, O_RDWR);
214
    if (ret < 0) {
215
        if (!(flags & VIR_DRV_OPEN_QUIET))
216 217
            virXenError(VIR_ERR_NO_XEN, XEN_HYPERVISOR_SOCKET, 0);
        return (-1);
218
    }
219
    conn->handle = ret;
220

221
    return(0);
222 223 224 225
}

/**
 * xenHypervisorClose:
226
 * @conn: pointer to the connection block
227 228 229 230 231
 *
 * Close the connection to the Xen hypervisor.
 *
 * Returns 0 in case of success or -1 in case of error.
 */
232
int
233
xenHypervisorClose(virConnectPtr conn)
234
{
235 236
    int ret;

237
    if ((conn == NULL) || (conn->handle < 0))
238
        return (-1);
239

240
    ret = close(conn->handle);
241
    if (ret < 0)
242 243
        return (-1);
    return (0);
244 245
}

246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
/**
 * xenHypervisorDoOldOp:
 * @handle: the handle to the Xen hypervisor
 * @op: pointer to the hyperviros operation structure
 *
 * Do an hypervisor operation though the old interface,
 * this leads to an hypervisor call through ioctl.
 *
 * Returns 0 in case of success and -1 in case of error.
 */
static int
xenHypervisorDoOldOp(int handle, dom0_op_t * op)
{
    int ret;
    old_hypercall_t hc;

    memset(&hc, 0, sizeof(hc));
    op->interface_version = hv_version << 8;
    hc.op = __HYPERVISOR_dom0_op;
    hc.arg[0] = (unsigned long) op;

    if (mlock(op, sizeof(dom0_op_t)) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " locking", sizeof(dom0_op_t));
        return (-1);
    }

    ret = ioctl(handle, xen_ioctl_hypercall_cmd, (unsigned long) &hc);
    if (ret < 0) {
        virXenError(VIR_ERR_XEN_CALL, " ioctl ", xen_ioctl_hypercall_cmd);
    }

    if (munlock(op, sizeof(dom0_op_t)) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " releasing", sizeof(dom0_op_t));
        ret = -1;
    }

    if (ret < 0)
        return (-1);

    return (0);
}
287 288 289 290 291 292 293 294 295 296
/**
 * xenHypervisorDoOp:
 * @handle: the handle to the Xen hypervisor
 * @op: pointer to the hyperviros operation structure
 *
 * Do an hypervisor operation, this leads to an hypervisor call through ioctl.
 *
 * Returns 0 in case of success and -1 in case of error.
 */
static int
297 298
xenHypervisorDoOp(int handle, dom0_op_t * op)
{
299 300 301
    int ret;
    hypercall_t hc;

302 303 304 305
    if (old_hypervisor)
        return(xenHypervisorDoOldOp(handle, op));
 
    memset(&hc, 0, sizeof(hc));
306 307
    op->interface_version = DOM0_INTERFACE_VERSION;
    hc.op = __HYPERVISOR_dom0_op;
308
    hc.arg[0] = (unsigned long) op;
309

310 311
    if (mlock(op, sizeof(dom0_op_t)) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " locking", sizeof(dom0_op_t));
312
        return (-1);
313
    }
314

315
    ret = ioctl(handle, xen_ioctl_hypercall_cmd, (unsigned long) &hc);
316
    if (ret < 0) {
317
        virXenError(VIR_ERR_XEN_CALL, " ioctl ", xen_ioctl_hypercall_cmd);
318
    }
319

320 321
    if (munlock(op, sizeof(dom0_op_t)) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " releasing", sizeof(dom0_op_t));
322
        ret = -1;
323
    }
324 325

    if (ret < 0)
326 327 328
        return (-1);

    return (0);
329 330
}

331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
/**
 * xenHypervisorGetType:
 * @conn: pointer to the Xen Hypervisor block
 *
 * Get the version level of the Hypervisor running.
 *
 * Returns -1 in case of error, 0 otherwise. if the version can't be
 *    extracted by lack of capacities returns 0 and @hvVer is 0, otherwise
 *    @hvVer value is major * 1,000,000 + minor * 1,000 + release
 */
static const char *
xenHypervisorGetType(virConnectPtr conn)
{
    if (!VIR_IS_CONNECT(conn)) {
        virXenError(VIR_ERR_INVALID_CONN, __FUNCTION__, 0);
        return (NULL);
    }
    return("Xen");
}

351 352
/**
 * xenHypervisorGetVersion:
353 354
 * @conn: pointer to the connection block
 * @hvVer: where to store the version
355 356 357
 *
 * Call the hypervisor to extracts his own internal API version
 *
358
 * Returns 0 in case of success, -1 in case of error
359
 */
360 361
int
xenHypervisorGetVersion(virConnectPtr conn, unsigned long *hvVer)
362
{
363 364
    if ((conn == NULL) || (conn->handle < 0) || (hvVer == NULL))
        return (-1);
365
    *hvVer = (hv_version >> 16) * 1000000 + (hv_version & 0xFFFF) * 1000;
366
    return(0);
367 368
}

369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
/**
 * xenHypervisorNumOfDomains:
 * @conn: pointer to the connection block
 *
 * Provides the number of active domains.
 *
 * Returns the number of domain found or -1 in case of error
 */
int
xenHypervisorNumOfDomains(virConnectPtr conn)
{
    dom0_op_t op;
    dom0_getdomaininfo_t *dominfos;
    int ret, nbids;
    static int last_maxids = 2;
    int maxids = last_maxids;

    if ((conn == NULL) || (conn->handle < 0))
        return (-1);

retry:
    dominfos = malloc(maxids * sizeof(dom0_getdomaininfo_t));
    if (dominfos == NULL) {
        virXenError(VIR_ERR_NO_MEMORY, "failed to allocate %d domain info",
	            maxids);
	return(-1);
    }
    
    memset(dominfos, 0, sizeof(dom0_getdomaininfo_t) * maxids);

    if (mlock(dominfos, sizeof(dom0_getdomaininfo_t) * maxids) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " locking",
                    sizeof(dom0_getdomaininfo_t) * maxids);
	free(dominfos);
        return (-1);
    }

    op.cmd = DOM0_GETDOMAININFOLIST;
    op.u.getdomaininfolist.first_domain = (domid_t) 0;
    op.u.getdomaininfolist.max_domains = maxids;
    op.u.getdomaininfolist.buffer = dominfos;
    op.u.getdomaininfolist.num_domains = maxids;

    ret = xenHypervisorDoOp(conn->handle, &op);

    if (munlock(dominfos, sizeof(dom0_getdomaininfo_t) * maxids) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " release",
                    sizeof(dom0_getdomaininfo_t) * maxids);
        ret = -1;
    }

    free(dominfos);

    if (ret < 0)
        return (-1);

    nbids = op.u.getdomaininfolist.num_domains;
    if (nbids == maxids) {
        last_maxids *= 2;
        maxids *= 2;
	goto retry;
    }
    if ((nbids < 0) || (nbids > maxids))
        return(-1);
    return(nbids);
}

/**
 * xenHypervisorListDomains:
 * @conn: pointer to the connection block
 * @ids: array to collect the list of IDs of active domains
 * @maxids: size of @ids
 *
 * Collect the list of active domains, and store their ID in @maxids
 *
 * Returns the number of domain found or -1 in case of error
 */
int
xenHypervisorListDomains(virConnectPtr conn, int *ids, int maxids)
{
    dom0_op_t op;
    dom0_getdomaininfo_t *dominfos;
    int ret, nbids, i;

    if ((conn == NULL) || (conn->handle < 0) ||
        (ids == NULL) || (maxids < 1))
        return (-1);

    dominfos = malloc(maxids * sizeof(dom0_getdomaininfo_t));
    if (dominfos == NULL) {
        virXenError(VIR_ERR_NO_MEMORY, "failed to allocate %d domain info",
	            maxids);
	return(-1);
    }
    
    memset(dominfos, 0, sizeof(dom0_getdomaininfo_t) * maxids);
    memset(ids, 0, maxids * sizeof(int));

    if (mlock(dominfos, sizeof(dom0_getdomaininfo_t) * maxids) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " locking",
                    sizeof(dom0_getdomaininfo_t) * maxids);
	free(dominfos);
        return (-1);
    }

    op.cmd = DOM0_GETDOMAININFOLIST;
    op.u.getdomaininfolist.first_domain = (domid_t) 0;
    op.u.getdomaininfolist.max_domains = maxids;
    op.u.getdomaininfolist.buffer = dominfos;
    op.u.getdomaininfolist.num_domains = maxids;

    ret = xenHypervisorDoOp(conn->handle, &op);

    if (munlock(dominfos, sizeof(dom0_getdomaininfo_t) * maxids) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " release",
                    sizeof(dom0_getdomaininfo_t) * maxids);
        ret = -1;
    }

    if (ret < 0) {
	free(dominfos);
        return (-1);
    }

    nbids = op.u.getdomaininfolist.num_domains;
    if ((nbids < 0) || (nbids > maxids)) {
	free(dominfos);
        return(-1);
    }

    for (i = 0;i < nbids;i++) {
        ids[i] = dominfos[i].domain;
    }

    free(dominfos);
    return (nbids);
}

507 508 509 510 511 512 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 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
/**
 * xenHypervisorGetMaxMemory:
 * @domain: a domain object or NULL
 * 
 * Retrieve the maximum amount of physical memory allocated to a
 * domain. If domain is NULL, then this get the amount of memory reserved
 * to Domain0 i.e. the domain where the application runs.
 *
 * Returns the memory size in kilobytes or 0 in case of error.
 */
static unsigned long
xenHypervisorGetMaxMemory(virDomainPtr domain)
{
    dom0_op_t op;
    dom0_getdomaininfo_t dominfo;
    int ret;

    if ((domain == NULL) || (domain->conn == NULL) ||
        (domain->conn->handle < 0))
        return (0);

    memset(&dominfo, 0, sizeof(dom0_getdomaininfo_t));

    if (mlock(&dominfo, sizeof(dom0_getdomaininfo_t)) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " locking",
                    sizeof(dom0_getdomaininfo_t));
        return (0);
    }

    op.cmd = DOM0_GETDOMAININFOLIST;
    op.u.getdomaininfolist.first_domain = (domid_t) domain->handle;
    op.u.getdomaininfolist.max_domains = 1;
    op.u.getdomaininfolist.buffer = &dominfo;
    op.u.getdomaininfolist.num_domains = 1;
    dominfo.domain = domain->handle;

    ret = xenHypervisorDoOp(domain->conn->handle, &op);

    if (munlock(&dominfo, sizeof(dom0_getdomaininfo_t)) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " release",
                    sizeof(dom0_getdomaininfo_t));
        ret = -1;
    }

    if (ret < 0)
        return (0);

    return((unsigned long) dominfo.max_pages * 4);
}

557 558
/**
 * xenHypervisorGetDomainInfo:
559
 * @domain: pointer to the domain block
560 561 562 563 564 565 566
 * @info: the place where informations should be stored
 *
 * Do an hypervisor call to get the related set of domain informations.
 *
 * Returns 0 in case of success, -1 in case of error.
 */
int
567
xenHypervisorGetDomainInfo(virDomainPtr domain, virDomainInfoPtr info)
568
{
569
    dom0_op_t op;
570
    dom0_getdomaininfo_t dominfo;
571 572
    int ret;

573 574
    if ((domain == NULL) || (domain->conn == NULL) ||
        (domain->conn->handle < 0) || (info == NULL))
575
        return (-1);
576

577 578
    memset(info, 0, sizeof(virDomainInfo));
    memset(&dominfo, 0, sizeof(dom0_getdomaininfo_t));
579

580
    if (mlock(&dominfo, sizeof(dom0_getdomaininfo_t)) < 0) {
581 582 583
        virXenError(VIR_ERR_XEN_CALL, " locking",
                    sizeof(dom0_getdomaininfo_t));
        return (-1);
584
    }
585 586

    op.cmd = DOM0_GETDOMAININFOLIST;
587
    op.u.getdomaininfolist.first_domain = (domid_t) domain->handle;
588
    op.u.getdomaininfolist.max_domains = 1;
589
    op.u.getdomaininfolist.buffer = &dominfo;
590
    op.u.getdomaininfolist.num_domains = 1;
591
    dominfo.domain = domain->handle;
592

593
    ret = xenHypervisorDoOp(domain->conn->handle, &op);
594

595
    if (munlock(&dominfo, sizeof(dom0_getdomaininfo_t)) < 0) {
596 597
        virXenError(VIR_ERR_XEN_CALL, " release",
                    sizeof(dom0_getdomaininfo_t));
598
        ret = -1;
599
    }
600

601
    if (ret < 0)
602
        return (-1);
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632

    switch (dominfo.flags & 0xFF) {
	case DOMFLAGS_DYING:
	    info->state = VIR_DOMAIN_SHUTDOWN;
	    break;
	case DOMFLAGS_SHUTDOWN:
	    info->state = VIR_DOMAIN_SHUTOFF;
	    break;
	case DOMFLAGS_PAUSED:
	    info->state = VIR_DOMAIN_PAUSED;
	    break;
	case DOMFLAGS_BLOCKED:
	    info->state = VIR_DOMAIN_BLOCKED;
	    break;
	case DOMFLAGS_RUNNING:
	    info->state = VIR_DOMAIN_RUNNING;
	    break;
	default:
	    info->state = VIR_DOMAIN_NONE;
    }

    /*
     * the API brings back the cpu time in nanoseconds,
     * convert to microseconds, same thing convert to
     * kilobytes from page counts
     */
    info->cpuTime = dominfo.cpu_time;
    info->memory = dominfo.tot_pages * 4;
    info->maxMem = dominfo.max_pages * 4;
    info->nrVirtCpu = dominfo.nr_online_vcpus;
633
    return (0);
634 635
}

636 637
/**
 * xenHypervisorPauseDomain:
638
 * @domain: pointer to the domain block
639 640 641 642 643 644
 *
 * Do an hypervisor call to pause the given domain
 *
 * Returns 0 in case of success, -1 in case of error.
 */
int
645
xenHypervisorPauseDomain(virDomainPtr domain)
646
{
647 648 649
    dom0_op_t op;
    int ret;

650 651 652 653
    if ((domain == NULL) || (domain->conn == NULL) ||
        (domain->conn->handle < 0))
        return (-1);

654
    op.cmd = DOM0_PAUSEDOMAIN;
655
    op.u.pausedomain.domain = (domid_t) domain->handle;
656

657
    ret = xenHypervisorDoOp(domain->conn->handle, &op);
658 659

    if (ret < 0)
660 661
        return (-1);
    return (0);
662 663 664 665
}

/**
 * xenHypervisorResumeDomain:
666
 * @domain: pointer to the domain block
667 668 669 670 671 672
 *
 * Do an hypervisor call to resume the given domain
 *
 * Returns 0 in case of success, -1 in case of error.
 */
int
673
xenHypervisorResumeDomain(virDomainPtr domain)
674
{
675 676 677
    dom0_op_t op;
    int ret;

678 679 680 681
    if ((domain == NULL) || (domain->conn == NULL) ||
        (domain->conn->handle < 0))
        return (-1);

682
    op.cmd = DOM0_UNPAUSEDOMAIN;
683
    op.u.unpausedomain.domain = (domid_t) domain->handle;
684

685
    ret = xenHypervisorDoOp(domain->conn->handle, &op);
686 687

    if (ret < 0)
688 689
        return (-1);
    return (0);
690 691 692 693
}

/**
 * xenHypervisorDestroyDomain:
694
 * @domain: pointer to the domain block
695 696 697 698 699 700
 *
 * Do an hypervisor call to destroy the given domain
 *
 * Returns 0 in case of success, -1 in case of error.
 */
int
701
xenHypervisorDestroyDomain(virDomainPtr domain)
702
{
703 704 705
    dom0_op_t op;
    int ret;

706 707 708 709
    if ((domain == NULL) || (domain->conn == NULL) ||
        (domain->conn->handle < 0))
        return (-1);

710
    op.cmd = DOM0_DESTROYDOMAIN;
711
    op.u.destroydomain.domain = (domid_t) domain->handle;
712

713
    ret = xenHypervisorDoOp(domain->conn->handle, &op);
714 715

    if (ret < 0)
716 717
        return (-1);
    return (0);
718 719
}

720 721
/**
 * xenHypervisorSetMaxMemory:
722
 * @domain: pointer to the domain block
723 724 725 726 727 728 729
 * @memory: the max memory size in kilobytes.
 *
 * Do an hypervisor call to change the maximum amount of memory used
 *
 * Returns 0 in case of success, -1 in case of error.
 */
int
730
xenHypervisorSetMaxMemory(virDomainPtr domain, unsigned long memory)
731
{
732 733 734
    dom0_op_t op;
    int ret;

735 736 737 738
    if ((domain == NULL) || (domain->conn == NULL) ||
        (domain->conn->handle < 0))
        return (-1);

739
    op.cmd = DOM0_SETDOMAINMAXMEM;
740
    op.u.setdomainmaxmem.domain = (domid_t) domain->handle;
741 742
    op.u.setdomainmaxmem.max_memkb = memory;

743
    ret = xenHypervisorDoOp(domain->conn->handle, &op);
744 745

    if (ret < 0)
746 747
        return (-1);
    return (0);
748
}
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797

/**
 * xenHypervisorCheckID:
 * @domain: pointer to the domain block
 * @info: the place where informations should be stored
 *
 * Do an hypervisor call to verify the domain ID is valid
 *
 * Returns 0 in case of success, -1 in case of error.
 */
int
xenHypervisorCheckID(virConnectPtr conn, int id)
{
    dom0_op_t op;
    dom0_getdomaininfo_t dominfo;
    int ret;

    if ((conn->handle < 0) || (id < 0))
        return (-1);

    memset(&dominfo, 0, sizeof(dom0_getdomaininfo_t));

    if (mlock(&dominfo, sizeof(dom0_getdomaininfo_t)) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " locking",
                    sizeof(dom0_getdomaininfo_t));
        return (-1);
    }

    op.cmd = DOM0_GETDOMAININFOLIST;
    op.u.getdomaininfolist.first_domain = (domid_t) id;
    op.u.getdomaininfolist.max_domains = 1;
    op.u.getdomaininfolist.buffer = &dominfo;
    op.u.getdomaininfolist.num_domains = 1;
    dominfo.domain = id;

    ret = xenHypervisorDoOp(conn->handle, &op);

    if (munlock(&dominfo, sizeof(dom0_getdomaininfo_t)) < 0) {
        virXenError(VIR_ERR_XEN_CALL, " release",
                    sizeof(dom0_getdomaininfo_t));
        ret = -1;
    }

    if (ret < 0)
        return (-1);

    return (0);
}