lxc_driver.c 72.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 204
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching id %d"), id);
205
        goto cleanup;
D
Daniel Veillard 已提交
206 207 208
    }

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

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

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

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

D
Daniel Veillard 已提交
229
    if (!vm) {
230 231 232 233
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
234
        goto cleanup;
D
Daniel Veillard 已提交
235 236 237
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
238
    if (dom)
D
Daniel Veillard 已提交
239 240
        dom->id = vm->def->id;

241
cleanup:
242 243
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
244 245 246 247 248 249
    return dom;
}

static virDomainPtr lxcDomainLookupByName(virConnectPtr conn,
                                          const char *name)
{
250 251 252
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
253

254
    lxcDriverLock(driver);
255
    vm = virDomainFindByName(&driver->domains, name);
256
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
257
    if (!vm) {
258 259
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching name '%s'"), name);
260
        goto cleanup;
D
Daniel Veillard 已提交
261 262 263
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
264
    if (dom)
D
Daniel Veillard 已提交
265 266
        dom->id = vm->def->id;

267
cleanup:
268 269
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
270 271 272
    return dom;
}

273 274 275 276 277 278 279 280 281 282 283

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) {
284 285 286 287
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
        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) {
309 310 311 312
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
313 314 315 316 317 318 319 320 321 322 323
        goto cleanup;
    }
    ret = obj->persistent;

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


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

328
    lxcDriverLock(driver);
329
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
330
    lxcDriverUnlock(driver);
331

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

335
static int lxcNumDomains(virConnectPtr conn) {
336
    lxc_driver_t *driver = conn->privateData;
337
    int n;
338

339
    lxcDriverLock(driver);
340
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
341
    lxcDriverUnlock(driver);
342

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

static int lxcListDefinedDomains(virConnectPtr conn,
347
                                 char **const names, int nnames) {
348
    lxc_driver_t *driver = conn->privateData;
349
    int n;
350

351
    lxcDriverLock(driver);
352
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
353
    lxcDriverUnlock(driver);
354

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


359
static int lxcNumDefinedDomains(virConnectPtr conn) {
360
    lxc_driver_t *driver = conn->privateData;
361
    int n;
362

363
    lxcDriverLock(driver);
364
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
365
    lxcDriverUnlock(driver);
366

367
    return n;
D
Daniel Veillard 已提交
368 369
}

370 371


D
Daniel Veillard 已提交
372 373
static virDomainPtr lxcDomainDefine(virConnectPtr conn, const char *xml)
{
374 375
    lxc_driver_t *driver = conn->privateData;
    virDomainDefPtr def = NULL;
376
    virDomainObjPtr vm = NULL;
377
    virDomainPtr dom = NULL;
378
    virDomainEventPtr event = NULL;
379
    int dupVM;
D
Daniel Veillard 已提交
380

381
    lxcDriverLock(driver);
382
    if (!(def = virDomainDefParseString(driver->caps, xml,
383
                                        VIR_DOMAIN_XML_INACTIVE)))
384
        goto cleanup;
D
Daniel Veillard 已提交
385

386 387
   if ((dupVM = virDomainObjIsDuplicate(&driver->domains, def, 0)) < 0)
        goto cleanup;
388

389
    if ((def->nets != NULL) && !(driver->have_netns)) {
390
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
391
                 "%s", _("System lacks NETNS support"));
392
        goto cleanup;
393 394
    }

395
    if (!(vm = virDomainAssignDef(driver->caps,
396
                                  &driver->domains, def, false)))
397 398
        goto cleanup;
    def = NULL;
399
    vm->persistent = 1;
D
Daniel Veillard 已提交
400

401
    if (virDomainSaveConfig(driver->configDir,
402
                            vm->newDef ? vm->newDef : vm->def) < 0) {
403
        virDomainRemoveInactive(&driver->domains, vm);
404
        vm = NULL;
405
        goto cleanup;
D
Daniel Veillard 已提交
406 407
    }

408 409
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_DEFINED,
410
                                     !dupVM ?
411 412 413
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                     VIR_DOMAIN_EVENT_DEFINED_UPDATED);

D
Daniel Veillard 已提交
414
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
415
    if (dom)
D
Daniel Veillard 已提交
416 417
        dom->id = vm->def->id;

418 419
cleanup:
    virDomainDefFree(def);
420 421
    if (vm)
        virDomainObjUnlock(vm);
422 423
    if (event)
        lxcDomainEventQueue(driver, event);
424
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
425 426 427 428 429
    return dom;
}

static int lxcDomainUndefine(virDomainPtr dom)
{
430 431
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
432
    virDomainEventPtr event = NULL;
433
    int ret = -1;
D
Daniel Veillard 已提交
434

435
    lxcDriverLock(driver);
436
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
D
Daniel Veillard 已提交
437
    if (!vm) {
438 439 440 441
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
442
        goto cleanup;
D
Daniel Veillard 已提交
443 444
    }

D
Daniel P. Berrange 已提交
445
    if (virDomainObjIsActive(vm)) {
446
        lxcError(VIR_ERR_OPERATION_INVALID,
447
                 "%s", _("Cannot delete active domain"));
448
        goto cleanup;
D
Daniel Veillard 已提交
449 450
    }

451
    if (!vm->persistent) {
452
        lxcError(VIR_ERR_OPERATION_INVALID,
453
                 "%s", _("Cannot undefine transient domain"));
454
        goto cleanup;
455
    }
D
Daniel Veillard 已提交
456

457
    if (virDomainDeleteConfig(driver->configDir,
458
                              driver->autostartDir,
459 460
                              vm) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
461

462 463 464 465
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

466
    virDomainRemoveInactive(&driver->domains, vm);
467
    vm = NULL;
468
    ret = 0;
D
Daniel Veillard 已提交
469

470
cleanup:
471 472
    if (vm)
        virDomainObjUnlock(vm);
473 474
    if (event)
        lxcDomainEventQueue(driver, event);
475
    lxcDriverUnlock(driver);
476
    return ret;
D
Daniel Veillard 已提交
477 478 479 480 481
}

static int lxcDomainGetInfo(virDomainPtr dom,
                            virDomainInfoPtr info)
{
482 483
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
484
    virCgroupPtr cgroup = NULL;
485
    int ret = -1;
D
Daniel Veillard 已提交
486

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

D
Daniel Veillard 已提交
490
    if (!vm) {
491 492 493 494
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
495
        goto cleanup;
D
Daniel Veillard 已提交
496 497 498 499
    }

    info->state = vm->state;

D
Daniel P. Berrange 已提交
500
    if (!virDomainObjIsActive(vm) || driver->cgroup == NULL) {
D
Daniel Veillard 已提交
501
        info->cpuTime = 0;
R
Ryota Ozaki 已提交
502
        info->memory = vm->def->memory;
D
Daniel Veillard 已提交
503
    } else {
504
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
505
            lxcError(VIR_ERR_INTERNAL_ERROR,
506
                     _("Unable to get cgroup for %s"), vm->def->name);
507 508 509 510
            goto cleanup;
        }

        if (virCgroupGetCpuacctUsage(cgroup, &(info->cpuTime)) < 0) {
511
            lxcError(VIR_ERR_OPERATION_FAILED,
512
                     "%s", _("Cannot read cputime for domain"));
R
Ryota Ozaki 已提交
513 514 515
            goto cleanup;
        }
        if (virCgroupGetMemoryUsage(cgroup, &(info->memory)) < 0) {
516
            lxcError(VIR_ERR_OPERATION_FAILED,
517
                     "%s", _("Cannot read memory usage for domain"));
518 519
            goto cleanup;
        }
D
Daniel Veillard 已提交
520 521
    }

522
    info->maxMem = vm->def->maxmem;
D
Daniel Veillard 已提交
523
    info->nrVirtCpu = 1;
524
    ret = 0;
D
Daniel Veillard 已提交
525

526
cleanup:
527
    lxcDriverUnlock(driver);
528 529
    if (cgroup)
        virCgroupFree(&cgroup);
530 531
    if (vm)
        virDomainObjUnlock(vm);
532
    return ret;
D
Daniel Veillard 已提交
533 534
}

