lxc_driver.c 70.9 KB
Newer Older
D
Daniel Veillard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * Copyright IBM Corp. 2008
 *
 * lxc_driver.c: linux container driver functions
 *
 * Authors:
 *  David L. Leskovec <dlesko at linux.vnet.ibm.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

#include <config.h>

26
#include <fcntl.h>
D
Daniel Veillard 已提交
27 28
#include <sched.h>
#include <sys/utsname.h>
D
David L. Leskovec 已提交
29
#include <stdbool.h>
D
Daniel Veillard 已提交
30 31
#include <string.h>
#include <sys/types.h>
32 33 34
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/poll.h>
D
Daniel Veillard 已提交
35 36 37
#include <unistd.h>
#include <wait.h>

38
#include "virterror_internal.h"
39
#include "logging.h"
40
#include "datatypes.h"
D
Daniel Veillard 已提交
41
#include "lxc_conf.h"
42
#include "lxc_container.h"
D
Daniel Veillard 已提交
43
#include "lxc_driver.h"
44
#include "memory.h"
45
#include "util.h"
46 47
#include "bridge.h"
#include "veth.h"
48
#include "event.h"
49
#include "nodeinfo.h"
50
#include "uuid.h"
51
#include "stats_linux.h"
52
#include "hooks.h"
53

D
Daniel Veillard 已提交
54

55 56
#define VIR_FROM_THIS VIR_FROM_LXC

57 58 59 60 61 62 63 64
typedef struct _lxcDomainObjPrivate lxcDomainObjPrivate;
typedef lxcDomainObjPrivate *lxcDomainObjPrivatePtr;
struct _lxcDomainObjPrivate {
    int monitor;
    int monitorWatch;
};


65
static int lxcStartup(int privileged);
66
static int lxcShutdown(void);
67
static lxc_driver_t *lxc_driver = NULL;
D
Daniel Veillard 已提交
68 69 70

/* Functions */

71 72
static void lxcDriverLock(lxc_driver_t *driver)
{
73
    virMutexLock(&driver->lock);
74 75 76
}
static void lxcDriverUnlock(lxc_driver_t *driver)
{
77
    virMutexUnlock(&driver->lock);
78 79
}

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
static void *lxcDomainObjPrivateAlloc(void)
{
    lxcDomainObjPrivatePtr priv;

    if (VIR_ALLOC(priv) < 0)
        return NULL;

    priv->monitor = -1;
    priv->monitorWatch = -1;

    return priv;
}

static void lxcDomainObjPrivateFree(void *data)
{
    lxcDomainObjPrivatePtr priv = data;

    VIR_FREE(priv);
}


101 102 103 104
static void lxcDomainEventFlush(int timer, void *opaque);
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                virDomainEventPtr event);

105

D
Daniel Veillard 已提交
106 107 108 109 110
static virDrvOpenStatus lxcOpen(virConnectPtr conn,
                                virConnectAuthPtr auth ATTRIBUTE_UNUSED,
                                int flags ATTRIBUTE_UNUSED)
{
    /* Verify uri was specified */
111
    if (conn->uri == NULL) {
112 113
        if (lxc_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
114

115 116
        conn->uri = xmlParseURI("lxc:///");
        if (!conn->uri) {
117
            virReportOOMError();
118 119
            return VIR_DRV_OPEN_ERROR;
        }
120 121 122 123 124 125 126 127 128 129
    } else {
        if (conn->uri->scheme == NULL ||
            STRNEQ(conn->uri->scheme, "lxc"))
            return VIR_DRV_OPEN_DECLINED;

        /* Leave for remote driver */
        if (conn->uri->server != NULL)
            return VIR_DRV_OPEN_DECLINED;

        /* If path isn't '/' then they typoed, tell them correct path */
130 131
        if (conn->uri->path != NULL &&
            STRNEQ(conn->uri->path, "/")) {
132
            lxcError(VIR_ERR_INTERNAL_ERROR,
133
                     _("Unexpected LXC URI path '%s', try lxc:///"),
134 135 136
                     conn->uri->path);
            return VIR_DRV_OPEN_ERROR;
        }
D
Daniel Veillard 已提交
137

138 139
        /* URI was good, but driver isn't active */
        if (lxc_driver == NULL) {
140
            lxcError(VIR_ERR_INTERNAL_ERROR,
141
                     "%s", _("lxc state driver is not active"));
142 143 144
            return VIR_DRV_OPEN_ERROR;
        }
    }
145

146
    conn->privateData = lxc_driver;
D
Daniel Veillard 已提交
147 148 149 150 151 152

    return VIR_DRV_OPEN_SUCCESS;
}

static int lxcClose(virConnectPtr conn)
{
153 154 155 156 157 158
    lxc_driver_t *driver = conn->privateData;

    lxcDriverLock(driver);
    virDomainEventCallbackListRemoveConn(conn, driver->domainEventCallbacks);
    lxcDriverUnlock(driver);

159 160
    conn->privateData = NULL;
    return 0;
D
Daniel Veillard 已提交
161 162
}

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177

static int lxcIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* Trivially secure, since always inside the daemon */
    return 1;
}


static int lxcIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* Not encrypted, but remote driver takes care of that */
    return 0;
}


178 179 180 181 182 183
static char *lxcGetCapabilities(virConnectPtr conn) {
    lxc_driver_t *driver = conn->privateData;
    char *xml;

    lxcDriverLock(driver);
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
184
        virReportOOMError();
185 186 187 188 189 190
    lxcDriverUnlock(driver);

    return xml;
}


