libvirt.c 70.7 KB
Newer Older
D
Daniel Veillard 已提交
1
/*
2
 * libvirt.c: Main interfaces for the libvirt library to handle virtualization
D
Daniel Veillard 已提交
3 4
 *           domains from a process running in domain 0
 *
5
 * Copyright (C) 2005,2006 Red Hat, Inc.
D
Daniel Veillard 已提交
6 7 8 9 10 11
 *
 * See COPYING.LIB for the License of this software
 *
 * Daniel Veillard <veillard@redhat.com>
 */

12
#include "libvirt/libvirt.h"
D
Daniel Veillard 已提交
13

14
#include <stdio.h>
15
#include <stdlib.h>
16
#include <string.h>
17 18 19
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
20

21 22 23
#include <libxml/parser.h>
#include <libxml/xpath.h>

D
Daniel Veillard 已提交
24
#include "internal.h"
25
#include "driver.h"
26

27
#include "xml.h"
28
#include "test.h"
29
#include "xen_unified.h"
D
Daniel P. Berrange 已提交
30
#include "qemu_internal.h"
31
#include "remote_internal.h"
32

D
Daniel Veillard 已提交
33 34 35 36 37 38
/*
 * TODO:
 * - use lock to protect against concurrent accesses ?
 * - use reference counting to garantee coherent pointer state ?
 */

39
static virDriverPtr virDriverTab[MAX_DRIVERS];
40
static int virDriverTabCount = 0;
41
static virNetworkDriverPtr virNetworkDriverTab[MAX_DRIVERS];
42
static int virNetworkDriverTabCount = 0;
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
static int initialized = 0;

/**
 * virInitialize:
 *
 * Initialize the library. It's better to call this routine at startup
 * in multithreaded applications to avoid potential race when initializing
 * the library.
 *
 * Returns 0 in case of success, -1 in case of error
 */
int
virInitialize(void)
{
    if (initialized)
        return(0);
59
    initialized = 1;
60

61 62 63
    if (!bindtextdomain(GETTEXT_PACKAGE, LOCALEBASEDIR))
        return (-1);

64
    /*
65 66
     * Note that the order is important: the first ones have a higher
     * priority when calling virConnectOpen.
67
     */
68
#ifdef WITH_TEST
69
    if (testRegister() == -1) return -1;
70 71
#endif
#ifdef WITH_QEMU
72
    if (qemuRegister() == -1) return -1;
73
#endif
74 75
#ifdef WITH_XEN
    if (xenUnifiedRegister () == -1) return -1;
76 77 78
#endif
#ifdef WITH_REMOTE
    if (remoteRegister () == -1) return -1;
79
#endif
D
Daniel P. Berrange 已提交
80

81 82 83 84 85
    return(0);
}



D
Daniel Veillard 已提交
86 87 88
/**
 * virLibConnError:
 * @conn: the connection if available
89
 * @error: the error number
D
Daniel Veillard 已提交
90 91 92 93 94
 * @info: extra information string
 *
 * Handle an error at the connection level
 */
static void
95 96
virLibConnError(virConnectPtr conn, virErrorNumber error, const char *info)
{
D
Daniel Veillard 已提交
97
    const char *errmsg;
98

D
Daniel Veillard 已提交
99 100 101 102
    if (error == VIR_ERR_OK)
        return;

    errmsg = __virErrorMsg(error, info);
103
    __virRaiseError(conn, NULL, NULL, VIR_FROM_NONE, error, VIR_ERR_ERROR,
D
Daniel Veillard 已提交
104 105 106 107
                    errmsg, info, NULL, 0, 0, errmsg, info);
}

/**
108
 * virLibConnWarning:
D
Daniel Veillard 已提交
109
 * @conn: the connection if available
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
 * @error: the error number
 * @info: extra information string
 *
 * Handle an error at the connection level
 */
static void
virLibConnWarning(virConnectPtr conn, virErrorNumber error, const char *info)
{
    const char *errmsg;

    if (error == VIR_ERR_OK)
        return;

    errmsg = __virErrorMsg(error, info);
    __virRaiseError(conn, NULL, NULL, VIR_FROM_NONE, error, VIR_ERR_WARNING,
                    errmsg, info, NULL, 0, 0, errmsg, info);
}

/**
 * virLibDomainError:
 * @domain: the domain if available
 * @error: the error number
D
Daniel Veillard 已提交
132 133 134 135 136
 * @info: extra information string
 *
 * Handle an error at the connection level
 */
static void
137 138 139
virLibDomainError(virDomainPtr domain, virErrorNumber error,
                  const char *info)
{
D
Daniel Veillard 已提交
140 141
    virConnectPtr conn = NULL;
    const char *errmsg;
142

D
Daniel Veillard 已提交
143 144 145 146 147 148 149
    if (error == VIR_ERR_OK)
        return;

    errmsg = __virErrorMsg(error, info);
    if (error != VIR_ERR_INVALID_DOMAIN) {
        conn = domain->conn;
    }
150
    __virRaiseError(conn, domain, NULL, VIR_FROM_DOM, error, VIR_ERR_ERROR,
D
Daniel Veillard 已提交
151 152 153
                    errmsg, info, NULL, 0, 0, errmsg, info);
}

154
/**
155 156 157 158
 * virLibNetworkError:
 * @conn: the connection if available
 * @error: the error noumber
 * @info: extra information string
159
 *
160
 * Handle an error at the connection level
161
 */
162 163 164 165 166 167 168 169 170 171 172 173 174 175
static void
virLibNetworkError(virNetworkPtr network, virErrorNumber error,
                   const char *info)
{
    virConnectPtr conn = NULL;
    const char *errmsg;

    if (error == VIR_ERR_OK)
        return;

    errmsg = __virErrorMsg(error, info);
    if (error != VIR_ERR_INVALID_NETWORK) {
        conn = network->conn;
    }
176
    __virRaiseError(conn, NULL, network, VIR_FROM_NET, error, VIR_ERR_ERROR,
177 178 179 180 181 182 183 184 185 186 187 188 189 190
                    errmsg, info, NULL, 0, 0, errmsg, info);
}

/**
 * virRegisterNetworkDriver:
 * @driver: pointer to a network driver block
 *
 * Register a network virtualization driver
 *
 * Returns the driver priority or -1 in case of error.
 */
int
virRegisterNetworkDriver(virNetworkDriverPtr driver)
{
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
    if (virInitialize() < 0)
      return -1;

    if (driver == NULL) {
        virLibConnError(NULL, VIR_ERR_INVALID_ARG, __FUNCTION__);
	return(-1);
    }

    if (virNetworkDriverTabCount >= MAX_DRIVERS) {
    	virLibConnError(NULL, VIR_ERR_INVALID_ARG, __FUNCTION__);
	return(-1);
    }

    virNetworkDriverTab[virNetworkDriverTabCount] = driver;
    return virNetworkDriverTabCount++;
206 207 208 209 210 211 212 213 214 215 216 217 218
}

/**
 * virRegisterDriver:
 * @driver: pointer to a driver block
 *
 * Register a virtualization driver
 *
 * Returns the driver priority or -1 in case of error.
 */
int
virRegisterDriver(virDriverPtr driver)
{
219 220 221 222 223 224 225 226 227 228 229 230 231
    if (virInitialize() < 0)
      return -1;

    if (driver == NULL) {
        virLibConnError(NULL, VIR_ERR_INVALID_ARG, __FUNCTION__);
	return(-1);
    }

    if (virDriverTabCount >= MAX_DRIVERS) {
    	virLibConnError(NULL, VIR_ERR_INVALID_ARG, __FUNCTION__);
	return(-1);
    }

232 233 234 235 236 237 238
    if (driver->no < 0) {
    	virLibConnError
            (NULL, VIR_ERR_INVALID_ARG,
             "virRegisterDriver: tried to register an internal Xen driver");
        return -1;
    }

239 240
    virDriverTab[virDriverTabCount] = driver;
    return virDriverTabCount++;
241 242
}

243 244 245
/**
 * virGetVersion:
 * @libVer: return value for the library version (OUT)
246
 * @type: the type of connection/driver looked at
247 248 249 250 251 252 253 254 255 256 257 258
 * @typeVer: return value for the version of the hypervisor (OUT)
 *
 * Provides two information back, @libVer is the version of the library
 * while @typeVer will be the version of the hypervisor type @type against
 * which the library was compiled. If @type is NULL, "Xen" is assumed, if
 * @type is unknown or not availble, an error code will be returned and 
 * @typeVer will be 0.
 *
 * Returns -1 in case of failure, 0 otherwise, and values for @libVer and
 *       @typeVer have the format major * 1,000,000 + minor * 1,000 + release.
 */