535
static char *lxcGetOSType(virDomainPtr dom)
D
Daniel Veillard 已提交
536
{
537 538 539
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
540

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

545
    if (!vm) {
546 547 548 549
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
550
        goto cleanup;
551 552
    }

553 554
    ret = strdup(vm->def->os.type);

555
    if (ret == NULL)
556
        virReportOOMError();
557

558
cleanup:
559 560
    if (vm)
        virDomainObjUnlock(vm);
561
    return ret;
D
Daniel Veillard 已提交
562 563
}

R
Ryota Ozaki 已提交
564 565 566 567 568 569 570 571 572 573 574 575 576
/* 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);
577
        lxcError(VIR_ERR_NO_DOMAIN,
578
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
        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);
602
        lxcError(VIR_ERR_NO_DOMAIN,
603
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
604 605 606 607
        goto cleanup;
    }

    if (newmax < vm->def->memory) {
608
        lxcError(VIR_ERR_INVALID_ARG,
609
                         "%s", _("Cannot set max memory lower than current memory"));
R
Ryota Ozaki 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
        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);
634
        lxcError(VIR_ERR_NO_DOMAIN,
635
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
636 637 638 639
        goto cleanup;
    }

    if (newmem > vm->def->maxmem) {
640
        lxcError(VIR_ERR_INVALID_ARG,
641
                 "%s", _("Cannot set memory higher than max memory"));
R
Ryota Ozaki 已提交
642 643 644
        goto cleanup;
    }

645 646 647 648 649
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }
650

651 652 653 654 655
    if (driver->cgroup == NULL) {
        lxcError(VIR_ERR_NO_SUPPORT,
                 "%s", _("cgroups must be configured on the host"));
        goto cleanup;
    }
R
Ryota Ozaki 已提交
656

657 658 659 660
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("Unable to get cgroup for %s"), vm->def->name);
        goto cleanup;
R
Ryota Ozaki 已提交
661
    }
662 663 664 665 666 667 668

    if (virCgroupSetMemory(cgroup, newmem) < 0) {
        lxcError(VIR_ERR_OPERATION_FAILED,
                 "%s", _("Failed to set memory for domain"));
        goto cleanup;
    }

R
Ryota Ozaki 已提交
669 670 671 672 673 674 675 676 677 678
    ret = 0;

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

D
Daniel Veillard 已提交
679
static char *lxcDomainDumpXML(virDomainPtr dom,
680
                              int flags)
D
Daniel Veillard 已提交
681
{
682 683 684
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
D
Daniel Veillard 已提交
685

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

D
Daniel Veillard 已提交
690
    if (!vm) {
691 692 693 694
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
695
        goto cleanup;
D
Daniel Veillard 已提交
696 697
    }

698
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) &&
699 700 701 702
                             vm->newDef ? vm->newDef : vm->def,
                             flags);

cleanup:
703 704
    if (vm)
        virDomainObjUnlock(vm);
705
    return ret;
D
Daniel Veillard 已提交
706 707
}

708 709 710

/**
 * lxcVmCleanup:
711 712 713
 * @conn: pointer to connection
 * @driver: pointer to driver structure
 * @vm: pointer to VM to clean up
714 715 716 717 718 719 720
 *
 * 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
 */
721
static int lxcVmCleanup(lxc_driver_t *driver,
722
                        virDomainObjPtr  vm)