D
Daniel Veillard 已提交
191 192 193
static virDomainPtr lxcDomainLookupByID(virConnectPtr conn,
                                        int id)
{
194 195 196
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
197

198
    lxcDriverLock(driver);
199
    vm = virDomainFindByID(&driver->domains, id);
200 201
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
202
    if (!vm) {
203
        lxcError(VIR_ERR_NO_DOMAIN, NULL);
204
        goto cleanup;
D
Daniel Veillard 已提交
205 206 207
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
208
    if (dom)
D
Daniel Veillard 已提交
209 210
        dom->id = vm->def->id;

211
cleanup:
212 213
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
214 215 216 217 218 219
    return dom;
}

static virDomainPtr lxcDomainLookupByUUID(virConnectPtr conn,
                                          const unsigned char *uuid)
{
220 221 222
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
223

224
    lxcDriverLock(driver);
225
    vm = virDomainFindByUUID(&driver->domains, uuid);
226 227
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
228
    if (!vm) {
229
        lxcError(VIR_ERR_NO_DOMAIN, NULL);
230
        goto cleanup;
D
Daniel Veillard 已提交
231 232 233
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
234
    if (dom)
D
Daniel Veillard 已提交
235 236
        dom->id = vm->def->id;

237
cleanup:
238 239
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
240 241 242 243 244 245
    return dom;
}

static virDomainPtr lxcDomainLookupByName(virConnectPtr conn,
                                          const char *name)
{
246 247 248
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
249

250
    lxcDriverLock(driver);
251
    vm = virDomainFindByName(&driver->domains, name);
252
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
253
    if (!vm) {
254
        lxcError(VIR_ERR_NO_DOMAIN, NULL);
255
        goto cleanup;
D
Daniel Veillard 已提交
256 257 258
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
259
    if (dom)
D
Daniel Veillard 已提交
260 261
        dom->id = vm->def->id;

262
cleanup:
263 264
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
265 266 267
    return dom;
}

268 269 270 271 272 273 274 275 276 277 278

static int lxcDomainIsActive(virDomainPtr dom)
{
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr obj;
    int ret = -1;

    lxcDriverLock(driver);
    obj = virDomainFindByUUID(&driver->domains, dom->uuid);
    lxcDriverUnlock(driver);
    if (!obj) {
279
        lxcError(VIR_ERR_NO_DOMAIN, NULL);
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
        goto cleanup;
    }
    ret = virDomainObjIsActive(obj);

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


static int lxcDomainIsPersistent(virDomainPtr dom)
{
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr obj;
    int ret = -1;

    lxcDriverLock(driver);
    obj = virDomainFindByUUID(&driver->domains, dom->uuid);
    lxcDriverUnlock(driver);
    if (!obj) {
301
        lxcError(VIR_ERR_NO_DOMAIN, NULL);
302 303 304 305 306 307 308 309 310 311 312
        goto cleanup;
    }
    ret = obj->persistent;

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


313
static int lxcListDomains(virConnectPtr conn, int *ids, int nids) {
314
    lxc_driver_t *driver = conn->privateData;
315
    int n;
316

317
    lxcDriverLock(driver);
318
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
319
    lxcDriverUnlock(driver);
320

321
    return n;
D
Daniel Veillard 已提交
322
}
323

324
static int lxcNumDomains(virConnectPtr conn) {
325
    lxc_driver_t *driver = conn->privateData;
326
    int n;
327

328
    lxcDriverLock(driver);
329
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
330
    lxcDriverUnlock(driver);
331

332
    return n;
D
Daniel Veillard 已提交
333 334 335
}

static int lxcListDefinedDomains(virConnectPtr conn,
336
                                 char **const names, int nnames) {
337
    lxc_driver_t *driver = conn->privateData;
338
    int n;
339

340
    lxcDriverLock(driver);
341
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
342
    lxcDriverUnlock(driver);
343

344
    return n;
D
Daniel Veillard 已提交
345 346 347
}


348
static int lxcNumDefinedDomains(virConnectPtr conn) {
349
    lxc_driver_t *driver = conn->privateData;
350
    int n;
351

352
    lxcDriverLock(driver);
353
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
354
    lxcDriverUnlock(driver);
355

356
    return n;
D
Daniel Veillard 已提交
357 358
}

359 360


D
Daniel Veillard 已提交
361 362
static virDomainPtr lxcDomainDefine(virConnectPtr conn, const char *xml)
{
363 364
    lxc_driver_t *driver = conn->privateData;
    virDomainDefPtr def = NULL;
365
    virDomainObjPtr vm = NULL;
366
    virDomainPtr dom = NULL;
367
    virDomainEventPtr event = NULL;
368
    int dupVM;
D
Daniel Veillard 已提交
369

370
    lxcDriverLock(driver);
371
    if (!(def = virDomainDefParseString(driver->caps, xml,
372
                                        VIR_DOMAIN_XML_INACTIVE)))
373
        goto cleanup;
D
Daniel Veillard 已提交
374

375 376
   if ((dupVM = virDomainObjIsDuplicate(&driver->domains, def, 0)) < 0)
        goto cleanup;
377

378
    if ((def->nets != NULL) && !(driver->have_netns)) {
379
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
380
                 "%s", _("System lacks NETNS support"));
381
        goto cleanup;
382 383
    }

384
    if (!(vm = virDomainAssignDef(driver->caps,
385
                                  &driver->domains, def, false)))
386 387
        goto cleanup;
    def = NULL;
388
    vm->persistent = 1;
D
Daniel Veillard 已提交
389

390
    if (virDomainSaveConfig(driver->configDir,
391
                            vm->newDef ? vm->newDef : vm->def) < 0) {
392
        virDomainRemoveInactive(&driver->domains, vm);
393
        vm = NULL;
394
        goto cleanup;
D
Daniel Veillard 已提交
395 396
    }

397 398
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_DEFINED,
399
                                     !dupVM ?
400 401 402
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                     VIR_DOMAIN_EVENT_DEFINED_UPDATED);

D
Daniel Veillard 已提交
403
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
404
    if (dom)
D
Daniel Veillard 已提交
405 406
        dom->id = vm->def->id;

407 408
cleanup:
    virDomainDefFree(def);
409 410
    if (vm)
        virDomainObjUnlock(vm);
411 412
    if (event)
        lxcDomainEventQueue(driver, event);
413
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
414 415 416 417 418
    return dom;
}

static int lxcDomainUndefine(virDomainPtr dom)
{
419 420
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
421
    virDomainEventPtr event = NULL;
422
    int ret = -1;
D
Daniel Veillard 已提交
423

424
    lxcDriverLock(driver);
425
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
D
Daniel Veillard 已提交
426
    if (!vm) {
427
        lxcError(VIR_ERR_INVALID_DOMAIN,
428
                 "%s", _("No domain with matching uuid"));
429
        goto cleanup;
D
Daniel Veillard 已提交
430 431
    }

D
Daniel P. Berrange 已提交
432
    if (virDomainObjIsActive(vm)) {
433
        lxcError(VIR_ERR_OPERATION_INVALID,
434
                 "%s", _("Cannot delete active domain"));
435
        goto cleanup;
D
Daniel Veillard 已提交
436 437
    }

438
    if (!vm->persistent) {
439
        lxcError(VIR_ERR_OPERATION_INVALID,
440
                 "%s", _("Cannot undefine transient domain"));
441
        goto cleanup;
442
    }
D
Daniel Veillard 已提交
443

444
    if (virDomainDeleteConfig(driver->configDir,
445
                              driver->autostartDir,
446 447
                              vm) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
448

449 450 451 452
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

453
    virDomainRemoveInactive(&driver->domains, vm);
454
    vm = NULL;
455
    ret = 0;
D
Daniel Veillard 已提交
456

457
cleanup:
458 459
    if (vm)
        virDomainObjUnlock(vm);
460 461
    if (event)
        lxcDomainEventQueue(driver, event);
462
    lxcDriverUnlock(driver);
463
    return ret;
D
Daniel Veillard 已提交
464 465 466 467 468
}

static int lxcDomainGetInfo(virDomainPtr dom,
                            virDomainInfoPtr info)
{
469 470
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
471
    virCgroupPtr cgroup = NULL;
472
    int ret = -1;
D
Daniel Veillard 已提交
473

474
    lxcDriverLock(driver);
475
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
476

D
Daniel Veillard 已提交
477
    if (!vm) {
478
        lxcError(VIR_ERR_INVALID_DOMAIN,
479
                 "%s", _("No domain with matching uuid"));
480
        goto cleanup;
D
Daniel Veillard 已提交
481 482 483 484
    }

    info->state = vm->state;

D
Daniel P. Berrange 已提交
485
    if (!virDomainObjIsActive(vm) || driver->cgroup == NULL) {
D
Daniel Veillard 已提交
486
        info->cpuTime = 0;
R
Ryota Ozaki 已提交
487
        info->memory = vm->def->memory;
D
Daniel Veillard 已提交
488
    } else {
489
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
490
            lxcError(VIR_ERR_INTERNAL_ERROR,
491
                     _("Unable to get cgroup for %s"), vm->def->name);
492 493 494 495
            goto cleanup;
        }

        if (virCgroupGetCpuacctUsage(cgroup, &(info->cpuTime)) < 0) {
496
            lxcError(VIR_ERR_OPERATION_FAILED,
497
                     "%s", _("Cannot read cputime for domain"));
R
Ryota Ozaki 已提交
498 499 500
            goto cleanup;
        }
        if (virCgroupGetMemoryUsage(cgroup, &(info->memory)) < 0) {
501
            lxcError(VIR_ERR_OPERATION_FAILED,
502
                     "%s", _("Cannot read memory usage for domain"));
503 504
            goto cleanup;
        }
D
Daniel Veillard 已提交
505 506
    }

507
    info->maxMem = vm->def->maxmem;
D
Daniel Veillard 已提交
508
    info->nrVirtCpu = 1;
509
    ret = 0;
D
Daniel Veillard 已提交
510

511
cleanup:
512
    lxcDriverUnlock(driver);
513 514
    if (cgroup)
        virCgroupFree(&cgroup);
515 516
    if (vm)
        virDomainObjUnlock(vm);
517
    return ret;
D
Daniel Veillard 已提交
518 519
}

520
static char *lxcGetOSType(virDomainPtr dom)
D
Daniel Veillard 已提交
521
{
522 523 524
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
525

526
    lxcDriverLock(driver);
527
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
528 529
    lxcDriverUnlock(driver);

530
    if (!vm) {
531
        lxcError(VIR_ERR_INVALID_DOMAIN,
532
                 "%s", _("No domain with matching uuid"));
533
        goto cleanup;
534 535
    }

536 537
    ret = strdup(vm->def->os.type);

538
    if (ret == NULL)
539
        virReportOOMError();
540

541
cleanup:
542 543
    if (vm)
        virDomainObjUnlock(vm);
544
    return ret;
D
Daniel Veillard 已提交
545 546
}

R
Ryota Ozaki 已提交
547 548 549 550 551 552 553 554 555 556 557 558 559
/* Returns max memory in kb, 0 if error */
static unsigned long lxcDomainGetMaxMemory(virDomainPtr dom) {
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    unsigned long ret = 0;

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    lxcDriverUnlock(driver);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
560
        lxcError(VIR_ERR_NO_DOMAIN,
561
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
        goto cleanup;
    }

    ret = vm->def->maxmem;

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

static int lxcDomainSetMaxMemory(virDomainPtr dom, unsigned long newmax) {
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    lxcDriverUnlock(driver);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
585
        lxcError(VIR_ERR_NO_DOMAIN,
586
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
587 588 589 590
        goto cleanup;
    }

    if (newmax < vm->def->memory) {
591
        lxcError(VIR_ERR_INVALID_ARG,
592
                         "%s", _("Cannot set max memory lower than current memory"));
R
Ryota Ozaki 已提交
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
        goto cleanup;
    }

    vm->def->maxmem = newmax;
    ret = 0;

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

static int lxcDomainSetMemory(virDomainPtr dom, unsigned long newmem) {
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    virCgroupPtr cgroup = NULL;
    int ret = -1;

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    lxcDriverUnlock(driver);
    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
617
        lxcError(VIR_ERR_NO_DOMAIN,
618
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
619 620 621 622
        goto cleanup;
    }

    if (newmem > vm->def->maxmem) {
623
        lxcError(VIR_ERR_INVALID_ARG,
624
                 "%s", _("Cannot set memory higher than max memory"));
R
Ryota Ozaki 已提交
625 626 627
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
628
    if (virDomainObjIsActive(vm)) {
629 630 631 632 633 634
        if (driver->cgroup == NULL) {
            lxcError(VIR_ERR_NO_SUPPORT,
                     "%s", _("cgroups must be configured on the host"));
            goto cleanup;
        }

R
Ryota Ozaki 已提交
635
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
636
            lxcError(VIR_ERR_INTERNAL_ERROR,
637
                     _("Unable to get cgroup for %s"), vm->def->name);
R
Ryota Ozaki 已提交
638 639 640 641
            goto cleanup;
        }

        if (virCgroupSetMemory(cgroup, newmem) < 0) {
642
            lxcError(VIR_ERR_OPERATION_FAILED,
643
                     "%s", _("Failed to set memory for domain"));
R
Ryota Ozaki 已提交
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
            goto cleanup;
        }
    } else {
        vm->def->memory = newmem;
    }
    ret = 0;

cleanup:
    if (vm)
        virDomainObjUnlock(vm);
    if (cgroup)
        virCgroupFree(&cgroup);
    return ret;
}

D
Daniel Veillard 已提交
659
static char *lxcDomainDumpXML(virDomainPtr dom,
660
                              int flags)
D
Daniel Veillard 已提交
661
{
662 663 664
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
D
Daniel Veillard 已提交
665

666
    lxcDriverLock(driver);
667
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
668 669
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
670
    if (!vm) {
671
        lxcError(VIR_ERR_INVALID_DOMAIN,
672
                 "%s", _("No domain with matching uuid"));
673
        goto cleanup;
D
Daniel Veillard 已提交
674 675
    }

676
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) &&
677 678 679 680
                             vm->newDef ? vm->newDef : vm->def,
                             flags);

cleanup:
681 682
    if (vm)
        virDomainObjUnlock(vm);
683
    return ret;
D
Daniel Veillard 已提交
684 685
}

686 687 688

/**
 * lxcVmCleanup:
689 690 691
 * @conn: pointer to connection
 * @driver: pointer to driver structure
 * @vm: pointer to VM to clean up
692 693 694 695 696 697 698
 *
 * waitpid() on the container process.  kill and wait the tty process
 * This is called by both lxcDomainDestroy and lxcSigHandler when a
 * container exits.
 *
 * Returns 0 on success or -1 in case of error
 */
699
static int lxcVmCleanup(lxc_driver_t *driver,
700
                        virDomainObjPtr  vm)
701 702 703 704
{
    int rc = -1;
    int waitRc;
    int childStatus = -1;
D
Dan Smith 已提交
705
    virCgroupPtr cgroup;
706
    int i;
707
    lxcDomainObjPrivatePtr priv = vm->privateData;
708 709 710 711 712 713

    while (((waitRc = waitpid(vm->pid, &childStatus, 0)) == -1) &&
           errno == EINTR)
        ; /* empty */

    if ((waitRc != vm->pid) && (errno != ECHILD)) {
714
        virReportSystemError(errno,
715 716
                             _("waitpid failed to wait for container %d: %d"),
                             vm->pid, waitRc);
717 718 719 720 721 722 723 724 725
    }

    rc = 0;

    if (WIFEXITED(childStatus)) {
        rc = WEXITSTATUS(childStatus);
        DEBUG("container exited with rc: %d", rc);
    }

726 727 728 729 730 731 732 733 734 735
    /* now that we know it's stopped call the hook if present */
    if (virHookPresent(VIR_HOOK_DRIVER_LXC)) {
        char *xml = virDomainDefFormat(vm->def, 0);

        /* we can't stop the operation even if the script raised an error */
        virHookCall(VIR_HOOK_DRIVER_LXC, vm->def->name,
                    VIR_HOOK_LXC_OP_STOPPED, VIR_HOOK_SUBOP_END, NULL, xml);
        VIR_FREE(xml);
    }

736 737
    virEventRemoveHandle(priv->monitorWatch);
    close(priv->monitor);
738 739

    virFileDeletePid(driver->stateDir, vm->def->name);
740
    virDomainDeleteConfig(driver->stateDir, NULL, vm);
741 742 743 744

    vm->state = VIR_DOMAIN_SHUTOFF;
    vm->pid = -1;
    vm->def->id = -1;
745 746
    priv->monitor = -1;
    priv->monitorWatch = -1;
747

748 749 750
    for (i = 0 ; i < vm->def->nnets ; i++) {
        vethInterfaceUpOrDown(vm->def->nets[i]->ifname, 0);
        vethDelete(vm->def->nets[i]->ifname);
751 752
    }

753 754
    if (driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0) {
D
Dan Smith 已提交
755 756 757 758
        virCgroupRemove(cgroup);
        virCgroupFree(&cgroup);
    }

759 760 761 762 763 764 765
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }

766 767 768
    return rc;
}

769 770
/**
 * lxcSetupInterfaces:
771
 * @conn: pointer to connection
772
 * @def: pointer to virtual machine structure
773 774
 * @nveths: number of interfaces
 * @veths: interface names
775 776 777 778 779 780 781 782
 *
 * Sets up the container interfaces by creating the veth device pairs and
 * attaching the parent end to the appropriate bridge.  The container end
 * will moved into the container namespace later after clone has been called.
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcSetupInterfaces(virConnectPtr conn,
783
                              virDomainDefPtr def,
784 785
                              unsigned int *nveths,
                              char ***veths)
786
{
787
    int rc = -1, i;
788
    char *bridge = NULL;
789 790
    char parentVeth[PATH_MAX] = "";
    char containerVeth[PATH_MAX] = "";
791
    brControl *brctl = NULL;
792

793
    if (brInit(&brctl) != 0)
794 795
        return -1;

796 797
    for (i = 0 ; i < def->nnets ; i++) {
        switch (def->nets[i]->type) {
798 799 800
        case VIR_DOMAIN_NET_TYPE_NETWORK:
        {
            virNetworkPtr network = virNetworkLookupByName(conn,
801
                                                           def->nets[i]->data.network.name);
802 803 804 805 806 807 808
            if (!network) {
                goto error_exit;
            }

            bridge = virNetworkGetBridgeName(network);

            virNetworkFree(network);
809 810 811
            break;
        }
        case VIR_DOMAIN_NET_TYPE_BRIDGE:
812
            bridge = def->nets[i]->data.bridge.brname;
813
            break;
S
Stefan Berger 已提交
814 815 816 817 818 819 820 821 822 823

        case VIR_DOMAIN_NET_TYPE_USER:
        case VIR_DOMAIN_NET_TYPE_ETHERNET:
        case VIR_DOMAIN_NET_TYPE_SERVER:
        case VIR_DOMAIN_NET_TYPE_CLIENT:
        case VIR_DOMAIN_NET_TYPE_MCAST:
        case VIR_DOMAIN_NET_TYPE_INTERNAL:
        case VIR_DOMAIN_NET_TYPE_DIRECT:
        case VIR_DOMAIN_NET_TYPE_LAST:
            break;
824 825 826 827
        }

        DEBUG("bridge: %s", bridge);
        if (NULL == bridge) {
828
            lxcError(VIR_ERR_INTERNAL_ERROR,
829
                     "%s", _("Failed to get bridge for interface"));
830 831 832 833
            goto error_exit;
        }

        DEBUG0("calling vethCreate()");
834 835
        if (NULL != def->nets[i]->ifname) {
            strcpy(parentVeth, def->nets[i]->ifname);
836 837 838
        }
        DEBUG("parentVeth: %s, containerVeth: %s", parentVeth, containerVeth);
        if (0 != (rc = vethCreate(parentVeth, PATH_MAX, containerVeth, PATH_MAX))) {
839
            lxcError(VIR_ERR_INTERNAL_ERROR,
840
                     _("Failed to create veth device pair: %d"), rc);
841 842
            goto error_exit;
        }
843 844
        if (NULL == def->nets[i]->ifname) {
            def->nets[i]->ifname = strdup(parentVeth);
845
        }
846
        if (VIR_REALLOC_N(*veths, (*nveths)+1) < 0) {
847
            virReportOOMError();
848
            goto error_exit;
849 850
        }
        if (((*veths)[(*nveths)] = strdup(containerVeth)) == NULL) {
851
            virReportOOMError();
852
            goto error_exit;
853 854
        }
        (*nveths)++;
855

856
        if (NULL == def->nets[i]->ifname) {
857
            virReportOOMError();
858 859 860
            goto error_exit;
        }

861
        {
862 863 864
            char macaddr[VIR_MAC_STRING_BUFLEN];
            virFormatMacAddr(def->nets[i]->mac, macaddr);
            if (0 != (rc = setMacAddr(containerVeth, macaddr))) {
865
                virReportSystemError(rc,
866
                                     _("Failed to set %s to %s"),
867 868 869 870 871
                                     macaddr, containerVeth);
                goto error_exit;
            }
        }

872
        if (0 != (rc = brAddInterface(brctl, bridge, parentVeth))) {
873
            virReportSystemError(rc,
874
                                 _("Failed to add %s device to %s"),
875
                                 parentVeth, bridge);
876 877 878 879
            goto error_exit;
        }

        if (0 != (rc = vethInterfaceUpOrDown(parentVeth, 1))) {
880
            virReportSystemError(rc,
881 882
                                 _("Failed to enable %s device"),
                                 parentVeth);
883 884 885 886 887 888 889 890
            goto error_exit;
        }

    }

    rc = 0;

error_exit:
891
    brShutdown(brctl);
892 893 894
    return rc;
}

895

896
static int lxcMonitorClient(lxc_driver_t * driver,
897
                            virDomainObjPtr vm)
898
{
899 900 901
    char *sockpath = NULL;
    int fd;
    struct sockaddr_un addr;
902

903 904
    if (virAsprintf(&sockpath, "%s/%s.sock",
                    driver->stateDir, vm->def->name) < 0) {
905
        virReportOOMError();
906 907 908 909
        return -1;
    }

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
910
        virReportSystemError(errno, "%s",
911
                             _("Failed to create client socket"));
912
        goto error;
913 914
    }

915 916
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
917
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
918
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
919 920 921
                 _("Socket path %s too big for destination"), sockpath);
        goto error;
    }
922 923

    if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
924
        virReportSystemError(errno, "%s",
925
                             _("Failed to connect to client socket"));
926
        goto error;
927 928
    }

929 930
    VIR_FREE(sockpath);
    return fd;
931

932 933 934 935 936 937 938 939
error:
    VIR_FREE(sockpath);
    if (fd != -1)
        close(fd);
    return -1;
}


940
static int lxcVmTerminate(lxc_driver_t *driver,
941
                          virDomainObjPtr vm,
942 943 944 945
                          int signum)
{
    if (signum == 0)
        signum = SIGINT;
946

947
    if (vm->pid <= 0) {
948
        lxcError(VIR_ERR_INTERNAL_ERROR,
949
                 _("Invalid PID %d for container"), vm->pid);
950 951 952
        return -1;
    }

953 954
    if (kill(vm->pid, signum) < 0) {
        if (errno != ESRCH) {
955
            virReportSystemError(errno,
956
                                 _("Failed to kill pid %d"),
957
                                 vm->pid);
958
            return -1;
959
        }
960 961
    }

962
    vm->state = VIR_DOMAIN_SHUTDOWN;
963

964
    return lxcVmCleanup(driver, vm);
965
}
966

967 968
static void lxcMonitorEvent(int watch,
                            int fd,
969 970 971
                            int events ATTRIBUTE_UNUSED,
                            void *data)
{
972 973
    lxc_driver_t *driver = lxc_driver;
    virDomainObjPtr vm = data;
974
    virDomainEventPtr event = NULL;
975
    lxcDomainObjPrivatePtr priv;
976

977
    lxcDriverLock(driver);
978 979
    virDomainObjLock(vm);
    lxcDriverUnlock(driver);
980

981 982 983
    priv = vm->privateData;

    if (priv->monitor != fd || priv->monitorWatch != watch) {
984
        virEventRemoveHandle(watch);
985
        goto cleanup;
986 987
    }

988
    if (lxcVmTerminate(driver, vm, SIGINT) < 0) {
989
        virEventRemoveHandle(watch);
990 991 992 993 994
    } else {
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
    }
995 996 997 998
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
999 1000

cleanup:
1001 1002
    if (vm)
        virDomainObjUnlock(vm);
1003 1004
    if (event) {
        lxcDriverLock(driver);
1005
        lxcDomainEventQueue(driver, event);
1006 1007
        lxcDriverUnlock(driver);
    }
1008 1009 1010
}


1011
static int lxcControllerStart(lxc_driver_t *driver,
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
                              virDomainObjPtr vm,
                              int nveths,
                              char **veths,
                              int appPty,
                              int logfd)
{
    int i;
    int rc;
    int largc = 0, larga = 0;
    const char **largv = NULL;
A
Amy Griffis 已提交
1022 1023 1024 1025 1026
    int lenvc = 0, lenva = 0;
    const char **lenv = NULL;
    char *filterstr;
    char *outputstr;
    char *tmp;
A
Amy Griffis 已提交
1027
    int log_level;
1028 1029
    pid_t child;
    int status;
1030 1031
    fd_set keepfd;
    char appPtyStr[30];
1032
    const char *emulator;
1033 1034

    FD_ZERO(&keepfd);
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057

#define ADD_ARG_SPACE                                                   \
    do { \
        if (largc == larga) {                                           \
            larga += 10;                                                \
            if (VIR_REALLOC_N(largv, larga) < 0)                        \
                goto no_memory;                                         \
        }                                                               \
    } while (0)

#define ADD_ARG(thisarg)                                                \
    do {                                                                \
        ADD_ARG_SPACE;                                                  \
        largv[largc++] = thisarg;                                       \
    } while (0)

#define ADD_ARG_LIT(thisarg)                                            \
    do {                                                                \
        ADD_ARG_SPACE;                                                  \
        if ((largv[largc++] = strdup(thisarg)) == NULL)                 \
            goto no_memory;                                             \
    } while (0)

A
Amy Griffis 已提交
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
#define ADD_ENV_SPACE                                                   \
    do {                                                                \
        if (lenvc == lenva) {                                           \
            lenva += 10;                                                \
            if (VIR_REALLOC_N(lenv, lenva) < 0)                         \
                goto no_memory;                                         \
        }                                                               \
    } while (0)

#define ADD_ENV(thisarg)                                                \
    do {                                                                \
        ADD_ENV_SPACE;                                                  \
        lenv[lenvc++] = thisarg;                                        \
    } while (0)

#define ADD_ENV_PAIR(envname, val)                                      \
    do {                                                                \
        char *envval;                                                   \
        ADD_ENV_SPACE;                                                  \
        if (virAsprintf(&envval, "%s=%s", envname, val) < 0)            \
            goto no_memory;                                             \
        lenv[lenvc++] = envval;                                         \
    } while (0)

1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
#define ADD_ENV_COPY(envname)                                           \
    do {                                                                \
        char *val = getenv(envname);                                    \
        if (val != NULL) {                                              \
            ADD_ENV_PAIR(envname, val);                                 \
        }                                                               \
    } while (0)

    /*
     * The controller may call ip command, so we have to remain PATH.
     */
    ADD_ENV_COPY("PATH");

A
Amy Griffis 已提交
1095 1096
    log_level = virLogGetDefaultPriority();
    if (virAsprintf(&tmp, "LIBVIRT_DEBUG=%d", log_level) < 0)
A
Amy Griffis 已提交
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
        goto no_memory;
    ADD_ENV(tmp);

    if (virLogGetNbFilters() > 0) {
        filterstr = virLogGetFilters();
        if (!filterstr)
            goto no_memory;
        ADD_ENV_PAIR("LIBVIRT_LOG_FILTERS", filterstr);
        VIR_FREE(filterstr);
    }

A
Amy Griffis 已提交
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
    if (driver->log_libvirtd) {
        if (virLogGetNbOutputs() > 0) {
            outputstr = virLogGetOutputs();
            if (!outputstr)
                goto no_memory;
            ADD_ENV_PAIR("LIBVIRT_LOG_OUTPUTS", outputstr);
            VIR_FREE(outputstr);
        }
    } else {
        if (virAsprintf(&tmp, "LIBVIRT_LOG_OUTPUTS=%d:stderr", log_level) < 0)
A
Amy Griffis 已提交
1118
            goto no_memory;
A
Amy Griffis 已提交
1119
        ADD_ENV(tmp);
A
Amy Griffis 已提交
1120 1121 1122 1123
    }

    ADD_ENV(NULL);

1124 1125
    snprintf(appPtyStr, sizeof(appPtyStr), "%d", appPty);

1126 1127 1128
    emulator = vm->def->emulator;

    ADD_ARG_LIT(emulator);
1129 1130 1131
    ADD_ARG_LIT("--name");
    ADD_ARG_LIT(vm->def->name);
    ADD_ARG_LIT("--console");
1132
    ADD_ARG_LIT(appPtyStr);
1133 1134 1135 1136 1137 1138 1139 1140 1141
    ADD_ARG_LIT("--background");

    for (i = 0 ; i < nveths ; i++) {
        ADD_ARG_LIT("--veth");
        ADD_ARG_LIT(veths[i]);
    }

    ADD_ARG(NULL);

1142 1143
    FD_SET(appPty, &keepfd);

1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
    /* now that we know it is about to start call the hook if present */
    if (virHookPresent(VIR_HOOK_DRIVER_LXC)) {
        char *xml = virDomainDefFormat(vm->def, 0);
        int hookret;

        hookret = virHookCall(VIR_HOOK_DRIVER_LXC, vm->def->name,
                    VIR_HOOK_LXC_OP_START, VIR_HOOK_SUBOP_BEGIN, NULL, xml);
        VIR_FREE(xml);

        /*
         * If the script raised an error abort the launch
         */
        if (hookret < 0)
            goto cleanup;
    }

1160
    if (virExec(largv, lenv, &keepfd, &child,
1161
                -1, &logfd, &logfd,
1162 1163 1164 1165 1166 1167 1168 1169 1170
                VIR_EXEC_NONE) < 0)
        goto cleanup;

    /* We now wait for the process to exit - the controller
     * will fork() itself into the background - waiting for
     * it to exit thus guarentees it has written its pidfile
     */
    while ((rc = waitpid(child, &status, 0) == -1) && errno == EINTR);
    if (rc == -1) {
1171
        virReportSystemError(errno,
1172
                             _("Cannot wait for '%s'"),
1173
                             largv[0]);
1174 1175 1176 1177
        goto cleanup;
    }

    if (!(WIFEXITED(status) && WEXITSTATUS(status) == 0)) {
1178
        lxcError(VIR_ERR_INTERNAL_ERROR,
1179
                 _("Container '%s' unexpectedly shutdown during startup"),
1180 1181 1182 1183 1184 1185 1186
                 largv[0]);
        goto cleanup;
    }

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
A
Amy Griffis 已提交
1187 1188
#undef ADD_ENV_SPACE
#undef ADD_ENV_PAIR
1189

A
Amy Griffis 已提交
1190
    return 0;
1191 1192

no_memory:
1193
    virReportOOMError();
A
Amy Griffis 已提交
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
cleanup:
    if (largv) {
        for (i = 0 ; i < largc ; i++)
            VIR_FREE(largv[i]);
        VIR_FREE(largv);
    }
    if (lenv) {
        for (i=0 ; i < lenvc ; i++)
            VIR_FREE(lenv[i]);
        VIR_FREE(lenv);
    }
    return -1;
1206 1207 1208
}


1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
/**
 * lxcVmStart:
 * @conn: pointer to connection
 * @driver: pointer to driver structure
 * @vm: pointer to virtual machine structure
 *
 * Starts a vm
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcVmStart(virConnectPtr conn,
                      lxc_driver_t * driver,
1221
                      virDomainObjPtr  vm)
1222
{
1223
    int rc = -1, r;
1224 1225
    unsigned int i;
    int parentTty;
1226
    char *parentTtyPath = NULL;
1227 1228 1229 1230
    char *logfile = NULL;
    int logfd = -1;
    unsigned int nveths = 0;
    char **veths = NULL;
1231
    lxcDomainObjPrivatePtr priv = vm->privateData;
1232

L
Laine Stump 已提交
1233
    if ((r = virFileMakePath(driver->logDir)) != 0) {
1234
        virReportSystemError(r,
1235
                             _("Cannot create log directory '%s'"),
1236
                             driver->logDir);
1237 1238
        return -1;
    }
1239

1240 1241
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1242
        virReportOOMError();
1243
        return -1;
1244 1245
    }

1246
    /* open parent tty */
1247
    if (virFileOpenTty(&parentTty, &parentTtyPath, 1) < 0) {
1248
        virReportSystemError(errno, "%s",
1249
                             _("Failed to allocate tty"));
1250 1251
        goto cleanup;
    }
1252 1253 1254 1255 1256 1257 1258
    if (vm->def->console &&
        vm->def->console->type == VIR_DOMAIN_CHR_TYPE_PTY) {
        VIR_FREE(vm->def->console->data.file.path);
        vm->def->console->data.file.path = parentTtyPath;
    } else {
        VIR_FREE(parentTtyPath);
    }
1259

1260
    if (lxcSetupInterfaces(conn, vm->def, &nveths, &veths) != 0)
1261
        goto cleanup;
1262

1263
    /* Persist the live configuration now we have veth & tty info */
1264
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
1265 1266
        goto cleanup;

1267
    if ((logfd = open(logfile, O_WRONLY | O_APPEND | O_CREAT,
1268
             S_IRUSR|S_IWUSR)) < 0) {
1269
        virReportSystemError(errno,
1270
                             _("Failed to open '%s'"),
1271
                             logfile);
1272
        goto cleanup;
1273 1274
    }

1275
    if (lxcControllerStart(driver,
1276 1277 1278
                           vm,
                           nveths, veths,
                           parentTty, logfd) < 0)
1279
        goto cleanup;
1280 1281 1282 1283

    /* Connect to the controller as a client *first* because
     * this will block until the child has written their
     * pid file out to disk */
1284
    if ((priv->monitor = lxcMonitorClient(driver, vm)) < 0)
1285 1286
        goto cleanup;

1287
    /* And get its pid */
1288
    if ((r = virFileReadPid(driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1289
        virReportSystemError(r,
1290 1291
                             _("Failed to read pid file %s/%s.pid"),
                             driver->stateDir, vm->def->name);
1292
        goto cleanup;
1293
    }
1294

1295
    vm->def->id = vm->pid;
1296 1297
    vm->state = VIR_DOMAIN_RUNNING;

1298 1299
    if ((priv->monitorWatch = virEventAddHandle(
             priv->monitor,
1300 1301
             VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
             lxcMonitorEvent,
1302
             vm, NULL)) < 0) {
1303
        lxcVmTerminate(driver, vm, 0);
1304 1305
        goto cleanup;
    }
1306

1307 1308 1309 1310 1311 1312 1313 1314
    rc = 0;

cleanup:
    for (i = 0 ; i < nveths ; i++) {
        if (rc != 0)
            vethDelete(veths[i]);
        VIR_FREE(veths[i]);
    }
1315 1316 1317
    if (rc != 0 && priv->monitor != -1) {
        close(priv->monitor);
        priv->monitor = -1;
1318 1319 1320 1321 1322 1323
    }
    if (parentTty != -1)
        close(parentTty);
    if (logfd != -1)
        close(logfd);
    VIR_FREE(logfile);
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
    return rc;
}

/**
 * lxcDomainStart:
 * @dom: domain to start
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcDomainStart(virDomainPtr dom)
{
1337 1338
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1339
    virDomainEventPtr event = NULL;
1340
    int ret = -1;
1341

1342
    lxcDriverLock(driver);
1343
    vm = virDomainFindByName(&driver->domains, dom->name);
1344
    if (!vm) {
1345
        lxcError(VIR_ERR_INVALID_DOMAIN,
1346
                 _("No domain named %s"), dom->name);
1347 1348 1349
        goto cleanup;
    }

1350
    if ((vm->def->nets != NULL) && !(driver->have_netns)) {
1351
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1352
                 "%s", _("System lacks NETNS support"));
1353 1354 1355
        goto cleanup;
    }

1356
    ret = lxcVmStart(dom->conn, driver, vm);
1357

1358 1359 1360 1361 1362
    if (ret == 0)
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);

1363
cleanup:
1364 1365
    if (vm)
        virDomainObjUnlock(vm);
1366 1367
    if (event)
        lxcDomainEventQueue(driver, event);
1368
    lxcDriverUnlock(driver);
1369
    return ret;
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
}

/**
 * lxcDomainCreateAndStart:
 * @conn: pointer to connection
 * @xml: XML definition of domain
 * @flags: Unused
 *
 * Creates a domain based on xml and starts it
 *
 * Returns 0 on success or -1 in case of error
 */
static virDomainPtr
lxcDomainCreateAndStart(virConnectPtr conn,
                        const char *xml,
                        unsigned int flags ATTRIBUTE_UNUSED) {
1386
    lxc_driver_t *driver = conn->privateData;
1387
    virDomainObjPtr vm = NULL;
1388
    virDomainDefPtr def;
1389
    virDomainPtr dom = NULL;
1390
    virDomainEventPtr event = NULL;
1391

1392
    lxcDriverLock(driver);
1393
    if (!(def = virDomainDefParseString(driver->caps, xml,
1394
                                        VIR_DOMAIN_XML_INACTIVE)))
1395
        goto cleanup;
1396

1397 1398
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
        goto cleanup;
1399

1400
    if ((def->nets != NULL) && !(driver->have_netns)) {
1401
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1402
                 "%s", _("System lacks NETNS support"));
1403
        goto cleanup;
1404 1405
    }

1406

1407
    if (!(vm = virDomainAssignDef(driver->caps,
1408
                                  &driver->domains, def, false)))
1409 1410
        goto cleanup;
    def = NULL;
1411 1412

    if (lxcVmStart(conn, driver, vm) < 0) {
1413
        virDomainRemoveInactive(&driver->domains, vm);
1414
        vm = NULL;
1415
        goto cleanup;
1416 1417
    }

1418 1419 1420 1421
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);

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

1426 1427
cleanup:
    virDomainDefFree(def);
1428 1429
    if (vm)
        virDomainObjUnlock(vm);
1430 1431
    if (event)
        lxcDomainEventQueue(driver, event);
1432
    lxcDriverUnlock(driver);
1433 1434 1435 1436 1437
    return dom;
}