int
259 260 261
virGetVersion(unsigned long *libVer, const char *type,
              unsigned long *typeVer)
{
262 263
    int i;

264
    if (!initialized)
265 266
        if (virInitialize() < 0)
	    return -1;
267

268
    if (libVer == NULL)
269
        return (-1);
270 271 272
    *libVer = LIBVIR_VERSION_NUMBER;

    if (typeVer != NULL) {
273 274
        if (type == NULL)
	    type = "Xen";
275
	for (i = 0;i < virDriverTabCount;i++) {
276
	    if ((virDriverTab[i] != NULL) &&
277
	        (!strcasecmp(virDriverTab[i]->name, type))) {
278 279 280 281
		*typeVer = virDriverTab[i]->ver;
		break;
	    }
	}
282
        if (i >= virDriverTabCount) {
283
            *typeVer = 0;
284
            virLibConnError(NULL, VIR_ERR_NO_SUPPORT, type);
285 286 287 288
            return (-1);
        }
    }
    return (0);
289 290
}

291 292
static virConnectPtr
do_open (const char *name, int flags)
293
{
294
    int i, res;
295
    virConnectPtr ret = NULL;
296

297
    if (!initialized)
298 299
        if (virInitialize() < 0)
	    return NULL;
300

301
    ret = virGetConnect();
302
    if (ret == NULL) {
303
        virLibConnError(NULL, VIR_ERR_NO_MEMORY, _("allocating connection"));
304 305 306
        goto failed;
    }

307 308 309 310 311 312 313
    for (i = 0; i < virDriverTabCount; i++) {
        res = virDriverTab[i]->open (ret, name, flags);
        if (res == VIR_DRV_OPEN_ERROR) goto failed;
        else if (res == VIR_DRV_OPEN_SUCCESS) {
            ret->driver = virDriverTab[i];
            break;
        }
314 315
    }

316 317 318
    if (!ret->driver) {
        virLibConnError (NULL, VIR_ERR_NO_SUPPORT, name);
        goto failed;
319 320
    }

321 322
    for (i = 0; i < virNetworkDriverTabCount; i++) {
        res = virNetworkDriverTab[i]->open (ret, name, flags);
323 324 325 326 327
        if (res == VIR_DRV_OPEN_ERROR) {
	    virLibConnWarning (NULL, VIR_WAR_NO_NETWORK, 
	                       "Is the daemon running ?");
            break;
        } else if (res == VIR_DRV_OPEN_SUCCESS) {
328 329 330
            ret->networkDriver = virNetworkDriverTab[i];
            break;
        }
331
    }
332

333 334 335 336
    if (flags & VIR_DRV_OPEN_RO) {
        ret->flags = VIR_CONNECT_RO;
    }

337
    return ret;
338 339

failed:
340
    if (ret->driver) ret->driver->close (ret);
341
	virFreeConnect(ret);
342
    return (NULL);
343 344
}

345 346 347 348 349 350 351 352 353 354 355 356
/**
 * virConnectOpen:
 * @name: optional argument currently unused, pass NULL
 *
 * This function should be called first to get a connection to the 
 * Hypervisor and xen store
 *
 * Returns a pointer to the hypervisor connection or NULL in case of error
 */
virConnectPtr
virConnectOpen (const char *name)
{
357
    return do_open (name, 0);
358 359
}

360
/**
361
 * virConnectOpenReadOnly:
362 363
 * @name: optional argument currently unused, pass NULL
 *
364 365 366
 * This function should be called first to get a restricted connection to the 
 * libbrary functionalities. The set of APIs usable are then restricted
 * on the available methods to control the domains.
367 368 369
 *
 * Returns a pointer to the hypervisor connection or NULL in case of error
 */
370
virConnectPtr
371 372
virConnectOpenReadOnly(const char *name)
{
373
    return do_open (name, VIR_DRV_OPEN_RO);
D
Daniel Veillard 已提交
374 375 376
}

/**
377
 * virConnectClose:
D
Daniel Veillard 已提交
378 379 380 381 382 383 384 385 386 387
 * @conn: pointer to the hypervisor connection
 *
 * This function closes the connection to the Hypervisor. This should
 * not be called if further interaction with the Hypervisor are needed
 * especially if there is running domain which need further monitoring by
 * the application.
 *
 * Returns 0 in case of success or -1 in case of error.
 */
int
388 389
virConnectClose(virConnectPtr conn)
{
K
Karel Zak 已提交
390
    if (!VIR_IS_CONNECT(conn))
391
        return (-1);
392 393 394 395 396

    conn->driver->close (conn);
    if (conn->networkDriver)
        conn->networkDriver->close (conn);

397 398
    if (virFreeConnect(conn) < 0)
        return (-1);
399
    return (0);
D
Daniel Veillard 已提交
400 401
}

402 403 404 405 406 407 408
/**
 * virConnectGetType:
 * @conn: pointer to the hypervisor connection
 *
 * Get the name of the Hypervisor software used.
 *
 * Returns NULL in case of error, a static zero terminated string otherwise.
409 410 411
 *
 * See also:
 * http://www.redhat.com/archives/libvir-list/2007-February/msg00096.html
412 413
 */
const char *
414 415
virConnectGetType(virConnectPtr conn)
{
416
    const char *ret;
417

D
Daniel Veillard 已提交
418
    if (!VIR_IS_CONNECT(conn)) {
419
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
420
        return (NULL);
D
Daniel Veillard 已提交
421
    }
422 423 424 425

    if (conn->driver->type) {
        ret = conn->driver->type (conn);
        if (ret) return ret;
426
    }
427
    return conn->driver->name;
428 429
}

D
Daniel Veillard 已提交
430
/**
431
 * virConnectGetVersion:
D
Daniel Veillard 已提交
432
 * @conn: pointer to the hypervisor connection
433
 * @hvVer: return value for the version of the running hypervisor (OUT)
D
Daniel Veillard 已提交
434
 *
435 436 437
 * Get the version level of the Hypervisor running. This may work only with 
 * hypervisor call, i.e. with priviledged access to the hypervisor, not
 * with a Read-Only connection.
D
Daniel Veillard 已提交
438
 *
439 440 441
 * 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
D
Daniel Veillard 已提交
442
 */
443
int
444 445
virConnectGetVersion(virConnectPtr conn, unsigned long *hvVer)
{
D
Daniel Veillard 已提交
446 447
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
448
        return (-1);
D
Daniel Veillard 已提交
449
    }
450

D
Daniel Veillard 已提交
451 452
    if (hvVer == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
453
        return (-1);
D
Daniel Veillard 已提交
454
    }
455

456 457
    if (conn->driver->version)
        return conn->driver->version (conn, hvVer);
D
Daniel P. Berrange 已提交
458

459 460
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
461 462
}

463 464 465 466 467
/**
 * virConnectGetMaxVcpus:
 * @conn: pointer to the hypervisor connection
 * @type: value of the 'type' attribute in the <domain> element
 *
468
 * Provides the maximum number of virtual CPUs supported for a guest VM of a
469 470 471 472 473 474 475 476 477 478 479 480 481 482
 * specific type. The 'type' parameter here corresponds to the 'type'
 * attribute in the <domain> element of the XML.
 *
 * Returns the maximum of virtual CPU or -1 in case of error.
 */
int
virConnectGetMaxVcpus(virConnectPtr conn,
                      const char *type)
{
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (-1);
    }

483 484
    if (conn->driver->getMaxVcpus)
        return conn->driver->getMaxVcpus (conn, type);
485

486 487
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
488 489
}

490
/**
491
 * virConnectListDomains:
492 493 494 495 496 497 498 499 500
 * @conn: pointer to the hypervisor connection
 * @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
501 502
virConnectListDomains(virConnectPtr conn, int *ids, int maxids)
{
D
Daniel Veillard 已提交
503 504
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
505
        return (-1);
D
Daniel Veillard 已提交
506
    }
507

D
Daniel Veillard 已提交
508 509
    if ((ids == NULL) || (maxids <= 0)) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
510
        return (-1);
D
Daniel Veillard 已提交
511
    }
512

513 514
    if (conn->driver->listDomains)
        return conn->driver->listDomains (conn, ids, maxids);
515

516 517
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
D
Daniel Veillard 已提交
518 519
}

K
 
Karel Zak 已提交
520 521 522 523
/**
 * virConnectNumOfDomains:
 * @conn: pointer to the hypervisor connection
 *
524 525
 * Provides the number of active domains.
 *
K
 
Karel Zak 已提交
526 527 528
 * Returns the number of domain found or -1 in case of error
 */
int
529 530
virConnectNumOfDomains(virConnectPtr conn)
{
D
Daniel Veillard 已提交
531 532
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
533
        return (-1);
D
Daniel Veillard 已提交
534
    }
K
Karel Zak 已提交
535

536 537
    if (conn->driver->numOfDomains)
        return conn->driver->numOfDomains (conn);
538

539 540
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
K
 
Karel Zak 已提交
541 542
}

D
Daniel Veillard 已提交
543
/**
544
 * virDomainCreateLinux:
D
Daniel Veillard 已提交
545
 * @conn: pointer to the hypervisor connection
546
 * @xmlDesc: an XML description of the domain
547
 * @flags: an optional set of virDomainFlags
D
Daniel Veillard 已提交
548
 *
549 550 551
 * Launch a new Linux guest domain, based on an XML description similar
 * to the one returned by virDomainGetXMLDesc()
 * This function may requires priviledged access to the hypervisor.
D
Daniel Veillard 已提交
552 553 554
 * 
 * Returns a new domain object or NULL in case of failure
 */