723 724 725 726
{
    int rc = -1;
    int waitRc;
    int childStatus = -1;
D
Dan Smith 已提交
727
    virCgroupPtr cgroup;
728
    int i;
729
    lxcDomainObjPrivatePtr priv = vm->privateData;
730 731 732 733 734 735

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

    if ((waitRc != vm->pid) && (errno != ECHILD)) {
736
        virReportSystemError(errno,
737 738
                             _("waitpid failed to wait for container %d: %d"),
                             vm->pid, waitRc);
739 740 741 742 743 744 745 746 747
    }

    rc = 0;

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

748 749 750 751 752 753 754 755 756 757
    /* 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);
    }

758 759
    virEventRemoveHandle(priv->monitorWatch);
    close(priv->monitor);
760 761

    virFileDeletePid(driver->stateDir, vm->def->name);
762
    virDomainDeleteConfig(driver->stateDir, NULL, vm);
763 764 765 766

    vm->state = VIR_DOMAIN_SHUTOFF;
    vm->pid = -1;
    vm->def->id = -1;
767 768
    priv->monitor = -1;
    priv->monitorWatch = -1;
769

770 771 772
    for (i = 0 ; i < vm->def->nnets ; i++) {
        vethInterfaceUpOrDown(vm->def->nets[i]->ifname, 0);
        vethDelete(vm->def->nets[i]->ifname);
773 774
    }

775 776
    if (driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0) {
D
Dan Smith 已提交
777 778 779 780
        virCgroupRemove(cgroup);
        virCgroupFree(&cgroup);
    }

781 782 783 784 785 786 787
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }

788 789 790
    return rc;
}

791 792
/**
 * lxcSetupInterfaces:
793
 * @conn: pointer to connection
794
 * @def: pointer to virtual machine structure
795 796
 * @nveths: number of interfaces
 * @veths: interface names
797 798 799 800 801 802 803 804
 *
 * 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,
805
                              virDomainDefPtr def,
806 807
                              unsigned int *nveths,
                              char ***veths)
808
{
809
    int rc = -1, i;
810 811
    char *bridge = NULL;
    brControl *brctl = NULL;
812

813
    if (brInit(&brctl) != 0)
814 815
        return -1;

816
    for (i = 0 ; i < def->nnets ; i++) {
817 818 819
        char parentVeth[PATH_MAX] = "";
        char containerVeth[PATH_MAX] = "";

820
        switch (def->nets[i]->type) {
821 822 823
        case VIR_DOMAIN_NET_TYPE_NETWORK:
        {
            virNetworkPtr network = virNetworkLookupByName(conn,
824
                                                           def->nets[i]->data.network.name);
825 826 827 828 829 830 831
            if (!network) {
                goto error_exit;
            }

            bridge = virNetworkGetBridgeName(network);

            virNetworkFree(network);
832 833 834
            break;
        }
        case VIR_DOMAIN_NET_TYPE_BRIDGE:
835
            bridge = def->nets[i]->data.bridge.brname;
836
            break;
S
Stefan Berger 已提交
837 838 839 840 841 842 843 844 845 846

        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;
847 848 849 850
        }

        DEBUG("bridge: %s", bridge);
        if (NULL == bridge) {
851
            lxcError(VIR_ERR_INTERNAL_ERROR,
852
                     "%s", _("Failed to get bridge for interface"));
853 854 855 856
            goto error_exit;
        }

        DEBUG0("calling vethCreate()");
857 858
        if (NULL != def->nets[i]->ifname) {
            strcpy(parentVeth, def->nets[i]->ifname);
859 860 861
        }
        DEBUG("parentVeth: %s, containerVeth: %s", parentVeth, containerVeth);
        if (0 != (rc = vethCreate(parentVeth, PATH_MAX, containerVeth, PATH_MAX))) {
862
            lxcError(VIR_ERR_INTERNAL_ERROR,
863
                     _("Failed to create veth device pair: %d"), rc);
864 865
            goto error_exit;
        }
866 867
        if (NULL == def->nets[i]->ifname) {
            def->nets[i]->ifname = strdup(parentVeth);
868
        }
869
        if (VIR_REALLOC_N(*veths, (*nveths)+1) < 0) {
870
            virReportOOMError();
871
            goto error_exit;
872 873
        }
        if (((*veths)[(*nveths)] = strdup(containerVeth)) == NULL) {
874
            virReportOOMError();
875
            goto error_exit;
876 877
        }
        (*nveths)++;
878

879
        if (NULL == def->nets[i]->ifname) {
880
            virReportOOMError();
881 882 883
            goto error_exit;
        }

884
        {
885 886 887
            char macaddr[VIR_MAC_STRING_BUFLEN];
            virFormatMacAddr(def->nets[i]->mac, macaddr);
            if (0 != (rc = setMacAddr(containerVeth, macaddr))) {
888
                virReportSystemError(rc,
889
                                     _("Failed to set %s to %s"),
890 891 892 893 894
                                     macaddr, containerVeth);
                goto error_exit;
            }
        }

895
        if (0 != (rc = brAddInterface(brctl, bridge, parentVeth))) {
896
            virReportSystemError(rc,
897
                                 _("Failed to add %s device to %s"),
898
                                 parentVeth, bridge);
899 900 901 902
            goto error_exit;
        }

        if (0 != (rc = vethInterfaceUpOrDown(parentVeth, 1))) {
903
            virReportSystemError(rc,
904 905
                                 _("Failed to enable %s device"),
                                 parentVeth);
906 907 908 909 910 911 912 913
            goto error_exit;
        }

    }

    rc = 0;

error_exit:
914
    brShutdown(brctl);
915 916 917
    return rc;
}

918

919
static int lxcMonitorClient(lxc_driver_t * driver,
920
                            virDomainObjPtr vm)
921
{
922 923 924
    char *sockpath = NULL;
    int fd;
    struct sockaddr_un addr;
925

926 927
    if (virAsprintf(&sockpath, "%s/%s.sock",
                    driver->stateDir, vm->def->name) < 0) {
928
        virReportOOMError();
929 930 931 932
        return -1;
    }

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
933
        virReportSystemError(errno, "%s",
934
                             _("Failed to create client socket"));
935
        goto error;
936 937
    }

938 939
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
940
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
941
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
942 943 944
                 _("Socket path %s too big for destination"), sockpath);
        goto error;
    }
945 946

    if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
947
        virReportSystemError(errno, "%s",
948
                             _("Failed to connect to client socket"));
949
        goto error;
950 951
    }

952 953
    VIR_FREE(sockpath);
    return fd;
954

955 956 957 958 959 960 961 962
error:
    VIR_FREE(sockpath);
    if (fd != -1)
        close(fd);
    return -1;
}


963
static int lxcVmTerminate(lxc_driver_t *driver,
964
                          virDomainObjPtr vm,
965 966 967 968
                          int signum)
{
    if (signum == 0)
        signum = SIGINT;
969

970
    if (vm->pid <= 0) {
971
        lxcError(VIR_ERR_INTERNAL_ERROR,
972
                 _("Invalid PID %d for container"), vm->pid);
973 974 975
        return -1;
    }

976 977
    if (kill(vm->pid, signum) < 0) {
        if (errno != ESRCH) {
978
            virReportSystemError(errno,
979
                                 _("Failed to kill pid %d"),
980
                                 vm->pid);
981
            return -1;
982
        }
983 984
    }

985
    vm->state = VIR_DOMAIN_SHUTDOWN;
986

987
    return lxcVmCleanup(driver, vm);
988
}
989

990 991
static void lxcMonitorEvent(int watch,
                            int fd,
992 993 994
                            int events ATTRIBUTE_UNUSED,
                            void *data)
{
995 996
    lxc_driver_t *driver = lxc_driver;
    virDomainObjPtr vm = data;
997
    virDomainEventPtr event = NULL;
998
    lxcDomainObjPrivatePtr priv;
999

1000
    lxcDriverLock(driver);
1001 1002
    virDomainObjLock(vm);
    lxcDriverUnlock(driver);
1003

1004 1005 1006
    priv = vm->privateData;

    if (priv->monitor != fd || priv->monitorWatch != watch) {
1007
        virEventRemoveHandle(watch);
1008
        goto cleanup;
1009 1010
    }

1011
    if (lxcVmTerminate(driver, vm, SIGINT) < 0) {
1012
        virEventRemoveHandle(watch);
1013 1014 1015 1016 1017
    } else {
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
    }
1018 1019 1020 1021
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1022 1023

cleanup:
1024 1025
    if (vm)
        virDomainObjUnlock(vm);
1026 1027
    if (event) {
        lxcDriverLock(driver);
1028
        lxcDomainEventQueue(driver, event);
1029 1030
        lxcDriverUnlock(driver);
    }
1031 1032 1033
}


1034
static int lxcControllerStart(lxc_driver_t *driver,
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
                              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 已提交
1045 1046 1047 1048 1049
    int lenvc = 0, lenva = 0;
    const char **lenv = NULL;
    char *filterstr;
    char *outputstr;
    char *tmp;
A
Amy Griffis 已提交
1050
    int log_level;
1051 1052
    pid_t child;
    int status;
1053 1054
    fd_set keepfd;
    char appPtyStr[30];
1055
    const char *emulator;
1056 1057

    FD_ZERO(&keepfd);
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080

#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 已提交
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
#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)

1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
#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 已提交
1118 1119
    log_level = virLogGetDefaultPriority();
    if (virAsprintf(&tmp, "LIBVIRT_DEBUG=%d", log_level) < 0)
A
Amy Griffis 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
        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 已提交
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
    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 已提交
1141
            goto no_memory;
A
Amy Griffis 已提交
1142
        ADD_ENV(tmp);
A
Amy Griffis 已提交
1143 1144 1145 1146
    }

    ADD_ENV(NULL);

1147 1148
    snprintf(appPtyStr, sizeof(appPtyStr), "%d", appPty);

1149 1150 1151
    emulator = vm->def->emulator;

    ADD_ARG_LIT(emulator);
1152 1153 1154
    ADD_ARG_LIT("--name");
    ADD_ARG_LIT(vm->def->name);
    ADD_ARG_LIT("--console");
1155
    ADD_ARG_LIT(appPtyStr);
1156 1157 1158 1159 1160 1161 1162 1163 1164
    ADD_ARG_LIT("--background");

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

    ADD_ARG(NULL);

1165 1166
    FD_SET(appPty, &keepfd);

1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
    /* 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;
    }

1183
    if (virExec(largv, lenv, &keepfd, &child,
1184
                -1, &logfd, &logfd,
1185 1186 1187 1188 1189 1190 1191 1192 1193
                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) {
1194
        virReportSystemError(errno,
1195
                             _("Cannot wait for '%s'"),
1196
                             largv[0]);
1197 1198 1199 1200
        goto cleanup;
    }

    if (!(WIFEXITED(status) && WEXITSTATUS(status) == 0)) {
1201
        lxcError(VIR_ERR_INTERNAL_ERROR,
1202
                 _("Container '%s' unexpectedly shutdown during startup"),
1203 1204 1205 1206 1207 1208 1209
                 largv[0]);
        goto cleanup;
    }

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
A
Amy Griffis 已提交
1210 1211
#undef ADD_ENV_SPACE
#undef ADD_ENV_PAIR
1212

A
Amy Griffis 已提交
1213
    return 0;
1214 1215

no_memory:
1216
    virReportOOMError();
A
Amy Griffis 已提交
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
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;
1229 1230 1231
}


1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
/**
 * 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,
1244
                      virDomainObjPtr  vm)
1245
{
1246
    int rc = -1, r;
1247 1248
    unsigned int i;
    int parentTty;
1249
    char *parentTtyPath = NULL;
1250 1251 1252 1253
    char *logfile = NULL;
    int logfd = -1;
    unsigned int nveths = 0;
    char **veths = NULL;
1254
    lxcDomainObjPrivatePtr priv = vm->privateData;
1255

L
Laine Stump 已提交
1256
    if ((r = virFileMakePath(driver->logDir)) != 0) {
1257
        virReportSystemError(r,
1258
                             _("Cannot create log directory '%s'"),
1259
                             driver->logDir);
1260 1261
        return -1;
    }
1262

1263 1264
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1265
        virReportOOMError();
1266
        return -1;
1267 1268
    }

1269
    /* open parent tty */
1270
    if (virFileOpenTty(&parentTty, &parentTtyPath, 1) < 0) {
1271
        virReportSystemError(errno, "%s",
1272
                             _("Failed to allocate tty"));
1273 1274
        goto cleanup;
    }
1275 1276 1277 1278 1279 1280 1281
    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);
    }