/**
 * lxcDomainShutdown:
1438
 * @dom: pointer to domain to shutdown
1439 1440 1441 1442 1443 1444 1445
 *
 * Sends SIGINT to container root process to request it to shutdown
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcDomainShutdown(virDomainPtr dom)
{
1446 1447
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1448
    virDomainEventPtr event = NULL;
1449
    int ret = -1;
1450

1451
    lxcDriverLock(driver);
1452
    vm = virDomainFindByID(&driver->domains, dom->id);
1453
    if (!vm) {
1454
        lxcError(VIR_ERR_INVALID_DOMAIN,
1455
                 _("No domain with id %d"), dom->id);
1456
        goto cleanup;
1457 1458
    }

1459
    ret = lxcVmTerminate(driver, vm, 0);
1460 1461 1462
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
1463 1464 1465 1466
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1467 1468

cleanup:
1469 1470
    if (vm)
        virDomainObjUnlock(vm);
1471 1472 1473 1474 1475 1476 1477 1478
    if (event)
        lxcDomainEventQueue(driver, event);
    lxcDriverUnlock(driver);
    return ret;
}


static int
1479 1480 1481 1482
lxcDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
1483 1484 1485 1486 1487 1488 1489
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
    ret = virDomainEventCallbackListAdd(conn, driver->domainEventCallbacks,
                                        callback, opaque, freecb);
1490
    lxcDriverUnlock(driver);
1491

1492
    return ret;
1493 1494
}

1495

1496
static int
1497 1498
lxcDomainEventDeregister(virConnectPtr conn,
                         virConnectDomainEventCallback callback)
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
    if (driver->domainEventDispatching)
        ret = virDomainEventCallbackListMarkDelete(conn, driver->domainEventCallbacks,
                                                   callback);
    else
        ret = virDomainEventCallbackListRemove(conn, driver->domainEventCallbacks,
                                               callback);
    lxcDriverUnlock(driver);

    return ret;
}

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

static int
lxcDomainEventRegisterAny(virConnectPtr conn,
                          virDomainPtr dom,
                          int eventID,
                          virConnectDomainEventGenericCallback callback,
                          void *opaque,
                          virFreeCallback freecb)
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
    ret = virDomainEventCallbackListAddID(conn,
                                          driver->domainEventCallbacks,
                                          dom, eventID,
                                          callback, opaque, freecb);
    lxcDriverUnlock(driver);

    return ret;
}


static int
lxcDomainEventDeregisterAny(virConnectPtr conn,
                            int callbackID)
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
    if (driver->domainEventDispatching)
        ret = virDomainEventCallbackListMarkDeleteID(conn, driver->domainEventCallbacks,
                                                     callbackID);
    else
        ret = virDomainEventCallbackListRemoveID(conn, driver->domainEventCallbacks,
                                                 callbackID);
    lxcDriverUnlock(driver);

    return ret;
}


1558 1559
static void lxcDomainEventDispatchFunc(virConnectPtr conn,
                                       virDomainEventPtr event,
1560
                                       virConnectDomainEventGenericCallback cb,
1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611
                                       void *cbopaque,
                                       void *opaque)
{
    lxc_driver_t *driver = opaque;

    /* Drop the lock whle dispatching, for sake of re-entrancy */
    lxcDriverUnlock(driver);
    virDomainEventDispatchDefaultFunc(conn, event, cb, cbopaque, NULL);
    lxcDriverLock(driver);
}