555
virDomainPtr
556 557
virDomainCreateLinux(virConnectPtr conn, const char *xmlDesc,
                     unsigned int flags)
558
{
D
Daniel Veillard 已提交
559 560
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
561
        return (NULL);
D
Daniel Veillard 已提交
562 563 564
    }
    if (xmlDesc == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
565
        return (NULL);
D
Daniel Veillard 已提交
566
    }
567 568 569 570
    if (conn->flags & VIR_CONNECT_RO) {
        virLibConnError(conn, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (NULL);
    }
D
Daniel Veillard 已提交
571

572 573 574 575 576
    if (conn->driver->domainCreateLinux)
        return conn->driver->domainCreateLinux (conn, xmlDesc, flags);

    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return NULL;
D
Daniel Veillard 已提交
577 578
}

579

580
/**
581
 * virDomainLookupByID:
582 583 584 585 586 587 588
 * @conn: pointer to the hypervisor connection
 * @id: the domain ID number
 *
 * Try to find a domain based on the hypervisor ID number
 *
 * Returns a new domain object or NULL in case of failure
 */
589
virDomainPtr
590 591
virDomainLookupByID(virConnectPtr conn, int id)
{
D
Daniel Veillard 已提交
592 593
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
594
        return (NULL);
D
Daniel Veillard 已提交
595 596 597
    }
    if (id < 0) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
598
        return (NULL);
D
Daniel Veillard 已提交
599
    }
600

601 602
    if (conn->driver->domainLookupByID)
        return conn->driver->domainLookupByID (conn, id);
603

604 605
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return NULL;
606 607 608 609 610
}

/**
 * virDomainLookupByUUID:
 * @conn: pointer to the hypervisor connection
K
Karel Zak 已提交
611
 * @uuid: the raw UUID for the domain
612 613 614 615 616 617
 *
 * Try to lookup a domain on the given hypervisor based on its UUID.
 *
 * Returns a new domain object or NULL in case of failure
 */
virDomainPtr
618 619
virDomainLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
{
D
Daniel Veillard 已提交
620 621
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
622
        return (NULL);
D
Daniel Veillard 已提交
623 624 625
    }
    if (uuid == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
626
        return (NULL);
D
Daniel Veillard 已提交
627
    }
628

629 630
    if (conn->driver->domainLookupByUUID)
        return conn->driver->domainLookupByUUID (conn, uuid);
631

632 633
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return NULL;
634 635
}

K
Karel Zak 已提交
636 637 638 639 640 641 642 643 644 645 646 647
/**
 * virDomainLookupByUUIDString:
 * @conn: pointer to the hypervisor connection
 * @uuidstr: the string UUID for the domain
 *
 * Try to lookup a domain on the given hypervisor based on its UUID.
 *
 * Returns a new domain object or NULL in case of failure
 */
virDomainPtr
virDomainLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
{
648 649
    int raw[VIR_UUID_BUFLEN], i;
    unsigned char uuid[VIR_UUID_BUFLEN];
K
Karel Zak 已提交
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
    int ret;

    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (NULL);
    }
    if (uuidstr == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (NULL);
	
    }
    /* XXX: sexpr_uuid() also supports 'xxxx-xxxx-xxxx-xxxx' format. 
     *      We needn't it here. Right? 
     */
    ret = sscanf(uuidstr,
                 "%02x%02x%02x%02x-"
                 "%02x%02x-"
                 "%02x%02x-"
                 "%02x%02x-"
                 "%02x%02x%02x%02x%02x%02x",
                 raw + 0, raw + 1, raw + 2, raw + 3,
                 raw + 4, raw + 5, raw + 6, raw + 7,
                 raw + 8, raw + 9, raw + 10, raw + 11,
                 raw + 12, raw + 13, raw + 14, raw + 15);
    
675
    if (ret!=VIR_UUID_BUFLEN) {
K
Karel Zak 已提交
676 677 678
	virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
	return (NULL);
    }
679
    for (i = 0; i < VIR_UUID_BUFLEN; i++)
K
Karel Zak 已提交
680 681 682 683 684
        uuid[i] = raw[i] & 0xFF;
    
    return virDomainLookupByUUID(conn, &uuid[0]);
}

685 686 687 688 689
/**
 * virDomainLookupByName:
 * @conn: pointer to the hypervisor connection
 * @name: name for the domain
 *
690
 * Try to lookup a domain on the given hypervisor based on its name.
691 692 693 694
 *
 * Returns a new domain object or NULL in case of failure
 */
virDomainPtr
695 696
virDomainLookupByName(virConnectPtr conn, const char *name)
{
D
Daniel Veillard 已提交
697 698
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
699
        return (NULL);
D
Daniel Veillard 已提交
700 701 702
    }
    if (name == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
703
        return (NULL);
D
Daniel Veillard 已提交
704
    }
705

706 707 708 709 710
    if (conn->driver->domainLookupByName)
        return conn->driver->domainLookupByName (conn, name);

    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return NULL;
711 712
}

D
Daniel Veillard 已提交
713
/**
714
 * virDomainDestroy:
D
Daniel Veillard 已提交
715 716 717 718
 * @domain: a domain object
 *
 * Destroy the domain object. The running instance is shutdown if not down
 * already and all resources used by it are given back to the hypervisor.
719 720
 * The data structure is freed and should not be used thereafter if the
 * call does not return an error.
721
 * This function may requires priviledged access
D
Daniel Veillard 已提交
722 723
 *
 * Returns 0 in case of success and -1 in case of failure.
724
 */
D
Daniel Veillard 已提交
725
int
726 727
virDomainDestroy(virDomainPtr domain)
{
728
    virConnectPtr conn;
729

D
Daniel Veillard 已提交
730 731
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
732
        return (-1);
D
Daniel Veillard 已提交
733
    }
734

735
    conn = domain->conn;
736 737 738 739
    if (conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
740

741 742
    if (conn->driver->domainDestroy)
        return conn->driver->domainDestroy (domain);
743

744 745
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
746 747 748 749 750 751 752 753 754 755 756 757
}

/**
 * virDomainFree:
 * @domain: a domain object
 *
 * Free the domain object. The running instance is kept alive.
 * The data structure is freed and should not be used thereafter.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
758 759
virDomainFree(virDomainPtr domain)
{
D
Daniel Veillard 已提交
760 761
    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
762
        return (-1);
D
Daniel Veillard 已提交
763
    }
764 765 766
    if (virFreeDomain(domain->conn, domain) < 0)
        return (-1);
    return(0);
D
Daniel Veillard 已提交
767 768 769
}

/**
770
 * virDomainSuspend:
D
Daniel Veillard 已提交
771 772 773 774
 * @domain: a domain object
 *
 * Suspends an active domain, the process is frozen without further access
 * to CPU resources and I/O but the memory used by the domain at the 
775
 * hypervisor level will stay allocated. Use virDomainResume() to reactivate
D
Daniel Veillard 已提交
776
 * the domain.
777
 * This function may requires priviledged access.
D
Daniel Veillard 已提交
778 779 780 781
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
782 783
virDomainSuspend(virDomainPtr domain)
{
784
    virConnectPtr conn;
785

D
Daniel Veillard 已提交
786 787
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
788
        return (-1);
D
Daniel Veillard 已提交
789
    }
790 791 792 793
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
D
Daniel Veillard 已提交
794

795 796
    conn = domain->conn;

797 798
    if (conn->driver->domainSuspend)
        return conn->driver->domainSuspend (domain);
799

800 801
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
D
Daniel Veillard 已提交
802 803 804
}

/**
805
 * virDomainResume:
D
Daniel Veillard 已提交
806 807 808
 * @domain: a domain object
 *
 * Resume an suspended domain, the process is restarted from the state where
809
 * it was frozen by calling virSuspendDomain().
810
 * This function may requires priviledged access
D
Daniel Veillard 已提交
811 812 813 814
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
815 816
virDomainResume(virDomainPtr domain)
{
817
    virConnectPtr conn;
818

D
Daniel Veillard 已提交
819 820
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
821
        return (-1);
D
Daniel Veillard 已提交
822
    }
823 824 825 826
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
D
Daniel Veillard 已提交
827

828 829
    conn = domain->conn;

830 831
    if (conn->driver->domainResume)
        return conn->driver->domainResume (domain);
832

833 834
    virLibConnError (conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
    return -1;
D
Daniel Veillard 已提交
835 836
}

837 838 839 840 841 842
/**
 * virDomainSave:
 * @domain: a domain object
 * @to: path for the output file
 *
 * This method will suspend a domain and save its memory contents to
843 844 845
 * a file on disk. After the call, if successful, the domain is not
 * listed as running anymore (this may be a problem).
 * Use virDomainRestore() to restore a domain after saving.
846 847 848 849
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
850 851
virDomainSave(virDomainPtr domain, const char *to)
{
852
    char filepath[4096];
853
    virConnectPtr conn;
854

D
Daniel Veillard 已提交
855 856
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
857
        return (-1);
D
Daniel Veillard 已提交
858
    }
859 860 861 862
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
863
    conn = domain->conn;
D
Daniel Veillard 已提交
864 865
    if (to == NULL) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
866
        return (-1);
D
Daniel Veillard 已提交
867
    }
868

869 870 871 872 873
    /*
     * We must absolutize the file path as the save is done out of process
     * TODO: check for URI when libxml2 is linked in.
     */
    if (to[0] != '/') {
874
        unsigned int len, t;
875

876 877 878 879 880 881 882 883 884 885
        t = strlen(to);
        if (getcwd(filepath, sizeof(filepath) - (t + 3)) == NULL)
            return (-1);
        len = strlen(filepath);
        /* that should be covered by getcwd() semantic, but be 100% sure */
        if (len > sizeof(filepath) - (t + 3))
            return (-1);
        filepath[len] = '/';
        strcpy(&filepath[len + 1], to);
        to = &filepath[0];
886 887 888

    }