1282

1283
    if (lxcSetupInterfaces(conn, vm->def, &nveths, &veths) != 0)
1284
        goto cleanup;
1285

1286
    /* Persist the live configuration now we have veth & tty info */
1287
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
1288 1289
        goto cleanup;

1290
    if ((logfd = open(logfile, O_WRONLY | O_APPEND | O_CREAT,
1291
             S_IRUSR|S_IWUSR)) < 0) {
1292
        virReportSystemError(errno,
1293
                             _("Failed to open '%s'"),
1294
                             logfile);
1295
        goto cleanup;
1296 1297
    }

1298
    if (lxcControllerStart(driver,
1299 1300 1301
                           vm,
                           nveths, veths,
                           parentTty, logfd) < 0)
1302
        goto cleanup;
1303 1304 1305 1306

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

1310
    /* And get its pid */
1311
    if ((r = virFileReadPid(driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1312
        virReportSystemError(r,
1313 1314
                             _("Failed to read pid file %s/%s.pid"),
                             driver->stateDir, vm->def->name);
1315
        goto cleanup;
1316
    }
1317

1318
    vm->def->id = vm->pid;
1319 1320
    vm->state = VIR_DOMAIN_RUNNING;

1321 1322
    if ((priv->monitorWatch = virEventAddHandle(
             priv->monitor,
1323 1324
             VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
             lxcMonitorEvent,
1325
             vm, NULL)) < 0) {
1326
        lxcVmTerminate(driver, vm, 0);
1327 1328
        goto cleanup;
    }
1329

1330 1331 1332 1333 1334 1335 1336 1337
    rc = 0;

cleanup:
    for (i = 0 ; i < nveths ; i++) {
        if (rc != 0)
            vethDelete(veths[i]);
        VIR_FREE(veths[i]);
    }
1338 1339 1340
    if (rc != 0 && priv->monitor != -1) {
        close(priv->monitor);
        priv->monitor = -1;
1341 1342 1343 1344 1345 1346
    }
    if (parentTty != -1)
        close(parentTty);
    if (logfd != -1)
        close(logfd);
    VIR_FREE(logfile);
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
    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)
{
1360 1361
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1362
    virDomainEventPtr event = NULL;
1363
    int ret = -1;
1364

1365
    lxcDriverLock(driver);
1366
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1367
    if (!vm) {
1368 1369 1370 1371
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1372 1373 1374
        goto cleanup;
    }

1375
    if ((vm->def->nets != NULL) && !(driver->have_netns)) {
1376
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1377
                 "%s", _("System lacks NETNS support"));
1378 1379 1380
        goto cleanup;
    }

1381 1382 1383 1384 1385 1386
    if (virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is already running"));
        goto cleanup;
    }

1387
    ret = lxcVmStart(dom->conn, driver, vm);
1388

1389 1390 1391 1392 1393
    if (ret == 0)
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);