static void lxcDomainEventFlush(int timer ATTRIBUTE_UNUSED, void *opaque)
{
    lxc_driver_t *driver = opaque;
    virDomainEventQueue tempQueue;

    lxcDriverLock(driver);

    driver->domainEventDispatching = 1;

    /* Copy the queue, so we're reentrant safe */
    tempQueue.count = driver->domainEventQueue->count;
    tempQueue.events = driver->domainEventQueue->events;
    driver->domainEventQueue->count = 0;
    driver->domainEventQueue->events = NULL;

    virEventUpdateTimeout(driver->domainEventTimer, -1);
    virDomainEventQueueDispatch(&tempQueue,
                                driver->domainEventCallbacks,
                                lxcDomainEventDispatchFunc,
                                driver);

    /* Purge any deleted callbacks */
    virDomainEventCallbackListPurgeMarked(driver->domainEventCallbacks);

    driver->domainEventDispatching = 0;
    lxcDriverUnlock(driver);
}


/* driver must be locked before calling */
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                 virDomainEventPtr event)
{
    if (virDomainEventQueuePush(driver->domainEventQueue,
                                event) < 0)
        virDomainEventFree(event);
    if (lxc_driver->domainEventQueue->count == 1)
        virEventUpdateTimeout(driver->domainEventTimer, 0);
}
1612 1613 1614