889 890 891 892 893
    if (conn->driver->domainSave)
        return conn->driver->domainSave (domain, to);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
894 895 896 897
}

/**
 * virDomainRestore:
898
 * @conn: pointer to the hypervisor connection
899 900 901 902 903 904 905
 * @from: path to the 
 *
 * This method will restore a domain saved to disk by virDomainSave().
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
906 907
virDomainRestore(virConnectPtr conn, const char *from)
{
908
    char filepath[4096];
909

D
Daniel Veillard 已提交
910 911
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
912
        return (-1);
D
Daniel Veillard 已提交
913
    }
914 915 916 917
    if (conn->flags & VIR_CONNECT_RO) {
        virLibConnError(conn, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
D
Daniel Veillard 已提交
918 919
    if (from == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
920
        return (-1);
D
Daniel Veillard 已提交
921 922
    }

923 924 925 926 927
    /*
     * We must absolutize the file path as the restore is done out of process
     * TODO: check for URI when libxml2 is linked in.
     */
    if (from[0] != '/') {
928 929 930 931 932 933 934 935 936 937 938 939 940 941
        unsigned int len, t;

        t = strlen(from);
        if (getcwd(filepath, sizeof(filepath) - (t + 3)) == NULL)
            return (-1);
        len = strlen(filepath);
        /* that should be covered by getcwd() semantic, but be 100% sure */
        if (len > sizeof(filepath) - (t + 3))
            return (-1);
        filepath[len] = '/';
        strcpy(&filepath[len + 1], from);
        from = &filepath[0];
    }

942 943 944 945 946
    if (conn->driver->domainRestore)
        return conn->driver->domainRestore (conn, from);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
D
Daniel Veillard 已提交
947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
}

/**
 * virDomainCoreDump:
 * @domain: a domain object
 * @to: path for the core file
 * @flags: extra flags, currently unused
 *
 * This method will dump the core of a domain on a given file for analysis.
 * Note that for remote Xen Daemon the file path will be interpreted in
 * the remote host.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
virDomainCoreDump(virDomainPtr domain, const char *to, int flags)
{
    char filepath[4096];
    virConnectPtr conn;

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
    conn = domain->conn;
    if (to == NULL) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

    /*
     * We must absolutize the file path as the save is done out of process
     * TODO: check for URI when libxml2 is linked in.
     */
    if (to[0] != '/') {
        unsigned int len, t;

        t = strlen(to);
        if (getcwd(filepath, sizeof(filepath) - (t + 3)) == NULL)
            return (-1);
        len = strlen(filepath);
        /* that should be covered by getcwd() semantic, but be 100% sure */
        if (len > sizeof(filepath) - (t + 3))
            return (-1);
        filepath[len] = '/';
        strcpy(&filepath[len + 1], to);
        to = &filepath[0];

    }

1001 1002 1003 1004 1005
    if (conn->driver->domainCoreDump)
        return conn->driver->domainCoreDump (domain, to, flags);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1006 1007
}

1008 1009 1010 1011 1012
/**
 * virDomainShutdown:
 * @domain: a domain object
 *
 * Shutdown a domain, the domain object is still usable there after but
1013 1014
 * the domain OS is being stopped. Note that the guest OS may ignore the
 * request.
1015 1016 1017 1018 1019 1020 1021
 *
 * TODO: should we add an option for reboot, knowing it may not be doable
 *       in the general case ?
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
1022 1023
virDomainShutdown(virDomainPtr domain)
{
1024
    virConnectPtr conn;
1025

D
Daniel Veillard 已提交
1026 1027
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1028
        return (-1);
D
Daniel Veillard 已提交
1029
    }
1030 1031 1032 1033
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
1034

1035 1036
    conn = domain->conn;

1037 1038
    if (conn->driver->domainShutdown)
        return conn->driver->domainShutdown (domain);
1039

1040 1041
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1042 1043
}

1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
/**
 * virDomainReboot:
 * @domain: a domain object
 * @flags: extra flags for the reboot operation, not used yet
 *
 * Reboot a domain, the domain object is still usable there after but
 * the domain OS is being stopped for a restart.
 * Note that the guest OS may ignore the request.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
virDomainReboot(virDomainPtr domain, unsigned int flags)
{
1058
    virConnectPtr conn;
1059 1060 1061 1062 1063

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
1064 1065 1066 1067
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
1068

1069 1070
    conn = domain->conn;

1071 1072
    if (conn->driver->domainReboot)
        return conn->driver->domainReboot (domain, flags);
1073

1074 1075
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1076 1077
}

1078
/**
1079
 * virDomainGetName:
1080 1081 1082 1083 1084 1085 1086 1087
 * @domain: a domain object
 *
 * Get the public name for that domain
 *
 * Returns a pointer to the name or NULL, the string need not be deallocated
 * its lifetime will be the same as the domain object.
 */
const char *
1088 1089
virDomainGetName(virDomainPtr domain)
{
D
Daniel Veillard 已提交
1090 1091
    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1092
        return (NULL);
D
Daniel Veillard 已提交
1093
    }
1094
    return (domain->name);
1095 1096
}

1097 1098 1099
/**
 * virDomainGetUUID:
 * @domain: a domain object
1100
 * @uuid: pointer to a VIR_UUID_BUFLEN bytes array
1101 1102 1103 1104 1105 1106
 *
 * Get the UUID for a domain
 *
 * Returns -1 in case of error, 0 in case of success
 */
int
1107 1108
virDomainGetUUID(virDomainPtr domain, unsigned char *uuid)
{
D
Daniel Veillard 已提交
1109 1110
    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1111
        return (-1);
D
Daniel Veillard 已提交
1112 1113 1114
    }
    if (uuid == NULL) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
1115
        return (-1);
D
Daniel Veillard 已提交
1116 1117
    }

1118
    if (domain->id == 0) {
1119
        memset(uuid, 0, VIR_UUID_BUFLEN);
D
Daniel Veillard 已提交
1120
    } else {
1121 1122 1123 1124 1125
#if 0
        /* Probably legacy code: It appears that we always fill in
         * the UUID when creating the virDomain structure, so this
         * shouldn't be necessary.
         */
1126 1127 1128 1129 1130 1131 1132 1133
        if ((domain->uuid[0] == 0) && (domain->uuid[1] == 0) &&
            (domain->uuid[2] == 0) && (domain->uuid[3] == 0) &&
            (domain->uuid[4] == 0) && (domain->uuid[5] == 0) &&
            (domain->uuid[6] == 0) && (domain->uuid[7] == 0) &&
            (domain->uuid[8] == 0) && (domain->uuid[9] == 0) &&
            (domain->uuid[10] == 0) && (domain->uuid[11] == 0) &&
            (domain->uuid[12] == 0) && (domain->uuid[13] == 0) &&
            (domain->uuid[14] == 0) && (domain->uuid[15] == 0))
1134
            xenDaemonDomainLookupByName_ids(domain->conn, domain->name,
1135
                                &domain->uuid[0]);
1136
#endif
1137
        memcpy(uuid, &domain->uuid[0], VIR_UUID_BUFLEN);
1138 1139
    }
    return (0);
1140 1141
}

K
Karel Zak 已提交
1142 1143 1144
/**
 * virDomainGetUUIDString:
 * @domain: a domain object
1145
 * @buf: pointer to a VIR_UUID_STRING_BUFLEN bytes array
K
Karel Zak 已提交
1146 1147 1148 1149 1150 1151 1152 1153 1154
 *
 * Get the UUID for a domain as string. For more information about 
 * UUID see RFC4122.
 *
 * Returns -1 in case of error, 0 in case of success
 */
int
virDomainGetUUIDString(virDomainPtr domain, char *buf)
{
1155
    unsigned char uuid[VIR_UUID_BUFLEN];
1156

K
Karel Zak 已提交
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
    if (buf == NULL) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }
    
    if (virDomainGetUUID(domain, &uuid[0]))
1167
        return (-1);
K
Karel Zak 已提交
1168

1169
    snprintf(buf, VIR_UUID_STRING_BUFLEN,
K
Karel Zak 已提交
1170 1171 1172 1173 1174 1175 1176 1177
	"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
                      uuid[0], uuid[1], uuid[2], uuid[3],
                      uuid[4], uuid[5], uuid[6], uuid[7],
                      uuid[8], uuid[9], uuid[10], uuid[11],
                      uuid[12], uuid[13], uuid[14], uuid[15]);
    return (0);
}