1394
cleanup:
1395 1396
    if (vm)
        virDomainObjUnlock(vm);
1397 1398
    if (event)
        lxcDomainEventQueue(driver, event);
1399
    lxcDriverUnlock(driver);
1400
    return ret;
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
}

/**
 * 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) {
1417
    lxc_driver_t *driver = conn->privateData;
1418
    virDomainObjPtr vm = NULL;
1419
    virDomainDefPtr def;
1420
    virDomainPtr dom = NULL;
1421
    virDomainEventPtr event = NULL;
1422

1423
    lxcDriverLock(driver);
1424
    if (!(def = virDomainDefParseString(driver->caps, xml,
1425
                                        VIR_DOMAIN_XML_INACTIVE)))
1426
        goto cleanup;
1427

1428 1429
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
        goto cleanup;
1430

1431
    if ((def->nets != NULL) && !(driver->have_netns)) {
1432
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1433
                 "%s", _("System lacks NETNS support"));
1434
        goto cleanup;
1435 1436
    }

1437

1438
    if (!(vm = virDomainAssignDef(driver->caps,
1439
                                  &driver->domains, def, false)))
1440 1441
        goto cleanup;
    def = NULL;
1442 1443

    if (lxcVmStart(conn, driver, vm) < 0) {
1444
        virDomainRemoveInactive(&driver->domains, vm);
1445
        vm = NULL;
1446
        goto cleanup;
1447 1448
    }

1449 1450 1451 1452
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);

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

1457 1458
cleanup:
    virDomainDefFree(def);
1459 1460
    if (vm)
        virDomainObjUnlock(vm);
1461 1462
    if (event)
        lxcDomainEventQueue(driver, event);
1463
    lxcDriverUnlock(driver);
1464 1465 1466 1467 1468
    return dom;
}

/**
 * lxcDomainShutdown:
1469
 * @dom: pointer to domain to shutdown
1470 1471 1472 1473 1474 1475 1476
 *
 * 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)
{
1477 1478
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1479
    virDomainEventPtr event = NULL;
1480
    int ret = -1;
1481

1482
    lxcDriverLock(driver);
1483
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1484
    if (!vm) {
1485 1486 1487 1488
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1489
        goto cleanup;
1490 1491
    }

1492 1493 1494 1495 1496 1497
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

1498
    ret = lxcVmTerminate(driver, vm, 0);
1499 1500 1501
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
1502 1503 1504 1505
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1506 1507

cleanup:
1508 1509
    if (vm)
        virDomainObjUnlock(vm);
1510 1511 1512 1513 1514 1515 1516 1517
    if (event)
        lxcDomainEventQueue(driver, event);
    lxcDriverUnlock(driver);
    return ret;
}


static int
1518 1519 1520 1521
lxcDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
1522 1523 1524 1525 1526 1527 1528
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

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

1531
    return ret;
1532 1533
}

1534

1535
static int
1536 1537
lxcDomainEventDeregister(virConnectPtr conn,
                         virConnectDomainEventCallback callback)
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
{
    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;
}

1554 1555 1556 1557 1558 1559 1560 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

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;
}


1597 1598
static void lxcDomainEventDispatchFunc(virConnectPtr conn,
                                       virDomainEventPtr event,
1599
                                       virConnectDomainEventGenericCallback cb,
1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650
                                       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);
}
1651 1652 1653

/**
 * lxcDomainDestroy:
1654
 * @dom: pointer to domain to destroy
1655 1656 1657 1658 1659 1660 1661
 *
 * 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)
{
1662 1663
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1664
    virDomainEventPtr event = NULL;
1665
    int ret = -1;
1666

1667
    lxcDriverLock(driver);
1668
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1669
    if (!vm) {
1670 1671 1672 1673
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1674
        goto cleanup;
1675 1676
    }

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

1683
    ret = lxcVmTerminate(driver, vm, SIGKILL);
1684 1685 1686
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1687 1688 1689 1690
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1691 1692

cleanup:
1693 1694
    if (vm)
        virDomainObjUnlock(vm);
1695 1696
    if (event)
        lxcDomainEventQueue(driver, event);
1697
    lxcDriverUnlock(driver);
1698
    return ret;
1699
}
1700

1701 1702 1703 1704 1705
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

1706
    if (virRun(argv, &ip_rc) < 0 ||
1707 1708
        !(WIFEXITED(ip_rc) && (WEXITSTATUS(ip_rc) != 255)))
        return 0;
1709

1710 1711
    if (lxcContainerAvailable(LXC_CONTAINER_FEATURE_NET) < 0)
        return 0;
1712

1713
    return 1;
1714 1715
}

1716

1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
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 已提交
1730
        !virDomainObjIsActive(vm)) {
1731 1732 1733
        int ret = lxcVmStart(data->conn, data->driver, vm);
        if (ret < 0) {
            virErrorPtr err = virGetLastError();
1734
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
                      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);
}

1749 1750 1751 1752 1753 1754 1755 1756 1757 1758
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 */

1759 1760
    struct lxcAutostartData data = { driver, conn };

1761
    lxcDriverLock(driver);
1762
    virHashForEach(driver->domains.objs, lxcAutostartDomain, &data);
1763 1764 1765 1766 1767 1768
    lxcDriverUnlock(driver);

    if (conn)
        virConnectClose(conn);
}

1769 1770 1771 1772 1773 1774 1775
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;
1776
    lxcDomainObjPrivatePtr priv;
1777 1778

    virDomainObjLock(vm);
1779 1780

    priv = vm->privateData;
1781
    if ((priv->monitor = lxcMonitorClient(driver, vm)) < 0) {
1782 1783 1784 1785 1786
        goto cleanup;
    }

    /* Read pid from controller */
    if ((virFileReadPid(lxc_driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1787 1788
        close(priv->monitor);
        priv->monitor = -1;
1789 1790 1791
        goto cleanup;
    }

1792
    if ((config = virDomainConfigFile(driver->stateDir,
1793 1794 1795 1796
                                      vm->def->name)) == NULL)
        goto cleanup;

    /* Try and load the live config */
1797
    tmp = virDomainDefParseFile(driver->caps, config, 0);
1798 1799 1800 1801 1802 1803 1804 1805 1806
    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;
1807 1808 1809 1810 1811 1812

        if ((priv->monitorWatch = virEventAddHandle(
                 priv->monitor,
                 VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
                 lxcMonitorEvent,
                 vm, NULL)) < 0) {
1813
            lxcVmTerminate(driver, vm, 0);
1814 1815
            goto cleanup;
        }
1816 1817
    } else {
        vm->def->id = -1;
1818 1819
        close(priv->monitor);
        priv->monitor = -1;
1820 1821 1822 1823 1824 1825
    }

cleanup:
    virDomainObjUnlock(vm);
}