/**
 * lxcDomainDestroy:
1615
 * @dom: pointer to domain to destroy
1616 1617 1618 1619 1620 1621 1622
 *
 * Sends SIGKILL to container root process to terminate the container
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcDomainDestroy(virDomainPtr dom)
{
1623 1624
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1625
    virDomainEventPtr event = NULL;
1626
    int ret = -1;
1627

1628
    lxcDriverLock(driver);
1629
    vm = virDomainFindByID(&driver->domains, dom->id);
1630
    if (!vm) {
1631
        lxcError(VIR_ERR_INVALID_DOMAIN,
1632
                 _("No domain with id %d"), dom->id);
1633
        goto cleanup;
1634 1635
    }

1636
    ret = lxcVmTerminate(driver, vm, SIGKILL);
1637 1638 1639
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1640 1641 1642 1643
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1644 1645

cleanup:
1646 1647
    if (vm)
        virDomainObjUnlock(vm);
1648 1649
    if (event)
        lxcDomainEventQueue(driver, event);
1650
    lxcDriverUnlock(driver);
1651
    return ret;
1652
}
1653

1654 1655 1656 1657 1658
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

1659
    if (virRun(argv, &ip_rc) < 0 ||
1660 1661
        !(WIFEXITED(ip_rc) && (WEXITSTATUS(ip_rc) != 255)))
        return 0;
1662

1663 1664
    if (lxcContainerAvailable(LXC_CONTAINER_FEATURE_NET) < 0)
        return 0;
1665

1666
    return 1;
1667 1668
}

1669

1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
struct lxcAutostartData {
    lxc_driver_t *driver;
    virConnectPtr conn;
};

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

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
1683
        !virDomainObjIsActive(vm)) {
1684 1685 1686
        int ret = lxcVmStart(data->conn, data->driver, vm);
        if (ret < 0) {
            virErrorPtr err = virGetLastError();
1687
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701
                      vm->def->name,
                      err ? err->message : "");
        } else {
            virDomainEventPtr event =
                virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);
            if (event)
                lxcDomainEventQueue(data->driver, event);
        }
    }
    virDomainObjUnlock(vm);
}

1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
static void
lxcAutostartConfigs(lxc_driver_t *driver) {
    /* XXX: Figure out a better way todo this. The domain
     * startup code needs a connection handle in order
     * to lookup the bridge associated with a virtual
     * network
     */
    virConnectPtr conn = virConnectOpen("lxc:///");
    /* Ignoring NULL conn which is mostly harmless here */