1178
/**
1179
 * virDomainGetID:
1180 1181 1182 1183 1184 1185 1186
 * @domain: a domain object
 *
 * Get the hypervisor ID number for the domain
 *
 * Returns the domain ID number or (unsigned int) -1 in case of error
 */
unsigned int
1187 1188
virDomainGetID(virDomainPtr domain)
{
D
Daniel Veillard 已提交
1189 1190
    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1191
        return ((unsigned int) -1);
D
Daniel Veillard 已提交
1192
    }
1193
    return (domain->id);
1194 1195
}

1196 1197 1198 1199 1200 1201
/**
 * virDomainGetOSType:
 * @domain: a domain object
 *
 * Get the type of domain operation system.
 *
1202 1203
 * Returns the new string or NULL in case of error, the string must be
 *         freed by the caller.
1204 1205
 */
char *
1206 1207
virDomainGetOSType(virDomainPtr domain)
{
1208
    virConnectPtr conn;
1209

D
Daniel Veillard 已提交
1210 1211
    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1212
        return (NULL);
D
Daniel Veillard 已提交
1213
    }
1214

1215 1216 1217 1218
    conn = domain->conn;

    if (conn->driver->domainGetOSType)
        return conn->driver->domainGetOSType (domain);
1219

1220 1221
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
1222 1223
}

1224
/**
1225
 * virDomainGetMaxMemory:
1226 1227 1228 1229 1230 1231 1232 1233 1234
 * @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.
 */
unsigned long
1235 1236
virDomainGetMaxMemory(virDomainPtr domain)
{
1237
    virConnectPtr conn;
1238

D
Daniel Veillard 已提交
1239 1240
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1241
        return (0);
D
Daniel Veillard 已提交
1242
    }
1243

1244 1245
    conn = domain->conn;

1246 1247 1248 1249 1250
    if (conn->driver->domainGetMaxMemory)
        return conn->driver->domainGetMaxMemory (domain);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return 0;
1251 1252
}

D
Daniel Veillard 已提交
1253
/**
1254
 * virDomainSetMaxMemory:
D
Daniel Veillard 已提交
1255 1256 1257 1258 1259 1260
 * @domain: a domain object or NULL
 * @memory: the memory size in kilobytes
 * 
 * Dynamically change the maximum amount of physical memory allocated to a
 * domain. If domain is NULL, then this change the amount of memory reserved
 * to Domain0 i.e. the domain where the application runs.
1261
 * This function requires priviledged access to the hypervisor.
D
Daniel Veillard 已提交
1262 1263 1264 1265
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
1266 1267
virDomainSetMaxMemory(virDomainPtr domain, unsigned long memory)
{
1268
    virConnectPtr conn;
1269

1270 1271 1272 1273 1274 1275
    if (domain == NULL) {
        TODO
	return (-1);
    }
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1276
        return (-1);
1277
    }
1278 1279 1280 1281 1282 1283 1284 1285
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
    if (memory < 4096) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }
1286
    conn = domain->conn;
1287

1288 1289 1290 1291 1292
    if (conn->driver->domainSetMaxMemory)
        return conn->driver->domainSetMaxMemory (domain, memory);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1293
}
1294

1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
/**
 * virDomainSetMemory:
 * @domain: a domain object or NULL
 * @memory: the memory size in kilobytes
 * 
 * Dynamically change the target amount of physical memory allocated to a
 * domain. If domain is NULL, then this change the amount of memory reserved
 * to Domain0 i.e. the domain where the application runs.
 * This function may requires priviledged access to the hypervisor.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
virDomainSetMemory(virDomainPtr domain, unsigned long memory)
{
    virConnectPtr conn;
1311

1312 1313 1314 1315 1316 1317 1318
    if (domain == NULL) {
        TODO
	return (-1);
    }
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
1319
    }
1320 1321 1322 1323 1324 1325
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
    if (memory < 4096) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
1326
        return (-1);
1327 1328 1329
    }

    conn = domain->conn;
1330

1331 1332 1333 1334 1335
    if (conn->driver->domainSetMemory)
        return conn->driver->domainSetMemory (domain, memory);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
D
Daniel Veillard 已提交
1336 1337
}

1338 1339
/**
 * virDomainGetInfo:
1340
 * @domain: a domain object
1341 1342 1343
 * @info: pointer to a virDomainInfo structure allocated by the user
 * 
 * Extract information about a domain. Note that if the connection
1344
 * used to get the domain is limited only a partial set of the information
1345 1346 1347 1348 1349
 * can be extracted.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
1350 1351
virDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)
{
1352
    virConnectPtr conn;
1353

D
Daniel Veillard 已提交
1354 1355
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1356
        return (-1);
D
Daniel Veillard 已提交
1357 1358 1359
    }
    if (info == NULL) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
1360
        return (-1);
D
Daniel Veillard 已提交
1361
    }
1362

1363
    memset(info, 0, sizeof(virDomainInfo));
1364

1365 1366 1367 1368
    conn = domain->conn;

    if (conn->driver->domainGetInfo)
        return conn->driver->domainGetInfo (domain, info);
1369

1370 1371
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1372
}
1373

1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
/**
 * virDomainGetXMLDesc:
 * @domain: a domain object
 * @flags: and OR'ed set of extraction flags, not used yet
 *
 * Provide an XML description of the domain. The description may be reused
 * later to relaunch the domain with virDomainCreateLinux().
 *
 * Returns a 0 terminated UTF-8 encoded XML instance, or NULL in case of error.
 *         the caller must free() the returned value.
 */
char *
1386 1387
virDomainGetXMLDesc(virDomainPtr domain, int flags)
{
1388 1389
    virConnectPtr conn;

D
Daniel Veillard 已提交
1390 1391
    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
1392
        return (NULL);
D
Daniel Veillard 已提交
1393 1394 1395
    }
    if (flags != 0) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
1396
        return (NULL);
D
Daniel Veillard 已提交
1397
    }
1398

1399 1400 1401 1402 1403 1404 1405
    conn = domain->conn;

    if (conn->driver->domainDumpXML)
        return conn->driver->domainDumpXML (domain, flags);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
1406
}
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417

/**
 * virNodeGetInfo:
 * @conn: pointer to the hypervisor connection
 * @info: pointer to a virNodeInfo structure allocated by the user
 * 
 * Extract hardware information about the node.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
1418 1419
virNodeGetInfo(virConnectPtr conn, virNodeInfoPtr info)
{
1420 1421 1422 1423 1424 1425 1426 1427 1428
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (-1);
    }
    if (info == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

1429 1430 1431 1432 1433
    if (conn->driver->nodeGetInfo)
        return conn->driver->nodeGetInfo (conn, info);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1434
}
1435

1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
/**
 * virConnectGetCapabilities:
 * @conn: pointer to the hypervisor connection
 *
 * Provides capabilities of the hypervisor / driver.
 *
 * Returns NULL in case of error, or a pointer to an opaque
 * virCapabilities structure (virCapabilitiesPtr).
 * The client must free the returned string after use.
 */