1826

1827
static int lxcStartup(int privileged)
D
Daniel Veillard 已提交
1828
{
1829
    char *ld;
1830
    int rc;
1831 1832 1833 1834 1835 1836

    /* 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");
1837 1838 1839 1840
    if (ld && strstr(ld, "vgpreload")) {
        VIR_INFO0("Running under valgrind, disabling driver");
        return 0;
    }
1841

1842
    /* Check that the user is root, silently disable if not */
1843
    if (!privileged) {
1844 1845 1846 1847 1848 1849 1850 1851
        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;
1852 1853
    }

1854
    if (VIR_ALLOC(lxc_driver) < 0) {
1855 1856
        return -1;
    }
1857 1858 1859 1860
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
1861
    lxcDriverLock(lxc_driver);
D
Daniel Veillard 已提交
1862

1863 1864 1865
    if (virDomainObjListInit(&lxc_driver->domains) < 0)
        goto cleanup;

1866
    if (VIR_ALLOC(lxc_driver->domainEventCallbacks) < 0)
1867 1868 1869 1870 1871 1872 1873 1874
        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 已提交
1875
    lxc_driver->log_libvirtd = 0; /* by default log to container logfile */
1876
    lxc_driver->have_netns = lxcCheckNetNsSupport();
D
Daniel Veillard 已提交
1877

1878 1879 1880 1881 1882 1883 1884
    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 已提交
1885
    /* Call function to load lxc driver configuration information */
1886 1887
    if (lxcLoadDriverConfig(lxc_driver) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
1888

1889 1890
    if ((lxc_driver->caps = lxcCapsInit()) == NULL)
        goto cleanup;
D
Daniel Veillard 已提交
1891

1892 1893 1894
    lxc_driver->caps->privateDataAllocFunc = lxcDomainObjPrivateAlloc;
    lxc_driver->caps->privateDataFreeFunc = lxcDomainObjPrivateFree;

1895
    if (virDomainLoadAllConfigs(lxc_driver->caps,
1896 1897
                                &lxc_driver->domains,
                                lxc_driver->configDir,
1898
                                lxc_driver->autostartDir,
1899
                                0, NULL, NULL) < 0)
1900
        goto cleanup;
1901

1902
    virHashForEach(lxc_driver->domains.objs, lxcReconnectVM, lxc_driver);
1903

1904
    lxcDriverUnlock(lxc_driver);
D
Daniel Veillard 已提交
1905 1906
    return 0;

1907 1908 1909 1910
cleanup:
    lxcDriverUnlock(lxc_driver);
    lxcShutdown();
    return -1;
D
Daniel Veillard 已提交
1911 1912
}

1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938
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);
1939
    virDomainLoadAllConfigs(lxc_driver->caps,
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950
                            &lxc_driver->domains,
                            lxc_driver->configDir,
                            lxc_driver->autostartDir,
                            0, lxcNotifyLoadDomain, lxc_driver);
    lxcDriverUnlock(lxc_driver);

    lxcAutostartConfigs(lxc_driver);

    return 0;
}

1951
static int lxcShutdown(void)
D
Daniel Veillard 已提交
1952
{
1953
    if (lxc_driver == NULL)
1954
        return(-1);
1955

1956
    lxcDriverLock(lxc_driver);
1957
    virDomainObjListDeinit(&lxc_driver->domains);
1958

1959 1960 1961 1962 1963 1964
    virDomainEventCallbackListFree(lxc_driver->domainEventCallbacks);
    virDomainEventQueueFree(lxc_driver->domainEventQueue);

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

1965 1966 1967 1968 1969 1970
    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);
1971
    virMutexDestroy(&lxc_driver->lock);
1972
    VIR_FREE(lxc_driver);
1973 1974 1975

    return 0;
}
D
Daniel Veillard 已提交
1976

1977 1978 1979 1980 1981 1982 1983 1984 1985
/**
 * lxcActive:
 *
 * Checks if the LXC daemon is active, i.e. has an active domain
 *
 * Returns 1 if active, 0 otherwise
 */
static int
lxcActive(void) {
1986
    int active;
1987

1988 1989
    if (lxc_driver == NULL)
        return(0);
1990

1991
    lxcDriverLock(lxc_driver);
1992
    active = virDomainObjListNumOfDomains(&lxc_driver->domains, 1);
1993
    lxcDriverUnlock(lxc_driver);
1994

1995
    return active;
D
Daniel Veillard 已提交
1996 1997
}

1998
static int lxcVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *version)
D
Dan Smith 已提交
1999 2000 2001
{
    struct utsname ver;

2002
    uname(&ver);
D
Dan Smith 已提交
2003

2004 2005
    if (virParseVersionString(ver.release, version) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, _("Unknown release: %s"), ver.release);
D
Dan Smith 已提交
2006 2007 2008 2009 2010
        return -1;
    }

    return 0;
}
2011

2012 2013
static char *lxcGetSchedulerType(virDomainPtr domain ATTRIBUTE_UNUSED,
                                 int *nparams)
2014
{
2015 2016
    char *schedulerType = NULL;

2017 2018 2019
    if (nparams)
        *nparams = 1;

2020 2021 2022
    schedulerType = strdup("posix");

    if (schedulerType == NULL)
2023
        virReportOOMError();
2024 2025

    return schedulerType;
2026 2027
}

2028
static int lxcSetSchedulerParameters(virDomainPtr domain,
2029 2030 2031
                                     virSchedParameterPtr params,
                                     int nparams)
{
2032
    lxc_driver_t *driver = domain->conn->privateData;
2033
    int i;
2034 2035 2036
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;
2037

2038
    if (driver->cgroup == NULL)
2039 2040 2041 2042
        return -1;

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

2044
    if (vm == NULL) {
2045 2046 2047 2048
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(domain->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2049
        goto cleanup;
2050 2051
    }

2052
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2053
        goto cleanup;
2054 2055 2056

    for (i = 0; i < nparams; i++) {
        virSchedParameterPtr param = &params[i];
2057 2058 2059 2060 2061 2062 2063

        if (STRNEQ(param->field, "cpu_shares")) {
            lxcError(VIR_ERR_INVALID_ARG,
                     _("Invalid parameter `%s'"), param->field);
            goto cleanup;
        }

2064
        if (param->type != VIR_DOMAIN_SCHED_FIELD_ULLONG) {
2065
            lxcError(VIR_ERR_INVALID_ARG, "%s",
2066
                 _("Invalid type for cpu_shares tunable, expected a 'ullong'"));
2067 2068
            goto cleanup;
        }
2069

2070 2071 2072 2073
        int rc = virCgroupSetCpuShares(group, params[i].value.ul);
        if (rc != 0) {
            virReportSystemError(-rc, _("failed to set cpu_shares=%llu"),
                                 params[i].value.ul);
2074
            goto cleanup;
2075 2076
        }
    }
2077
    ret = 0;
2078

2079
cleanup:
2080
    lxcDriverUnlock(driver);
2081
    virCgroupFree(&group);
2082 2083
    if (vm)
        virDomainObjUnlock(vm);
2084
    return ret;
2085 2086
}

2087
static int lxcGetSchedulerParameters(virDomainPtr domain,
2088 2089 2090
                                     virSchedParameterPtr params,
                                     int *nparams)
{
2091
    lxc_driver_t *driver = domain->conn->privateData;
2092 2093
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
2094
    unsigned long long val;
2095
    int ret = -1;
2096

2097
    if (driver->cgroup == NULL)
2098
        return -1;
2099 2100

    if ((*nparams) != 1) {
2101
        lxcError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
2102
                 "%s", _("Invalid parameter count"));
2103
        return -1;
2104 2105
    }

2106 2107 2108
    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, domain->uuid);