1712 1713
    struct lxcAutostartData data = { driver, conn };

1714
    lxcDriverLock(driver);
1715
    virHashForEach(driver->domains.objs, lxcAutostartDomain, &data);
1716 1717 1718 1719 1720 1721
    lxcDriverUnlock(driver);

    if (conn)
        virConnectClose(conn);
}

1722 1723 1724 1725 1726 1727 1728
static void
lxcReconnectVM(void *payload, const char *name ATTRIBUTE_UNUSED, void *opaque)
{
    virDomainObjPtr vm = payload;
    lxc_driver_t *driver = opaque;
    char *config = NULL;
    virDomainDefPtr tmp;
1729
    lxcDomainObjPrivatePtr priv;
1730 1731

    virDomainObjLock(vm);
1732 1733

    priv = vm->privateData;
1734
    if ((priv->monitor = lxcMonitorClient(driver, vm)) < 0) {
1735 1736 1737 1738 1739
        goto cleanup;
    }

    /* Read pid from controller */
    if ((virFileReadPid(lxc_driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1740 1741
        close(priv->monitor);
        priv->monitor = -1;
1742 1743 1744
        goto cleanup;
    }

1745
    if ((config = virDomainConfigFile(driver->stateDir,
1746 1747 1748 1749
                                      vm->def->name)) == NULL)
        goto cleanup;

    /* Try and load the live config */
1750
    tmp = virDomainDefParseFile(driver->caps, config, 0);
1751 1752 1753 1754 1755 1756 1757 1758 1759
    VIR_FREE(config);
    if (tmp) {
        vm->newDef = vm->def;
        vm->def = tmp;
    }

    if (vm->pid != 0) {
        vm->def->id = vm->pid;
        vm->state = VIR_DOMAIN_RUNNING;
1760 1761 1762 1763 1764 1765

        if ((priv->monitorWatch = virEventAddHandle(
                 priv->monitor,
                 VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
                 lxcMonitorEvent,
                 vm, NULL)) < 0) {
1766
            lxcVmTerminate(driver, vm, 0);
1767 1768
            goto cleanup;
        }
1769 1770
    } else {
        vm->def->id = -1;
1771 1772
        close(priv->monitor);
        priv->monitor = -1;
1773 1774 1775 1776 1777 1778
    }

cleanup:
    virDomainObjUnlock(vm);
}

1779

1780
static int lxcStartup(int privileged)
D
Daniel Veillard 已提交
1781
{
1782
    char *ld;
1783
    int rc;
1784 1785 1786 1787 1788 1789

    /* Valgrind gets very annoyed when we clone containers, so
     * disable LXC when under valgrind
     * XXX remove this when valgrind is fixed
     */
    ld = getenv("LD_PRELOAD");
1790 1791 1792 1793
    if (ld && strstr(ld, "vgpreload")) {
        VIR_INFO0("Running under valgrind, disabling driver");
        return 0;
    }
1794

1795
    /* Check that the user is root, silently disable if not */
1796
    if (!privileged) {
1797 1798 1799 1800 1801 1802 1803 1804
        VIR_INFO0("Not running privileged, disabling driver");
        return 0;
    }

    /* Check that this is a container enabled kernel */
    if (lxcContainerAvailable(0) < 0) {
        VIR_INFO0("LXC support not available in this kernel, disabling driver");
        return 0;
1805 1806
    }

1807
    if (VIR_ALLOC(lxc_driver) < 0) {
1808 1809
        return -1;
    }
1810 1811 1812 1813
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
1814
    lxcDriverLock(lxc_driver);
D
Daniel Veillard 已提交
1815

1816 1817 1818
    if (virDomainObjListInit(&lxc_driver->domains) < 0)
        goto cleanup;

1819
    if (VIR_ALLOC(lxc_driver->domainEventCallbacks) < 0)
1820 1821 1822 1823 1824 1825 1826 1827
        goto cleanup;
    if (!(lxc_driver->domainEventQueue = virDomainEventQueueNew()))
        goto cleanup;

    if ((lxc_driver->domainEventTimer =
         virEventAddTimeout(-1, lxcDomainEventFlush, lxc_driver, NULL)) < 0)
        goto cleanup;

A
Amy Griffis 已提交
1828
    lxc_driver->log_libvirtd = 0; /* by default log to container logfile */
1829
    lxc_driver->have_netns = lxcCheckNetNsSupport();
D
Daniel Veillard 已提交
1830

1831 1832 1833 1834 1835 1836 1837
    rc = virCgroupForDriver("lxc", &lxc_driver->cgroup, privileged, 1);
    if (rc < 0) {
        char buf[1024];
        VIR_WARN("Unable to create cgroup for driver: %s",
                 virStrerror(-rc, buf, sizeof(buf)));
    }

D
Daniel Veillard 已提交
1838
    /* Call function to load lxc driver configuration information */
1839 1840
    if (lxcLoadDriverConfig(lxc_driver) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
1841

1842 1843
    if ((lxc_driver->caps = lxcCapsInit()) == NULL)
        goto cleanup;
D
Daniel Veillard 已提交
1844

1845 1846 1847
    lxc_driver->caps->privateDataAllocFunc = lxcDomainObjPrivateAlloc;
    lxc_driver->caps->privateDataFreeFunc = lxcDomainObjPrivateFree;

1848
    if (virDomainLoadAllConfigs(lxc_driver->caps,
1849 1850
                                &lxc_driver->domains,
                                lxc_driver->configDir,
1851
                                lxc_driver->autostartDir,
1852
                                0, NULL, NULL) < 0)
1853
        goto cleanup;
1854

1855
    virHashForEach(lxc_driver->domains.objs, lxcReconnectVM, lxc_driver);
1856

1857
    lxcDriverUnlock(lxc_driver);
D
Daniel Veillard 已提交
1858 1859
    return 0;

1860 1861 1862 1863
cleanup:
    lxcDriverUnlock(lxc_driver);
    lxcShutdown();
    return -1;
D
Daniel Veillard 已提交
1864 1865
}

1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891
static void lxcNotifyLoadDomain(virDomainObjPtr vm, int newVM, void *opaque)
{
    lxc_driver_t *driver = opaque;

    if (newVM) {
        virDomainEventPtr event =
            virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_DEFINED,
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED);
        if (event)
            lxcDomainEventQueue(driver, event);
    }
}

/**
 * lxcReload:
 *
 * Function to restart the LXC driver, it will recheck the configuration
 * files and perform autostart
 */
static int
lxcReload(void) {
    if (!lxc_driver)
        return 0;

    lxcDriverLock(lxc_driver);
1892
    virDomainLoadAllConfigs(lxc_driver->caps,
1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
                            &lxc_driver->domains,
                            lxc_driver->configDir,
                            lxc_driver->autostartDir,
                            0, lxcNotifyLoadDomain, lxc_driver);
    lxcDriverUnlock(lxc_driver);

    lxcAutostartConfigs(lxc_driver);

    return 0;
}

1904
static int lxcShutdown(void)
D
Daniel Veillard 已提交
1905
{
1906
    if (lxc_driver == NULL)
1907
        return(-1);
1908

1909
    lxcDriverLock(lxc_driver);
1910
    virDomainObjListDeinit(&lxc_driver->domains);
1911

1912 1913 1914 1915 1916 1917
    virDomainEventCallbackListFree(lxc_driver->domainEventCallbacks);
    virDomainEventQueueFree(lxc_driver->domainEventQueue);

    if (lxc_driver->domainEventTimer != -1)
        virEventRemoveTimeout(lxc_driver->domainEventTimer);

1918 1919 1920 1921 1922 1923
    virCapabilitiesFree(lxc_driver->caps);
    VIR_FREE(lxc_driver->configDir);
    VIR_FREE(lxc_driver->autostartDir);
    VIR_FREE(lxc_driver->stateDir);
    VIR_FREE(lxc_driver->logDir);
    lxcDriverUnlock(lxc_driver);
1924
    virMutexDestroy(&lxc_driver->lock);
1925
    VIR_FREE(lxc_driver);
1926 1927 1928

    return 0;
}
D
Daniel Veillard 已提交
1929

1930 1931 1932 1933 1934 1935 1936 1937 1938
/**
 * lxcActive:
 *
 * Checks if the LXC daemon is active, i.e. has an active domain
 *
 * Returns 1 if active, 0 otherwise
 */
static int
lxcActive(void) {
1939
    int active;
1940

1941 1942
    if (lxc_driver == NULL)
        return(0);
1943

1944
    lxcDriverLock(lxc_driver);
1945
    active = virDomainObjListNumOfDomains(&lxc_driver->domains, 1);
1946
    lxcDriverUnlock(lxc_driver);
1947

1948
    return active;
D
Daniel Veillard 已提交
1949 1950
}

1951
static int lxcVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *version)
D
Dan Smith 已提交
1952 1953 1954
{
    struct utsname ver;

1955
    uname(&ver);
D
Dan Smith 已提交
1956

1957 1958
    if (virParseVersionString(ver.release, version) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, _("Unknown release: %s"), ver.release);
D
Dan Smith 已提交
1959 1960 1961 1962 1963
        return -1;
    }

    return 0;
}
1964