char *
virConnectGetCapabilities (virConnectPtr conn)
{
    if (!VIR_IS_CONNECT (conn)) {
        virLibConnError (conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return NULL;
    }

1454 1455
    if (conn->driver->getCapabilities)
        return conn->driver->getCapabilities (conn);
1456

1457
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
1458 1459 1460
    return NULL;
}

1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
/**
 * virDomainGetSchedulerType:
 * @domain: pointer to domain object
 * @nparams: number of scheduler parameters(return value)
 *
 * Get the scheduler type.
 *
 * Returns NULL in case of error. The caller must free the returned string.
 */
char *
virDomainGetSchedulerType(virDomainPtr domain, int *nparams)
{
    virConnectPtr conn;
    char *schedtype;

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return NULL;
    }
    conn = domain->conn;

    if (!VIR_IS_CONNECT (conn)) {
        virLibConnError (conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return NULL;
    }

    if (conn->driver->domainGetSchedulerType){
        schedtype = conn->driver->domainGetSchedulerType (domain, nparams);
        return schedtype;
    }

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
}


/**
 * virDomainGetSchedulerParameters:
 * @domain: pointer to domain object
 * @params: pointer to scheduler parameter object
 *          (return value)
 * @nparams: pointer to number of scheduler parameter
 *          (this value should be same than the returned value
 *           nparams of virDomainGetSchedulerType)
 *
 * Get the scheduler parameters, the @params array will be filled with the
 * values.
 *
 * Returns -1 in case of error, 0 in case of success.
 */
int
virDomainGetSchedulerParameters(virDomainPtr domain,
				virSchedParameterPtr params, int *nparams)
{
    virConnectPtr conn;

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return -1;
    }
    conn = domain->conn;

    if (!VIR_IS_CONNECT (conn)) {
        virLibConnError (conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return -1;
    }

    if (conn->driver->domainGetSchedulerParameters)
        return conn->driver->domainGetSchedulerParameters (domain, params, nparams);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
}

/**
 * virDomainSetSchedulerParameters:
 * @domain: pointer to domain object
 * @params: pointer to scheduler parameter objects
 * @nparams: number of scheduler parameter
 *          (this value should be same or less than the returned value
 *           nparams of virDomainGetSchedulerType)
 *
 * Change the scheduler parameters
 *
 * Returns -1 in case of error, 0 in case of success.
 */
int
virDomainSetSchedulerParameters(virDomainPtr domain, 
				virSchedParameterPtr params, int nparams)
{
    virConnectPtr conn;

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return -1;
    }
    conn = domain->conn;

    if (!VIR_IS_CONNECT (conn)) {
        virLibConnError (conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return -1;
    }

    if (conn->driver->domainSetSchedulerParameters)
        return conn->driver->domainSetSchedulerParameters (domain, params, nparams);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
}



1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
/************************************************************************
 *									*
 *		Handling of defined but not running domains		*
 *									*
 ************************************************************************/

/**
 * virDomainDefineXML:
 * @conn: pointer to the hypervisor connection
 * @xml: the XML description for the domain, preferably in UTF-8
 *
 * define a domain, but does not start it
 *
 * Returns NULL in case of error, a pointer to the domain otherwise
 */
virDomainPtr
virDomainDefineXML(virConnectPtr conn, const char *xml) {
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (NULL);
    }
1594 1595 1596 1597
    if (conn->flags & VIR_CONNECT_RO) {
        virLibConnError(conn, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (NULL);
    }
1598 1599 1600 1601 1602
    if (xml == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (NULL);
    }

1603 1604
    if (conn->driver->domainDefineXML)
        return conn->driver->domainDefineXML (conn, xml);
1605

1606 1607
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
}

/**
 * virDomainUndefine:
 * @domain: pointer to a defined domain
 *
 * undefine a domain but does not stop it if it is running
 *
 * Returns 0 in case of success, -1 in case of error
 */
int
virDomainUndefine(virDomainPtr domain) {
1620
    virConnectPtr conn;
1621 1622 1623 1624 1625

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
1626 1627
    conn = domain->conn;
    if (conn->flags & VIR_CONNECT_RO) {
1628 1629 1630 1631
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }

1632 1633
    if (conn->driver->domainUndefine)
        return conn->driver->domainUndefine (domain);
1634

1635 1636
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1637 1638 1639 1640 1641 1642
}

/**
 * virConnectNumOfDefinedDomains:
 * @conn: pointer to the hypervisor connection
 *
1643
 * Provides the number of inactive domains.
1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
 *
 * Returns the number of domain found or -1 in case of error
 */
int
virConnectNumOfDefinedDomains(virConnectPtr conn)
{
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (-1);
    }

1655 1656
    if (conn->driver->numOfDefinedDomains)
        return conn->driver->numOfDefinedDomains (conn);
1657

1658 1659
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
}

/**
 * virConnectListDefinedDomains:
 * @conn: pointer to the hypervisor connection
 * @names: pointer to an array to store the names
 * @maxnames: size of the array
 *
 * list the defined domains, stores the pointers to the names in @names
 * 
 * Returns the number of names provided in the array or -1 in case of error
 */
int
1673
virConnectListDefinedDomains(virConnectPtr conn, char **const names,
1674
                             int maxnames) {
1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (-1);
    }

    if ((names == NULL) || (maxnames <= 0)) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

1685 1686
    if (conn->driver->listDefinedDomains)
        return conn->driver->listDefinedDomains (conn, names, maxnames);
1687

1688 1689
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
}

/**
 * virDomainCreate:
 * @domain: pointer to a defined domain
 *
 * launch a defined domain. If the call succeed the domain moves from the
 * defined to the running domains pools.
 *
 * Returns 0 in case of success, -1 in case of error
 */
int
virDomainCreate(virDomainPtr domain) {
1703
    virConnectPtr conn;
1704

1705 1706 1707 1708
    if (domain == NULL) {
        TODO
	return (-1);
    }
1709 1710 1711 1712
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
1713 1714
    conn = domain->conn;
    if (conn->flags & VIR_CONNECT_RO) {
1715 1716 1717
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
1718

1719 1720 1721 1722 1723
    if (conn->driver->domainCreate)
        return conn->driver->domainCreate (domain);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1724 1725
}

1726 1727 1728
/**
 * virDomainGetAutostart:
 * @domain: a domain object
1729
 * @autostart: the value returned
1730
 *
1731
 * Provides a boolean value indicating whether the domain
1732 1733 1734 1735 1736 1737 1738
 * configured to be automatically started when the host
 * machine boots.
 *
 * Returns -1 in case of error, 0 in case of success
 */
int
virDomainGetAutostart(virDomainPtr domain,
1739 1740 1741
                      int *autostart)
{
    virConnectPtr conn;
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751

    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
    if (!autostart) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

1752 1753 1754 1755 1756 1757 1758
    conn = domain->conn;

    if (conn->driver->domainGetAutostart)
        return conn->driver->domainGetAutostart (domain, autostart);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1759 1760 1761 1762 1763
}

/**
 * virDomainSetAutostart:
 * @domain: a domain object
1764
 * @autostart: whether the domain should be automatically started 0 or 1
1765 1766 1767 1768 1769 1770 1771 1772
 *
 * Configure the domain to be automatically started
 * when the host machine boots.
 *
 * Returns -1 in case of error, 0 in case of success
 */
int
virDomainSetAutostart(virDomainPtr domain,
1773 1774 1775
                      int autostart)
{
    virConnectPtr conn;
1776 1777 1778 1779 1780 1781

    if (!VIR_IS_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }

1782 1783 1784 1785 1786 1787 1788
    conn = domain->conn;

    if (conn->driver->domainSetAutostart)
        return conn->driver->domainSetAutostart (domain, autostart);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1789 1790
}

1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
/**
 * virDomainSetVcpus:
 * @domain: pointer to domain object, or NULL for Domain0
 * @nvcpus: the new number of virtual CPUs for this domain
 *
 * Dynamically change the number of virtual CPUs used by the domain.
 * Note that this call may fail if the underlying virtualization hypervisor
 * does not support it or if growing the number is arbitrary limited.
 * This function requires priviledged access to the hypervisor.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */

int
virDomainSetVcpus(virDomainPtr domain, unsigned int nvcpus)
{
1807 1808
    virConnectPtr conn;

1809 1810 1811 1812 1813 1814 1815 1816
    if (domain == NULL) {
        TODO
	return (-1);
    }
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
1817 1818 1819 1820
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
1821

1822 1823 1824 1825
    if (nvcpus < 1) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }
1826
    conn = domain->conn;
1827

1828 1829
    if (conn->driver->domainSetVcpus)
        return conn->driver->domainSetVcpus (domain, nvcpus);
1830

1831 1832
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856
}

/**
 * virDomainPinVcpu:
 * @domain: pointer to domain object, or NULL for Domain0
 * @vcpu: virtual CPU number
 * @cpumap: pointer to a bit map of real CPUs (in 8-bit bytes) (IN)
 * 	Each bit set to 1 means that corresponding CPU is usable.
 * 	Bytes are stored in little-endian order: CPU0-7, 8-15...
 * 	In each byte, lowest CPU number is least significant bit.
 * @maplen: number of bytes in cpumap, from 1 up to size of CPU map in
 *	underlying virtualization system (Xen...).
 *	If maplen < size, missing bytes are set to zero.
 *	If maplen > size, failure code is returned.
 * 
 * Dynamically change the real CPUs which can be allocated to a virtual CPU.
 * This function requires priviledged access to the hypervisor.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
int
virDomainPinVcpu(virDomainPtr domain, unsigned int vcpu,
                 unsigned char *cpumap, int maplen)
{
1857 1858
    virConnectPtr conn;

1859 1860 1861 1862 1863 1864 1865 1866
    if (domain == NULL) {
        TODO
	return (-1);
    }
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
1867 1868 1869 1870
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
1871

1872
    if ((vcpu > 32000) || (cpumap == NULL) || (maplen < 1)) {
1873 1874 1875
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }
1876

1877 1878
    conn = domain->conn;

1879 1880 1881 1882 1883
    if (conn->driver->domainPinVcpu)
        return conn->driver->domainPinVcpu (domain, vcpu, cpumap, maplen);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
}

/**
 * virDomainGetVcpus:
 * @domain: pointer to domain object, or NULL for Domain0
 * @info: pointer to an array of virVcpuInfo structures (OUT)
 * @maxinfo: number of structures in info array
 * @cpumaps: pointer to an bit map of real CPUs for all vcpus of this
 *      domain (in 8-bit bytes) (OUT)
 *	If cpumaps is NULL, then no cupmap information is returned by the API.
 *	It's assumed there is <maxinfo> cpumap in cpumaps array.
 *	The memory allocated to cpumaps must be (maxinfo * maplen) bytes
 *	(ie: calloc(maxinfo, maplen)).
 *	One cpumap inside cpumaps has the format described in
 *      virDomainPinVcpu() API.
 * @maplen: number of bytes in one cpumap, from 1 up to size of CPU map in
 *	underlying virtualization system (Xen...).
 * 
 * Extract information about virtual CPUs of domain, store it in info array
 * and also in cpumaps if this pointer is'nt NULL.
 *
 * Returns the number of info filled in case of success, -1 in case of failure.
 */