2109
    if (vm == NULL) {
2110 2111 2112 2113
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(domain->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2114
        goto cleanup;
2115 2116
    }

2117
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2118
        goto cleanup;
2119

2120 2121
    if (virCgroupGetCpuShares(group, &val) != 0)
        goto cleanup;
2122
    params[0].value.ul = val;
C
Chris Lalancette 已提交
2123
    if (virStrcpyStatic(params[0].field, "cpu_shares") == NULL) {
2124
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
2125 2126 2127
                 "%s", _("Field cpu_shares too big for destination"));
        goto cleanup;
    }
2128 2129
    params[0].type = VIR_DOMAIN_SCHED_FIELD_ULLONG;

2130
    ret = 0;
2131

2132
cleanup:
2133
    lxcDriverUnlock(driver);
2134
    virCgroupFree(&group);
2135 2136
    if (vm)
        virDomainObjUnlock(vm);
2137
    return ret;
2138 2139
}

2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157
#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);
2158
        lxcError(VIR_ERR_NO_DOMAIN,
2159 2160 2161 2162 2163
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2164
        lxcError(VIR_ERR_OPERATION_INVALID,
2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178
                 "%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)
2179
        ret = linuxDomainInterfaceStats(path, stats);
2180
    else
2181
        lxcError(VIR_ERR_INVALID_ARG,
2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193
                 _("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)
2194
    lxcError(VIR_ERR_NO_SUPPORT, "%s", __FUNCTION__);
2195 2196 2197 2198
    return -1;
}
#endif

2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
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);
2212
        lxcError(VIR_ERR_NO_DOMAIN,
2213
                 _("No domain with matching uuid '%s'"), uuidstr);
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
        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);
2239
        lxcError(VIR_ERR_NO_DOMAIN,
2240
                 _("No domain with matching uuid '%s'"), uuidstr);
2241 2242 2243 2244
        goto cleanup;
    }

    if (!vm->persistent) {
2245
        lxcError(VIR_ERR_INTERNAL_ERROR,
2246
                 "%s", _("Cannot set autostart for transient domain"));
2247 2248 2249 2250 2251
        goto cleanup;
    }

    autostart = (autostart != 0);

2252 2253 2254 2255
    if (vm->autostart == autostart) {
        ret = 0;
        goto cleanup;
    }
2256

2257
    configFile = virDomainConfigFile(driver->configDir,
2258 2259 2260
                                     vm->def->name);
    if (configFile == NULL)
        goto cleanup;
2261
    autostartLink = virDomainConfigFile(driver->autostartDir,
2262 2263 2264
                                        vm->def->name);
    if (autostartLink == NULL)
        goto cleanup;
2265

2266 2267
    if (autostart) {
        int err;
2268

2269
        if ((err = virFileMakePath(driver->autostartDir))) {
2270
            virReportSystemError(err,
2271 2272 2273
                                 _("Cannot create autostart directory %s"),
                                 driver->autostartDir);
            goto cleanup;
2274 2275
        }

2276
        if (symlink(configFile, autostartLink) < 0) {
2277
            virReportSystemError(errno,
2278 2279 2280 2281 2282 2283
                                 _("Failed to create symlink '%s to '%s'"),
                                 autostartLink, configFile);
            goto cleanup;
        }
    } else {
        if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2284
            virReportSystemError(errno,
2285 2286 2287 2288
                                 _("Failed to delete symlink '%s'"),
                                 autostartLink);
            goto cleanup;
        }
2289
    }
2290 2291

    vm->autostart = autostart;
2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302
    ret = 0;

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

R
Ryota Ozaki 已提交
2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313
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 &&
2314
          virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
R
Ryota Ozaki 已提交
2315 2316
        return -1;

2317 2318
    /* From here on, we know that cgroup != NULL.  */

R
Ryota Ozaki 已提交
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 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390
    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:
2391
    virCgroupFree(&cgroup);
R
Ryota Ozaki 已提交
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408
    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);