1965 1966
static char *lxcGetSchedulerType(virDomainPtr domain ATTRIBUTE_UNUSED,
                                 int *nparams)
1967
{
1968 1969
    char *schedulerType = NULL;

1970 1971 1972
    if (nparams)
        *nparams = 1;

1973 1974 1975
    schedulerType = strdup("posix");

    if (schedulerType == NULL)
1976
        virReportOOMError();
1977 1978

    return schedulerType;
1979 1980
}

1981
static int lxcSetSchedulerParameters(virDomainPtr domain,
1982 1983 1984
                                     virSchedParameterPtr params,
                                     int nparams)
{
1985
    lxc_driver_t *driver = domain->conn->privateData;
1986
    int i;
1987 1988 1989
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;
1990

1991
    if (driver->cgroup == NULL)
1992 1993 1994 1995
        return -1;

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, domain->uuid);
1996

1997
    if (vm == NULL) {
1998
        lxcError(VIR_ERR_INTERNAL_ERROR,
1999 2000
                 _("No such domain %s"), domain->uuid);
        goto cleanup;
2001 2002
    }

2003
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2004
        goto cleanup;
2005 2006 2007

    for (i = 0; i < nparams; i++) {
        virSchedParameterPtr param = &params[i];
2008
        if (param->type != VIR_DOMAIN_SCHED_FIELD_ULLONG) {
2009
            lxcError(VIR_ERR_INVALID_ARG, "%s",
2010
                     _("Invalid type for cpu_shares tunable, expected a 'ullong'"));
2011 2012
            goto cleanup;
        }
2013 2014

        if (STREQ(param->field, "cpu_shares")) {
2015
            if (virCgroupSetCpuShares(group, params[i].value.ul) != 0)
2016
                goto cleanup;
2017
        } else {
2018
            lxcError(VIR_ERR_INVALID_ARG,
2019
                     _("Invalid parameter `%s'"), param->field);
2020
            goto cleanup;
2021 2022
        }
    }
2023
    ret = 0;
2024

2025
cleanup:
2026
    lxcDriverUnlock(driver);
2027
    virCgroupFree(&group);
2028 2029
    if (vm)
        virDomainObjUnlock(vm);
2030
    return ret;
2031 2032
}

2033
static int lxcGetSchedulerParameters(virDomainPtr domain,
2034 2035 2036
                                     virSchedParameterPtr params,
                                     int *nparams)
{
2037
    lxc_driver_t *driver = domain->conn->privateData;
2038 2039
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
2040
    unsigned long long val;
2041
    int ret = -1;
2042

2043
    if (driver->cgroup == NULL)
2044
        return -1;
2045 2046

    if ((*nparams) != 1) {
2047
        lxcError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
2048
                 "%s", _("Invalid parameter count"));
2049
        return -1;
2050 2051
    }

2052 2053 2054
    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, domain->uuid);

2055
    if (vm == NULL) {
2056
        lxcError(VIR_ERR_INTERNAL_ERROR,
2057 2058
                 _("No such domain %s"), domain->uuid);
        goto cleanup;
2059 2060
    }

2061
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2062
        goto cleanup;
2063

2064 2065
    if (virCgroupGetCpuShares(group, &val) != 0)
        goto cleanup;
2066
    params[0].value.ul = val;
C
Chris Lalancette 已提交
2067
    if (virStrcpyStatic(params[0].field, "cpu_shares") == NULL) {
2068
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
2069 2070 2071
                 "%s", _("Field cpu_shares too big for destination"));
        goto cleanup;
    }
2072 2073
    params[0].type = VIR_DOMAIN_SCHED_FIELD_ULLONG;

2074
    ret = 0;
2075

2076
cleanup:
2077
    lxcDriverUnlock(driver);
2078
    virCgroupFree(&group);
2079 2080
    if (vm)
        virDomainObjUnlock(vm);
2081
    return ret;
2082 2083
}

2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101
#ifdef __linux__
static int
lxcDomainInterfaceStats(virDomainPtr dom,
                        const char *path,
                        struct _virDomainInterfaceStats *stats)
{
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int i;
    int ret = -1;

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    lxcDriverUnlock(driver);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2102
        lxcError(VIR_ERR_NO_DOMAIN,
2103 2104 2105 2106 2107
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2108
        lxcError(VIR_ERR_OPERATION_INVALID,
2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

    /* Check the path is one of the domain's network interfaces. */
    for (i = 0 ; i < vm->def->nnets ; i++) {
        if (vm->def->nets[i]->ifname &&
            STREQ(vm->def->nets[i]->ifname, path)) {
            ret = 0;
            break;
        }
    }

    if (ret == 0)
2123
        ret = linuxDomainInterfaceStats(path, stats);
2124
    else
2125
        lxcError(VIR_ERR_INVALID_ARG,
2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137
                 _("Invalid path, '%s' is not a known interface"), path);

cleanup:
    if (vm)
        virDomainObjUnlock(vm);
    return ret;
}
#else
static int
lxcDomainInterfaceStats(virDomainPtr dom,
                        const char *path ATTRIBUTE_UNUSED,
                        struct _virDomainInterfaceStats *stats ATTRIBUTE_UNUSED)
2138
    lxcError(VIR_ERR_NO_SUPPORT, "%s", __FUNCTION__);
2139 2140 2141 2142
    return -1;
}
#endif

2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155
static int lxcDomainGetAutostart(virDomainPtr dom,
                                   int *autostart) {
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    lxcDriverUnlock(driver);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2156
        lxcError(VIR_ERR_NO_DOMAIN,
2157
                 _("No domain with matching uuid '%s'"), uuidstr);
2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
        goto cleanup;
    }

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

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

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

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2183
        lxcError(VIR_ERR_NO_DOMAIN,
2184
                 _("No domain with matching uuid '%s'"), uuidstr);
2185 2186 2187 2188
        goto cleanup;
    }

    if (!vm->persistent) {
2189
        lxcError(VIR_ERR_INTERNAL_ERROR,
2190
                 "%s", _("Cannot set autostart for transient domain"));
2191 2192 2193 2194 2195
        goto cleanup;
    }

    autostart = (autostart != 0);

2196 2197 2198 2199
    if (vm->autostart == autostart) {
        ret = 0;
        goto cleanup;
    }
2200

2201
    configFile = virDomainConfigFile(driver->configDir,
2202 2203 2204
                                     vm->def->name);
    if (configFile == NULL)
        goto cleanup;
2205
    autostartLink = virDomainConfigFile(driver->autostartDir,
2206 2207 2208
                                        vm->def->name);
    if (autostartLink == NULL)
        goto cleanup;
2209

2210 2211
    if (autostart) {
        int err;
2212

2213
        if ((err = virFileMakePath(driver->autostartDir))) {
2214
            virReportSystemError(err,
2215 2216 2217
                                 _("Cannot create autostart directory %s"),
                                 driver->autostartDir);
            goto cleanup;
2218 2219
        }

2220
        if (symlink(configFile, autostartLink) < 0) {
2221
            virReportSystemError(errno,
2222 2223 2224 2225 2226 2227
                                 _("Failed to create symlink '%s to '%s'"),
                                 autostartLink, configFile);
            goto cleanup;
        }
    } else {
        if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2228
            virReportSystemError(errno,
2229 2230 2231 2232
                                 _("Failed to delete symlink '%s'"),
                                 autostartLink);
            goto cleanup;
        }
2233
    }
2234 2235

    vm->autostart = autostart;
2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246
    ret = 0;

cleanup:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}