int
virDomainGetVcpus(virDomainPtr domain, virVcpuInfoPtr info, int maxinfo,
		  unsigned char *cpumaps, int maplen)
{
1911
    virConnectPtr conn;
1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928

    if (domain == NULL) {
        TODO
	return (-1);
    }
    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
    if ((info == NULL) || (maxinfo < 1)) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }
    if (cpumaps != NULL && maplen < 1) {
        virLibDomainError(domain, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }
1929

1930 1931
    conn = domain->conn;

1932 1933 1934 1935 1936 1937
    if (conn->driver->domainGetVcpus)
        return conn->driver->domainGetVcpus (domain, info, maxinfo,
                                             cpumaps, maplen);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1938
}
1939

1940 1941 1942 1943
/**
 * virDomainGetMaxVcpus:
 * @domain: pointer to domain object
 * 
1944 1945 1946 1947 1948
 * Provides the maximum number of virtual CPUs supported for
 * the guest VM. If the guest is inactive, this is basically
 * the same as virConnectGetMaxVcpus. If the guest is running
 * this will reflect the maximum number of virtual CPUs the
 * guest was booted with.
1949 1950 1951 1952
 *
 * Returns the maximum of virtual CPU or -1 in case of error.
 */
int
1953 1954
virDomainGetMaxVcpus(virDomainPtr domain)
{
1955 1956 1957 1958 1959 1960 1961 1962 1963
    virConnectPtr conn;

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }

    conn = domain->conn;

1964 1965 1966 1967 1968
    if (conn->driver->domainGetMaxVcpus)
        return conn->driver->domainGetMaxVcpus (domain);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
1969 1970 1971
}


1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995
/**
 * virDomainAttachDevice:
 * @domain: pointer to domain object
 * @xml: pointer to XML description of one device
 * 
 * Create a virtual device attachment to backend.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
int
virDomainAttachDevice(virDomainPtr domain, char *xml)
{
    virConnectPtr conn;

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
    conn = domain->conn;

1996 1997 1998 1999 2000
    if (conn->driver->domainAttachDevice)
        return conn->driver->domainAttachDevice (domain, xml);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
}

/**
 * virDomainDetachDevice:
 * @domain: pointer to domain object
 * @xml: pointer to XML description of one device
 * 
 * Destroy a virtual device attachment to backend.
 *
 * Returns 0 in case of success, -1 in case of failure.
 */
int
virDomainDetachDevice(virDomainPtr domain, char *xml)
{
    virConnectPtr conn;

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virLibDomainError(domain, VIR_ERR_INVALID_DOMAIN, __FUNCTION__);
        return (-1);
    }
    if (domain->conn->flags & VIR_CONNECT_RO) {
        virLibDomainError(domain, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }
    conn = domain->conn;

2027 2028 2029 2030 2031
    if (conn->driver->domainDetachDevice)
        return conn->driver->domainDetachDevice (domain, xml);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2032
}
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049

/**
 * virConnectNumOfNetworks:
 * @conn: pointer to the hypervisor connection
 *
 * Provides the number of active networks.
 *
 * Returns the number of network found or -1 in case of error
 */
int
virConnectNumOfNetworks(virConnectPtr conn)
{
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (-1);
    }

2050 2051
    if (conn->networkDriver && conn->networkDriver->numOfNetworks)
        return conn->networkDriver->numOfNetworks (conn);
2052

2053 2054
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067
}

/**
 * virConnectListNetworks:
 * @conn: pointer to the hypervisor connection
 * @names: array to collect the list of names of active networks
 * @maxnames: size of @names
 *
 * Collect the list of active networks, and store their names in @names
 *
 * Returns the number of networks found or -1 in case of error
 */
int
2068
virConnectListNetworks(virConnectPtr conn, char **const names, int maxnames)
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079
{
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (-1);
    }

    if ((names == NULL) || (maxnames <= 0)) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

2080 2081
    if (conn->networkDriver && conn->networkDriver->listNetworks)
        return conn->networkDriver->listNetworks (conn, names, maxnames);
2082

2083 2084
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102
}

/**
 * virConnectNumOfDefinedNetworks:
 * @conn: pointer to the hypervisor connection
 *
 * Provides the number of inactive networks.
 *
 * Returns the number of networks found or -1 in case of error
 */
int
virConnectNumOfDefinedNetworks(virConnectPtr conn)
{
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (-1);
    }

2103 2104
    if (conn->networkDriver && conn->networkDriver->numOfDefinedNetworks)
        return conn->networkDriver->numOfDefinedNetworks (conn);
2105

2106 2107
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120
}

/**
 * virConnectListDefinedNetworks:
 * @conn: pointer to the hypervisor connection
 * @names: pointer to an array to store the names
 * @maxnames: size of the array
 *
 * list the inactive networks, stores the pointers to the names in @names
 *
 * Returns the number of names provided in the array or -1 in case of error
 */
int
2121
virConnectListDefinedNetworks(virConnectPtr conn, char **const names,
2122 2123
                              int maxnames)
{
2124 2125 2126 2127 2128 2129 2130 2131 2132 2133
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (-1);
    }

    if ((names == NULL) || (maxnames <= 0)) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

2134 2135 2136
    if (conn->networkDriver && conn->networkDriver->listDefinedNetworks)
        return conn->networkDriver->listDefinedNetworks (conn,
                                                         names, maxnames);
2137

2138 2139
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
}

/**
 * virNetworkLookupByName:
 * @conn: pointer to the hypervisor connection
 * @name: name for the network
 *
 * Try to lookup a network on the given hypervisor based on its name.
 *
 * Returns a new network object or NULL in case of failure
 */
virNetworkPtr
virNetworkLookupByName(virConnectPtr conn, const char *name)
{
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (NULL);
    }
    if (name == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (NULL);
    }

2163 2164 2165 2166 2167
    if (conn->networkDriver && conn->networkDriver->networkLookupByName)
        return conn->networkDriver->networkLookupByName (conn, name);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190
}

/**
 * virNetworkLookupByUUID:
 * @conn: pointer to the hypervisor connection
 * @uuid: the raw UUID for the network
 *
 * Try to lookup a network on the given hypervisor based on its UUID.
 *
 * Returns a new network object or NULL in case of failure
 */
virNetworkPtr
virNetworkLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
{
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (NULL);
    }
    if (uuid == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (NULL);
    }

2191 2192
    if (conn->networkDriver && conn->networkDriver->networkLookupByUUID)
        return conn->networkDriver->networkLookupByUUID (conn, uuid);
2193

2194 2195
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272
}

/**
 * virNetworkLookupByUUIDString:
 * @conn: pointer to the hypervisor connection
 * @uuidstr: the string UUID for the network
 *
 * Try to lookup a network on the given hypervisor based on its UUID.
 *
 * Returns a new network object or NULL in case of failure
 */
virNetworkPtr
virNetworkLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
{
    int raw[VIR_UUID_BUFLEN], i;
    unsigned char uuid[VIR_UUID_BUFLEN];
    int ret;

    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (NULL);
    }
    if (uuidstr == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (NULL);
    }

    /* XXX: sexpr_uuid() also supports 'xxxx-xxxx-xxxx-xxxx' format.
     *      We needn't it here. Right?
     */
    ret = sscanf(uuidstr,
                 "%02x%02x%02x%02x-"
                 "%02x%02x-"
                 "%02x%02x-"
                 "%02x%02x-"
                 "%02x%02x%02x%02x%02x%02x",
                 raw + 0, raw + 1, raw + 2, raw + 3,
                 raw + 4, raw + 5, raw + 6, raw + 7,
                 raw + 8, raw + 9, raw + 10, raw + 11,
                 raw + 12, raw + 13, raw + 14, raw + 15);

    if (ret!=VIR_UUID_BUFLEN) {
	virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
	return (NULL);
    }
    for (i = 0; i < VIR_UUID_BUFLEN; i++)
        uuid[i] = raw[i] & 0xFF;

    return virNetworkLookupByUUID(conn, &uuid[0]);
}

/**
 * virNetworkCreateXML:
 * @conn: pointer to the hypervisor connection
 * @xmlDesc: an XML description of the network
 *
 * Create and start a new virtual network, based on an XML description
 * similar to the one returned by virNetworkGetXMLDesc()
 *
 * Returns a new network object or NULL in case of failure
 */
virNetworkPtr
virNetworkCreateXML(virConnectPtr conn, const char *xmlDesc)
{
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (NULL);
    }
    if (xmlDesc == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (NULL);
    }
    if (conn->flags & VIR_CONNECT_RO) {
        virLibConnError(conn, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (NULL);
    }

2273 2274 2275 2276 2277
    if (conn->networkDriver && conn->networkDriver->networkCreateXML)
        return conn->networkDriver->networkCreateXML (conn, xmlDesc);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289
}

/**
 * virNetworkDefineXML:
 * @conn: pointer to the hypervisor connection
 * @xml: the XML description for the network, preferably in UTF-8
 *
 * Define a network, but does not create it
 *
 * Returns NULL in case of error, a pointer to the network otherwise
 */