2409
        lxcError(VIR_ERR_NO_DOMAIN,
2410
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2411 2412 2413
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2414
    if (!virDomainObjIsActive(vm)) {
2415
        lxcError(VIR_ERR_OPERATION_INVALID,
2416
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2417 2418 2419 2420 2421
        goto cleanup;
    }

    if (vm->state != VIR_DOMAIN_PAUSED) {
        if (lxcFreezeContainer(driver, vm) < 0) {
2422
            lxcError(VIR_ERR_OPERATION_FAILED,
2423
                     "%s", _("Suspend operation failed"));
R
Ryota Ozaki 已提交
2424 2425 2426 2427 2428 2429 2430 2431 2432
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_PAUSED;

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

2433
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
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
        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);
2474
        lxcError(VIR_ERR_NO_DOMAIN,
2475
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2476 2477 2478
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2479
    if (!virDomainObjIsActive(vm)) {
2480
        lxcError(VIR_ERR_OPERATION_INVALID,
2481
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2482 2483 2484 2485 2486
        goto cleanup;
    }

    if (vm->state == VIR_DOMAIN_PAUSED) {
        if (lxcUnfreezeContainer(driver, vm) < 0) {
2487
            lxcError(VIR_ERR_OPERATION_FAILED,
2488
                     "%s", _("Resume operation failed"));
R
Ryota Ozaki 已提交
2489 2490 2491 2492 2493 2494 2495 2496 2497
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_RUNNING;

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

2498
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511
        goto cleanup;
    ret = 0;

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


D
Daniel Veillard 已提交
2512 2513 2514 2515 2516 2517 2518 2519
/* 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 已提交
2520
    lxcVersion, /* version */
2521
    NULL, /* libvirtVersion (impl. in libvirt.c) */
2522
    virGetHostname, /* getHostname */
D
Daniel Veillard 已提交
2523
    NULL, /* getMaxVcpus */
2524 2525
    nodeGetInfo, /* nodeGetInfo */
    lxcGetCapabilities, /* getCapabilities */
D
Daniel Veillard 已提交
2526 2527
    lxcListDomains, /* listDomains */
    lxcNumDomains, /* numOfDomains */
2528
    lxcDomainCreateAndStart, /* domainCreateXML */
D
Daniel Veillard 已提交
2529 2530 2531
    lxcDomainLookupByID, /* domainLookupByID */
    lxcDomainLookupByUUID, /* domainLookupByUUID */
    lxcDomainLookupByName, /* domainLookupByName */
R
Ryota Ozaki 已提交
2532 2533
    lxcDomainSuspend, /* domainSuspend */
    lxcDomainResume, /* domainResume */
2534
    lxcDomainShutdown, /* domainShutdown */
D
Daniel Veillard 已提交
2535
    NULL, /* domainReboot */
2536
    lxcDomainDestroy, /* domainDestroy */
D
Daniel Veillard 已提交
2537
    lxcGetOSType, /* domainGetOSType */
R
Ryota Ozaki 已提交
2538 2539 2540
    lxcDomainGetMaxMemory, /* domainGetMaxMemory */
    lxcDomainSetMaxMemory, /* domainSetMaxMemory */
    lxcDomainSetMemory, /* domainSetMemory */
D
Daniel Veillard 已提交
2541 2542 2543 2544 2545 2546 2547 2548
    lxcDomainGetInfo, /* domainGetInfo */
    NULL, /* domainSave */
    NULL, /* domainRestore */
    NULL, /* domainCoreDump */
    NULL, /* domainSetVcpus */
    NULL, /* domainPinVcpu */
    NULL, /* domainGetVcpus */
    NULL, /* domainGetMaxVcpus */
2549 2550
    NULL, /* domainGetSecurityLabel */
    NULL, /* nodeGetSecurityModel */
D
Daniel Veillard 已提交
2551
    lxcDomainDumpXML, /* domainDumpXML */
2552 2553
    NULL, /* domainXMLFromNative */
    NULL, /* domainXMLToNative */
D
Daniel Veillard 已提交
2554 2555
    lxcListDefinedDomains, /* listDefinedDomains */
    lxcNumDefinedDomains, /* numOfDefinedDomains */
2556
    lxcDomainStart, /* domainCreate */
D
Daniel Veillard 已提交
2557 2558 2559
    lxcDomainDefine, /* domainDefineXML */
    lxcDomainUndefine, /* domainUndefine */
    NULL, /* domainAttachDevice */
2560
    NULL, /* domainAttachDeviceFlags */
D
Daniel Veillard 已提交
2561
    NULL, /* domainDetachDevice */
2562
    NULL, /* domainDetachDeviceFlags */
2563
    NULL, /* domainUpdateDeviceFlags */
2564 2565
    lxcDomainGetAutostart, /* domainGetAutostart */
    lxcDomainSetAutostart, /* domainSetAutostart */
2566 2567 2568
    lxcGetSchedulerType, /* domainGetSchedulerType */
    lxcGetSchedulerParameters, /* domainGetSchedulerParameters */
    lxcSetSchedulerParameters, /* domainSetSchedulerParameters */
D
Daniel Veillard 已提交
2569 2570 2571 2572
    NULL, /* domainMigratePrepare */
    NULL, /* domainMigratePerform */
    NULL, /* domainMigrateFinish */
    NULL, /* domainBlockStats */
2573
    lxcDomainInterfaceStats, /* domainInterfaceStats */
2574
    NULL, /* domainMemoryStats */
D
Daniel P. Berrange 已提交
2575 2576
    NULL, /* domainBlockPeek */
    NULL, /* domainMemoryPeek */
2577
    NULL, /* domainGetBlockInfo */
2578 2579
    nodeGetCellsFreeMemory, /* nodeGetCellsFreeMemory */
    nodeGetFreeMemory,  /* getFreeMemory */
2580 2581
    lxcDomainEventRegister, /* domainEventRegister */
    lxcDomainEventDeregister, /* domainEventDeregister */
D
Daniel Veillard 已提交
2582 2583
    NULL, /* domainMigratePrepare2 */
    NULL, /* domainMigrateFinish2 */
2584
    NULL, /* nodeDeviceDettach */
2585 2586
    NULL, /* nodeDeviceReAttach */
    NULL, /* nodeDeviceReset */
C
Chris Lalancette 已提交
2587
    NULL, /* domainMigratePrepareTunnel */
2588 2589 2590 2591
    lxcIsEncrypted, /* isEncrypted */
    lxcIsSecure, /* isSecure */
    lxcDomainIsActive, /* domainIsActive */
    lxcDomainIsPersistent, /* domainIsPersistent */
J
Jiri Denemark 已提交
2592
    NULL, /* cpuCompare */
2593
    NULL, /* cpuBaseline */
2594
    NULL, /* domainGetJobInfo */
2595
    NULL, /* domainAbortJob */
2596
    NULL, /* domainMigrateSetMaxDowntime */
2597 2598
    lxcDomainEventRegisterAny, /* domainEventRegisterAny */
    lxcDomainEventDeregisterAny, /* domainEventDeregisterAny */
2599 2600 2601
    NULL, /* domainManagedSave */
    NULL, /* domainHasManagedSaveImage */
    NULL, /* domainManagedSaveRemove */
C
Chris Lalancette 已提交
2602 2603 2604 2605 2606 2607 2608 2609 2610
    NULL, /* domainSnapshotCreateXML */
    NULL, /* domainSnapshotDumpXML */
    NULL, /* domainSnapshotNum */
    NULL, /* domainSnapshotListNames */
    NULL, /* domainSnapshotLookupByName */
    NULL, /* domainHasCurrentSnapshot */
    NULL, /* domainSnapshotCurrent */
    NULL, /* domainRevertToSnapshot */
    NULL, /* domainSnapshotDelete */
D
Daniel Veillard 已提交
2611 2612
};

2613
static virStateDriver lxcStateDriver = {
2614
    .name = "LXC",
2615 2616 2617
    .initialize = lxcStartup,
    .cleanup = lxcShutdown,
    .active = lxcActive,
2618
    .reload = lxcReload,
2619 2620
};

D
Daniel Veillard 已提交
2621 2622 2623
int lxcRegister(void)
{
    virRegisterDriver(&lxcDriver);
2624
    virRegisterStateDriver(&lxcStateDriver);
D
Daniel Veillard 已提交
2625 2626
    return 0;
}