R
Ryota Ozaki 已提交
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 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351
static int lxcFreezeContainer(lxc_driver_t *driver, virDomainObjPtr vm)
{
    int timeout = 1000; /* In milliseconds */
    int check_interval = 1; /* In milliseconds */
    int exp = 10;
    int waited_time = 0;
    int ret = -1;
    char *state = NULL;
    virCgroupPtr cgroup = NULL;

    if (!(driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
        return -1;

    while (waited_time < timeout) {
        int r;
        /*
         * Writing "FROZEN" to the "freezer.state" freezes the group,
         * i.e., the container, temporarily transiting "FREEZING" state.
         * Once the freezing is completed, the state of the group transits
         * to "FROZEN".
         * (see linux-2.6/Documentation/cgroups/freezer-subsystem.txt)
         */
        r = virCgroupSetFreezerState(cgroup, "FROZEN");

        /*
         * Returning EBUSY explicitly indicates that the group is
         * being freezed but incomplete and other errors are true
         * errors.
         */
        if (r < 0 && r != -EBUSY) {
            VIR_DEBUG("Writing freezer.state failed with errno: %d", r);
            goto error;
        }
        if (r == -EBUSY)
            VIR_DEBUG0("Writing freezer.state gets EBUSY");

        /*
         * Unfortunately, returning 0 (success) is likely to happen
         * even when the freezing has not been completed. Sometimes
         * the state of the group remains "FREEZING" like when
         * returning -EBUSY and even worse may never transit to
         * "FROZEN" even if writing "FROZEN" again.
         *
         * So we don't trust the return value anyway and always
         * decide that the freezing has been complete only with
         * the state actually transit to "FROZEN".
         */
        usleep(check_interval * 1000);

        r = virCgroupGetFreezerState(cgroup, &state);

        if (r < 0) {
            VIR_DEBUG("Reading freezer.state failed with errno: %d", r);
            goto error;
        }
        VIR_DEBUG("Read freezer.state: %s", state);

        if (STREQ(state, "FROZEN")) {
            ret = 0;
            goto cleanup;
        }

        waited_time += check_interval;
        /*
         * Increasing check_interval exponentially starting with
         * small initial value treats nicely two cases; One is
         * a container is under no load and waiting for long period
         * makes no sense. The other is under heavy load. The container
         * may stay longer time in FREEZING or never transit to FROZEN.
         * In that case, eager polling will just waste CPU time.
         */
        check_interval *= exp;
        VIR_FREE(state);
    }
    VIR_DEBUG0("lxcFreezeContainer timeout");
error:
    /*
     * If timeout or an error on reading the state occurs,
     * activate the group again and return an error.
     * This is likely to fall the group back again gracefully.
     */
    virCgroupSetFreezerState(cgroup, "THAWED");
    ret = -1;

cleanup:
    if (cgroup)
        virCgroupFree(&cgroup);
    VIR_FREE(state);
    return ret;
}

static int lxcDomainSuspend(virDomainPtr dom)
{
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    virDomainEventPtr event = NULL;
    int ret = -1;

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2352
        lxcError(VIR_ERR_NO_DOMAIN,
2353
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2354 2355 2356
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2357
    if (!virDomainObjIsActive(vm)) {
2358
        lxcError(VIR_ERR_OPERATION_INVALID,
2359
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2360 2361 2362 2363 2364
        goto cleanup;
    }

    if (vm->state != VIR_DOMAIN_PAUSED) {
        if (lxcFreezeContainer(driver, vm) < 0) {
2365
            lxcError(VIR_ERR_OPERATION_FAILED,
2366
                     "%s", _("Suspend operation failed"));
R
Ryota Ozaki 已提交
2367 2368 2369 2370 2371 2372 2373 2374 2375
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_PAUSED;

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

2376
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
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 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416
        goto cleanup;
    ret = 0;

cleanup:
    if (event)
        lxcDomainEventQueue(driver, event);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}

static int lxcUnfreezeContainer(lxc_driver_t *driver, virDomainObjPtr vm)
{
    int ret;
    virCgroupPtr cgroup = NULL;

    if (!(driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
        return -1;

    ret = virCgroupSetFreezerState(cgroup, "THAWED");

    virCgroupFree(&cgroup);
    return ret;
}

static int lxcDomainResume(virDomainPtr dom)
{
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    virDomainEventPtr event = NULL;
    int ret = -1;

    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
2417
        lxcError(VIR_ERR_NO_DOMAIN,
2418
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2419 2420 2421
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2422
    if (!virDomainObjIsActive(vm)) {
2423
        lxcError(VIR_ERR_OPERATION_INVALID,
2424
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2425 2426 2427 2428 2429
        goto cleanup;
    }

    if (vm->state == VIR_DOMAIN_PAUSED) {
        if (lxcUnfreezeContainer(driver, vm) < 0) {
2430
            lxcError(VIR_ERR_OPERATION_FAILED,
2431
                     "%s", _("Resume operation failed"));
R
Ryota Ozaki 已提交
2432 2433 2434 2435 2436 2437 2438 2439 2440
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_RUNNING;

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

2441
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454
        goto cleanup;
    ret = 0;

cleanup:
    if (event)
        lxcDomainEventQueue(driver, event);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}


D
Daniel Veillard 已提交
2455 2456 2457 2458 2459 2460 2461 2462
/* Function Tables */
static virDriver lxcDriver = {
    VIR_DRV_LXC, /* the number virDrvNo */
    "LXC", /* the name of the driver */
    lxcOpen, /* open */
    lxcClose, /* close */
    NULL, /* supports_feature */
    NULL, /* type */
D
Dan Smith 已提交
2463
    lxcVersion, /* version */
2464
    NULL, /* libvirtVersion (impl. in libvirt.c) */
2465
    virGetHostname, /* getHostname */
D
Daniel Veillard 已提交
2466
    NULL, /* getMaxVcpus */
2467 2468
    nodeGetInfo, /* nodeGetInfo */
    lxcGetCapabilities, /* getCapabilities */
D
Daniel Veillard 已提交
2469 2470
    lxcListDomains, /* listDomains */
    lxcNumDomains, /* numOfDomains */
2471
    lxcDomainCreateAndStart, /* domainCreateXML */
D
Daniel Veillard 已提交
2472 2473 2474
    lxcDomainLookupByID, /* domainLookupByID */
    lxcDomainLookupByUUID, /* domainLookupByUUID */
    lxcDomainLookupByName, /* domainLookupByName */
R
Ryota Ozaki 已提交
2475 2476
    lxcDomainSuspend, /* domainSuspend */
    lxcDomainResume, /* domainResume */
2477
    lxcDomainShutdown, /* domainShutdown */
D
Daniel Veillard 已提交
2478
    NULL, /* domainReboot */
2479
    lxcDomainDestroy, /* domainDestroy */
D
Daniel Veillard 已提交
2480
    lxcGetOSType, /* domainGetOSType */
R
Ryota Ozaki 已提交
2481 2482 2483
    lxcDomainGetMaxMemory, /* domainGetMaxMemory */
    lxcDomainSetMaxMemory, /* domainSetMaxMemory */
    lxcDomainSetMemory, /* domainSetMemory */
D
Daniel Veillard 已提交
2484 2485 2486 2487 2488 2489 2490 2491
    lxcDomainGetInfo, /* domainGetInfo */
    NULL, /* domainSave */
    NULL, /* domainRestore */
    NULL, /* domainCoreDump */
    NULL, /* domainSetVcpus */
    NULL, /* domainPinVcpu */
    NULL, /* domainGetVcpus */
    NULL, /* domainGetMaxVcpus */
2492 2493
    NULL, /* domainGetSecurityLabel */
    NULL, /* nodeGetSecurityModel */
D
Daniel Veillard 已提交
2494
    lxcDomainDumpXML, /* domainDumpXML */
2495 2496
    NULL, /* domainXMLFromNative */
    NULL, /* domainXMLToNative */
D
Daniel Veillard 已提交
2497 2498
    lxcListDefinedDomains, /* listDefinedDomains */
    lxcNumDefinedDomains, /* numOfDefinedDomains */
2499
    lxcDomainStart, /* domainCreate */
D
Daniel Veillard 已提交
2500 2501 2502
    lxcDomainDefine, /* domainDefineXML */
    lxcDomainUndefine, /* domainUndefine */
    NULL, /* domainAttachDevice */
2503
    NULL, /* domainAttachDeviceFlags */
D
Daniel Veillard 已提交
2504
    NULL, /* domainDetachDevice */
2505
    NULL, /* domainDetachDeviceFlags */
2506
    NULL, /* domainUpdateDeviceFlags */
2507 2508
    lxcDomainGetAutostart, /* domainGetAutostart */
    lxcDomainSetAutostart, /* domainSetAutostart */
2509 2510 2511
    lxcGetSchedulerType, /* domainGetSchedulerType */
    lxcGetSchedulerParameters, /* domainGetSchedulerParameters */
    lxcSetSchedulerParameters, /* domainSetSchedulerParameters */
D
Daniel Veillard 已提交
2512 2513 2514 2515
    NULL, /* domainMigratePrepare */
    NULL, /* domainMigratePerform */
    NULL, /* domainMigrateFinish */
    NULL, /* domainBlockStats */
2516
    lxcDomainInterfaceStats, /* domainInterfaceStats */
2517
    NULL, /* domainMemoryStats */
D
Daniel P. Berrange 已提交
2518 2519
    NULL, /* domainBlockPeek */
    NULL, /* domainMemoryPeek */
2520
    NULL, /* domainGetBlockInfo */
2521 2522
    nodeGetCellsFreeMemory, /* nodeGetCellsFreeMemory */
    nodeGetFreeMemory,  /* getFreeMemory */
2523 2524
    lxcDomainEventRegister, /* domainEventRegister */
    lxcDomainEventDeregister, /* domainEventDeregister */
D
Daniel Veillard 已提交
2525 2526
    NULL, /* domainMigratePrepare2 */
    NULL, /* domainMigrateFinish2 */
2527
    NULL, /* nodeDeviceDettach */
2528 2529
    NULL, /* nodeDeviceReAttach */
    NULL, /* nodeDeviceReset */
C
Chris Lalancette 已提交
2530
    NULL, /* domainMigratePrepareTunnel */
2531 2532 2533 2534
    lxcIsEncrypted, /* isEncrypted */
    lxcIsSecure, /* isSecure */
    lxcDomainIsActive, /* domainIsActive */
    lxcDomainIsPersistent, /* domainIsPersistent */
J
Jiri Denemark 已提交
2535
    NULL, /* cpuCompare */
2536
    NULL, /* cpuBaseline */
2537
    NULL, /* domainGetJobInfo */
2538
    NULL, /* domainAbortJob */
2539
    NULL, /* domainMigrateSetMaxDowntime */
2540 2541
    lxcDomainEventRegisterAny, /* domainEventRegisterAny */
    lxcDomainEventDeregisterAny, /* domainEventDeregisterAny */
2542 2543 2544
    NULL, /* domainManagedSave */
    NULL, /* domainHasManagedSaveImage */
    NULL, /* domainManagedSaveRemove */
C
Chris Lalancette 已提交
2545 2546 2547 2548 2549 2550 2551 2552 2553
    NULL, /* domainSnapshotCreateXML */
    NULL, /* domainSnapshotDumpXML */
    NULL, /* domainSnapshotNum */
    NULL, /* domainSnapshotListNames */
    NULL, /* domainSnapshotLookupByName */
    NULL, /* domainHasCurrentSnapshot */
    NULL, /* domainSnapshotCurrent */
    NULL, /* domainRevertToSnapshot */
    NULL, /* domainSnapshotDelete */
D
Daniel Veillard 已提交
2554 2555
};

2556
static virStateDriver lxcStateDriver = {
2557
    .name = "LXC",
2558 2559 2560
    .initialize = lxcStartup,
    .cleanup = lxcShutdown,
    .active = lxcActive,
2561
    .reload = lxcReload,
2562 2563
};

D
Daniel Veillard 已提交
2564 2565 2566
int lxcRegister(void)
{
    virRegisterDriver(&lxcDriver);
2567
    virRegisterStateDriver(&lxcStateDriver);
D
Daniel Veillard 已提交
2568 2569
    return 0;
}