virNetworkPtr
2290 2291
virNetworkDefineXML(virConnectPtr conn, const char *xml)
{
2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304
    if (!VIR_IS_CONNECT(conn)) {
        virLibConnError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
        return (NULL);
    }
    if (conn->flags & VIR_CONNECT_RO) {
        virLibConnError(conn, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (NULL);
    }
    if (xml == NULL) {
        virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (NULL);
    }

2305 2306
    if (conn->networkDriver && conn->networkDriver->networkDefineXML)
        return conn->networkDriver->networkDefineXML (conn, xml);
2307

2308 2309
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333
}

/**
 * virNetworkUndefine:
 * @network: pointer to a defined network
 *
 * Undefine a network but does not stop it if it is running
 *
 * Returns 0 in case of success, -1 in case of error
 */
int
virNetworkUndefine(virNetworkPtr network) {
    virConnectPtr conn;

    if (!VIR_IS_CONNECTED_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (-1);
    }
    conn = network->conn;
    if (conn->flags & VIR_CONNECT_RO) {
        virLibNetworkError(network, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }

2334 2335
    if (conn->networkDriver && conn->networkDriver->networkUndefine)
        return conn->networkDriver->networkUndefine (network);
2336

2337 2338
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350
}

/**
 * virNetworkCreate:
 * @network: pointer to a defined network
 *
 * Create and start a defined network. If the call succeed the network
 * moves from the defined to the running networks pools.
 *
 * Returns 0 in case of success, -1 in case of error
 */
int
2351 2352
virNetworkCreate(virNetworkPtr network)
{
2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367
    virConnectPtr conn;
    if (network == NULL) {
        TODO
	return (-1);
    }
    if (!VIR_IS_CONNECTED_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (-1);
    }
    conn = network->conn;
    if (conn->flags & VIR_CONNECT_RO) {
        virLibNetworkError(network, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }

2368 2369 2370 2371 2372
    if (conn->networkDriver && conn->networkDriver->networkCreate)
        return conn->networkDriver->networkCreate (network);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402
}

/**
 * virNetworkDestroy:
 * @network: a network object
 *
 * Destroy the network object. The running instance is shutdown if not down
 * already and all resources used by it are given back to the hypervisor.
 * The data structure is freed and should not be used thereafter if the
 * call does not return an error.
 * This function may requires priviledged access
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
virNetworkDestroy(virNetworkPtr network)
{
    virConnectPtr conn;

    if (!VIR_IS_CONNECTED_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (-1);
    }

    conn = network->conn;
    if (conn->flags & VIR_CONNECT_RO) {
        virLibNetworkError(network, VIR_ERR_OPERATION_DENIED, __FUNCTION__);
	return (-1);
    }

2403 2404
    if (conn->networkDriver && conn->networkDriver->networkDestroy)
        return conn->networkDriver->networkDestroy (network);
2405

2406 2407
    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525
}

/**
 * virNetworkFree:
 * @network: a network object
 *
 * Free the network object. The running instance is kept alive.
 * The data structure is freed and should not be used thereafter.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
int
virNetworkFree(virNetworkPtr network)
{
    if (!VIR_IS_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (-1);
    }
    if (virFreeNetwork(network->conn, network) < 0)
        return (-1);
    return(0);
}

/**
 * virNetworkGetName:
 * @network: a network object
 *
 * Get the public name for that network
 *
 * Returns a pointer to the name or NULL, the string need not be deallocated
 * its lifetime will be the same as the network object.
 */
const char *
virNetworkGetName(virNetworkPtr network)
{
    if (!VIR_IS_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (NULL);
    }
    return (network->name);
}

/**
 * virNetworkGetUUID:
 * @network: a network object
 * @uuid: pointer to a VIR_UUID_BUFLEN bytes array
 *
 * Get the UUID for a network
 *
 * Returns -1 in case of error, 0 in case of success
 */
int
virNetworkGetUUID(virNetworkPtr network, unsigned char *uuid)
{
    if (!VIR_IS_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (-1);
    }
    if (uuid == NULL) {
        virLibNetworkError(network, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

    memcpy(uuid, &network->uuid[0], VIR_UUID_BUFLEN);

    return (0);
}

/**
 * virNetworkGetUUIDString:
 * @network: a network object
 * @buf: pointer to a VIR_UUID_STRING_BUFLEN bytes array
 *
 * Get the UUID for a network as string. For more information about
 * UUID see RFC4122.
 *
 * Returns -1 in case of error, 0 in case of success
 */
int
virNetworkGetUUIDString(virNetworkPtr network, char *buf)
{
    unsigned char uuid[VIR_UUID_BUFLEN];

    if (!VIR_IS_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (-1);
    }
    if (buf == NULL) {
        virLibNetworkError(network, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

    if (virNetworkGetUUID(network, &uuid[0]))
	return (-1);

    snprintf(buf, VIR_UUID_STRING_BUFLEN,
	"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
                      uuid[0], uuid[1], uuid[2], uuid[3],
                      uuid[4], uuid[5], uuid[6], uuid[7],
                      uuid[8], uuid[9], uuid[10], uuid[11],
                      uuid[12], uuid[13], uuid[14], uuid[15]);
    return (0);
}

/**
 * virNetworkGetXMLDesc:
 * @network: a network object
 * @flags: and OR'ed set of extraction flags, not used yet
 *
 * Provide an XML description of the network. The description may be reused
 * later to relaunch the network with virNetworkCreateXML().
 *
 * Returns a 0 terminated UTF-8 encoded XML instance, or NULL in case of error.
 *         the caller must free() the returned value.
 */
char *
virNetworkGetXMLDesc(virNetworkPtr network, int flags)
{
2526 2527
    virConnectPtr conn;

2528 2529 2530 2531 2532 2533 2534 2535 2536
    if (!VIR_IS_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (NULL);
    }
    if (flags != 0) {
        virLibNetworkError(network, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (NULL);
    }

2537 2538 2539 2540 2541 2542 2543
    conn = network->conn;

    if (conn->networkDriver && conn->networkDriver->networkDumpXML)
        return conn->networkDriver->networkDumpXML (network, flags);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
2544
}
2545 2546 2547 2548 2549

/**
 * virNetworkGetBridgeName:
 * @network: a network object
 *
2550
 * Provides a bridge interface name to which a domain may connect
2551 2552 2553 2554 2555 2556 2557 2558
 * a network interface in order to join the network.
 *
 * Returns a 0 terminated interface name, or NULL in case of error.
 *         the caller must free() the returned value.
 */
char *
virNetworkGetBridgeName(virNetworkPtr network)
{
2559 2560
    virConnectPtr conn;

2561 2562 2563 2564 2565
    if (!VIR_IS_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (NULL);
    }

2566 2567 2568 2569 2570 2571 2572
    conn = network->conn;

    if (conn->networkDriver && conn->networkDriver->networkGetBridgeName)
        return conn->networkDriver->networkGetBridgeName (network);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return NULL;
2573
}
2574 2575 2576 2577

/**
 * virNetworkGetAutostart:
 * @network: a network object
2578
 * @autostart: the value returned
2579
 *
2580
 * Provides a boolean value indicating whether the network
2581 2582 2583 2584 2585 2586 2587
 * configured to be automatically started when the host
 * machine boots.
 *
 * Returns -1 in case of error, 0 in case of success
 */
int
virNetworkGetAutostart(virNetworkPtr network,
2588 2589 2590
                       int *autostart)
{
    virConnectPtr conn;
2591 2592 2593 2594 2595 2596 2597 2598 2599 2600

    if (!VIR_IS_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (-1);
    }
    if (!autostart) {
        virLibNetworkError(network, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return (-1);
    }

2601 2602 2603 2604 2605 2606 2607
    conn = network->conn;

    if (conn->networkDriver && conn->networkDriver->networkGetAutostart)
        return conn->networkDriver->networkGetAutostart (network, autostart);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2608 2609 2610 2611 2612
}

/**
 * virNetworkSetAutostart:
 * @network: a network object
2613
 * @autostart: whether the network should be automatically started 0 or 1
2614 2615 2616 2617 2618 2619 2620 2621
 *
 * Configure the network to be automatically started
 * when the host machine boots.
 *
 * Returns -1 in case of error, 0 in case of success
 */
int
virNetworkSetAutostart(virNetworkPtr network,
2622 2623 2624
                       int autostart)
{
    virConnectPtr conn;
2625 2626 2627 2628 2629 2630

    if (!VIR_IS_NETWORK(network)) {
        virLibNetworkError(network, VIR_ERR_INVALID_NETWORK, __FUNCTION__);
        return (-1);
    }

2631 2632 2633 2634 2635 2636 2637
    conn = network->conn;

    if (conn->networkDriver && conn->networkDriver->networkSetAutostart)
        return conn->networkDriver->networkSetAutostart (network, autostart);

    virLibConnError (conn, VIR_ERR_CALL_FAILED, __FUNCTION__);
    return -1;
2638
}
2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652

/*
 * vim: set tabstop=4:
 * vim: set shiftwidth=4:
 * vim: set expandtab:
 */
/*
 * Local variables:
 *  indent-tabs-mode: nil
 *  c-indent-level: 4
 *  c-basic-offset: 4
 *  tab-width: 4
 * End:
 */