lxc_driver.c 73.1 KB
Newer Older
D
Daniel Veillard 已提交
1
/*
2
 * Copyright (C) 2010 Red Hat, Inc.
D
Daniel Veillard 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * 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>

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

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

D
Daniel Veillard 已提交
55

56 57
#define VIR_FROM_THIS VIR_FROM_LXC

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


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

/* Functions */

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

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
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);
}


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

106

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

116 117
        conn->uri = xmlParseURI("lxc:///");
        if (!conn->uri) {
118
            virReportOOMError();
119 120
            return VIR_DRV_OPEN_ERROR;
        }
121 122 123 124 125 126 127 128 129 130
    } 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 */
131 132
        if (conn->uri->path != NULL &&
            STRNEQ(conn->uri->path, "/")) {
133
            lxcError(VIR_ERR_INTERNAL_ERROR,
134
                     _("Unexpected LXC URI path '%s', try lxc:///"),
135 136 137
                     conn->uri->path);
            return VIR_DRV_OPEN_ERROR;
        }
D
Daniel Veillard 已提交
138

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

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

    return VIR_DRV_OPEN_SUCCESS;
}

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

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

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

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

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


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

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

    return xml;
}


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

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

D
Daniel Veillard 已提交
203
    if (!vm) {
204 205
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching id %d"), id);
206
        goto cleanup;
D
Daniel Veillard 已提交
207 208 209
    }

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

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

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

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

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

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

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

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

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

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

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

274 275 276 277 278 279 280 281 282 283 284

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

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


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

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

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

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

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

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

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

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

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


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

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

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

371 372


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    info->state = vm->state;

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

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

523
    info->maxMem = vm->def->mem.max_balloon;
D
Daniel Veillard 已提交
524
    info->nrVirtCpu = 1;
525
    ret = 0;
D
Daniel Veillard 已提交
526

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

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

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

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

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

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

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

R
Ryota Ozaki 已提交
565 566 567 568 569 570 571 572 573 574 575 576 577
/* 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);
578
        lxcError(VIR_ERR_NO_DOMAIN,
579
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
580 581 582
        goto cleanup;
    }

583
    ret = vm->def->mem.max_balloon;
R
Ryota Ozaki 已提交
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602

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);
603
        lxcError(VIR_ERR_NO_DOMAIN,
604
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
605 606 607
        goto cleanup;
    }

608
    if (newmax < vm->def->mem.cur_balloon) {
609
        lxcError(VIR_ERR_INVALID_ARG,
610
                         "%s", _("Cannot set max memory lower than current memory"));
R
Ryota Ozaki 已提交
611 612 613
        goto cleanup;
    }

614
    vm->def->mem.max_balloon = newmax;
R
Ryota Ozaki 已提交
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
    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);
635
        lxcError(VIR_ERR_NO_DOMAIN,
636
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
637 638 639
        goto cleanup;
    }

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

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

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

658 659 660 661
    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 已提交
662
    }
663 664 665 666 667 668 669

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

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

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

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

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

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

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

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

709 710 711

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

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

    if ((waitRc != vm->pid) && (errno != ECHILD)) {
737
        virReportSystemError(errno,
738 739
                             _("waitpid failed to wait for container %d: %d"),
                             vm->pid, waitRc);
740 741 742 743
        rc = -1;
    } else if (WIFEXITED(childStatus)) {
        DEBUG("container exited with rc: %d", WEXITSTATUS(childStatus));
        rc = -1;
744 745
    }

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

756 757
    virEventRemoveHandle(priv->monitorWatch);
    close(priv->monitor);
758 759

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

    vm->state = VIR_DOMAIN_SHUTOFF;
    vm->pid = -1;
    vm->def->id = -1;
765 766
    priv->monitor = -1;
    priv->monitorWatch = -1;
767

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

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

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

786 787 788
    return rc;
}

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

811
    if (brInit(&brctl) != 0)
812 813
        return -1;

814
    for (i = 0 ; i < def->nnets ; i++) {
815 816
        char *parentVeth;
        char *containerVeth = NULL;
817

818
        switch (def->nets[i]->type) {
819 820
        case VIR_DOMAIN_NET_TYPE_NETWORK:
        {
821 822 823 824
            virNetworkPtr network;

            network = virNetworkLookupByName(conn,
                                             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
        parentVeth = def->nets[i]->ifname;
        if (vethCreate(&parentVeth, &containerVeth) < 0)
859
            goto error_exit;
860
        DEBUG("parentVeth: %s, containerVeth: %s", parentVeth, containerVeth);
861

862
        if (NULL == def->nets[i]->ifname) {
863
            def->nets[i]->ifname = parentVeth;
864
        }
865

866
        if (VIR_REALLOC_N(*veths, (*nveths)+1) < 0) {
867
            virReportOOMError();
868
            VIR_FREE(containerVeth);
869
            goto error_exit;
870
        }
871
        (*veths)[(*nveths)] = containerVeth;
872
        (*nveths)++;
873

874
        {
875 876
            char macaddr[VIR_MAC_STRING_BUFLEN];
            virFormatMacAddr(def->nets[i]->mac, macaddr);
877
            if (setMacAddr(containerVeth, macaddr) < 0)
878 879 880
                goto error_exit;
        }

881
        if (0 != (rc = brAddInterface(brctl, bridge, parentVeth))) {
882
            virReportSystemError(rc,
883
                                 _("Failed to add %s device to %s"),
884
                                 parentVeth, bridge);
885
            rc = -1;
886 887 888
            goto error_exit;
        }

889
        if (vethInterfaceUpOrDown(parentVeth, 1) < 0)
890 891 892 893 894 895
            goto error_exit;
    }

    rc = 0;

error_exit:
896
    brShutdown(brctl);
897 898 899
    return rc;
}

900

901
static int lxcMonitorClient(lxc_driver_t * driver,
902
                            virDomainObjPtr vm)
903
{
904 905 906
    char *sockpath = NULL;
    int fd;
    struct sockaddr_un addr;
907

908 909
    if (virAsprintf(&sockpath, "%s/%s.sock",
                    driver->stateDir, vm->def->name) < 0) {
910
        virReportOOMError();
911 912 913 914
        return -1;
    }

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
915
        virReportSystemError(errno, "%s",
916
                             _("Failed to create client socket"));
917
        goto error;
918 919
    }

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

    if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
929
        virReportSystemError(errno, "%s",
930
                             _("Failed to connect to client socket"));
931
        goto error;
932 933
    }

934 935
    VIR_FREE(sockpath);
    return fd;
936

937 938 939 940 941 942 943 944
error:
    VIR_FREE(sockpath);
    if (fd != -1)
        close(fd);
    return -1;
}


945
static int lxcVmTerminate(lxc_driver_t *driver,
946
                          virDomainObjPtr vm,
947 948 949 950
                          int signum)
{
    if (signum == 0)
        signum = SIGINT;
951

952
    if (vm->pid <= 0) {
953
        lxcError(VIR_ERR_INTERNAL_ERROR,
954
                 _("Invalid PID %d for container"), vm->pid);
955 956 957
        return -1;
    }

958 959
    if (kill(vm->pid, signum) < 0) {
        if (errno != ESRCH) {
960
            virReportSystemError(errno,
961
                                 _("Failed to kill pid %d"),
962
                                 vm->pid);
963
            return -1;
964
        }
965 966
    }

967
    vm->state = VIR_DOMAIN_SHUTDOWN;
968

969
    return lxcVmCleanup(driver, vm);
970
}
971

972 973
static void lxcMonitorEvent(int watch,
                            int fd,
974 975 976
                            int events ATTRIBUTE_UNUSED,
                            void *data)
{
977 978
    lxc_driver_t *driver = lxc_driver;
    virDomainObjPtr vm = data;
979
    virDomainEventPtr event = NULL;
980
    lxcDomainObjPrivatePtr priv;
981

982
    lxcDriverLock(driver);
983 984
    virDomainObjLock(vm);
    lxcDriverUnlock(driver);
985

986 987 988
    priv = vm->privateData;

    if (priv->monitor != fd || priv->monitorWatch != watch) {
989
        virEventRemoveHandle(watch);
990
        goto cleanup;
991 992
    }

993
    if (lxcVmTerminate(driver, vm, SIGINT) < 0) {
994
        virEventRemoveHandle(watch);
995 996 997 998 999
    } else {
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
    }
1000 1001 1002 1003
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1004 1005

cleanup:
1006 1007
    if (vm)
        virDomainObjUnlock(vm);
1008 1009
    if (event) {
        lxcDriverLock(driver);
1010
        lxcDomainEventQueue(driver, event);
1011 1012
        lxcDriverUnlock(driver);
    }
1013 1014 1015
}


1016
static int lxcControllerStart(lxc_driver_t *driver,
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
                              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 已提交
1027 1028 1029 1030 1031
    int lenvc = 0, lenva = 0;
    const char **lenv = NULL;
    char *filterstr;
    char *outputstr;
    char *tmp;
A
Amy Griffis 已提交
1032
    int log_level;
1033 1034
    pid_t child;
    int status;
1035 1036
    fd_set keepfd;
    char appPtyStr[30];
1037
    const char *emulator;
1038 1039

    FD_ZERO(&keepfd);
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062

#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 已提交
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
#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)

1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
#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 已提交
1100 1101
    log_level = virLogGetDefaultPriority();
    if (virAsprintf(&tmp, "LIBVIRT_DEBUG=%d", log_level) < 0)
A
Amy Griffis 已提交
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
        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 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
    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 已提交
1123
            goto no_memory;
A
Amy Griffis 已提交
1124
        ADD_ENV(tmp);
A
Amy Griffis 已提交
1125 1126 1127 1128
    }

    ADD_ENV(NULL);

1129 1130
    snprintf(appPtyStr, sizeof(appPtyStr), "%d", appPty);

1131 1132 1133
    emulator = vm->def->emulator;

    ADD_ARG_LIT(emulator);
1134 1135 1136
    ADD_ARG_LIT("--name");
    ADD_ARG_LIT(vm->def->name);
    ADD_ARG_LIT("--console");
1137
    ADD_ARG_LIT(appPtyStr);
1138 1139 1140 1141 1142 1143 1144 1145 1146
    ADD_ARG_LIT("--background");

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

    ADD_ARG(NULL);

1147 1148
    FD_SET(appPty, &keepfd);

1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
    /* 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;
    }

1165
    if (virExec(largv, lenv, &keepfd, &child,
1166
                -1, &logfd, &logfd,
1167 1168 1169 1170 1171 1172 1173 1174 1175
                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) {
1176
        virReportSystemError(errno,
1177
                             _("Cannot wait for '%s'"),
1178
                             largv[0]);
1179 1180 1181 1182
        goto cleanup;
    }

    if (!(WIFEXITED(status) && WEXITSTATUS(status) == 0)) {
1183
        lxcError(VIR_ERR_INTERNAL_ERROR,
1184
                 _("Container '%s' unexpectedly shutdown during startup"),
1185 1186 1187 1188 1189 1190 1191
                 largv[0]);
        goto cleanup;
    }

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
A
Amy Griffis 已提交
1192 1193
#undef ADD_ENV_SPACE
#undef ADD_ENV_PAIR
1194

A
Amy Griffis 已提交
1195
    return 0;
1196 1197

no_memory:
1198
    virReportOOMError();
A
Amy Griffis 已提交
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
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;
1211 1212 1213
}


1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
/**
 * 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,
1226
                      virDomainObjPtr  vm)
1227
{
1228
    int rc = -1, r;
1229 1230
    unsigned int i;
    int parentTty;
1231
    char *parentTtyPath = NULL;
1232 1233 1234 1235
    char *logfile = NULL;
    int logfd = -1;
    unsigned int nveths = 0;
    char **veths = NULL;
1236
    lxcDomainObjPrivatePtr priv = vm->privateData;
1237

L
Laine Stump 已提交
1238
    if ((r = virFileMakePath(driver->logDir)) != 0) {
1239
        virReportSystemError(r,
1240
                             _("Cannot create log directory '%s'"),
1241
                             driver->logDir);
1242 1243
        return -1;
    }
1244

1245 1246
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1247
        virReportOOMError();
1248
        return -1;
1249 1250
    }

1251
    /* open parent tty */
1252
    if (virFileOpenTty(&parentTty, &parentTtyPath, 1) < 0) {
1253
        virReportSystemError(errno, "%s",
1254
                             _("Failed to allocate tty"));
1255 1256
        goto cleanup;
    }
1257 1258 1259 1260 1261 1262 1263
    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);
    }
1264

1265
    if (lxcSetupInterfaces(conn, vm->def, &nveths, &veths) != 0)
1266
        goto cleanup;
1267

1268
    /* Save the configuration for the controller */
1269
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
1270 1271
        goto cleanup;

1272
    if ((logfd = open(logfile, O_WRONLY | O_APPEND | O_CREAT,
1273
             S_IRUSR|S_IWUSR)) < 0) {
1274
        virReportSystemError(errno,
1275
                             _("Failed to open '%s'"),
1276
                             logfile);
1277
        goto cleanup;
1278 1279
    }

1280
    if (lxcControllerStart(driver,
1281 1282 1283
                           vm,
                           nveths, veths,
                           parentTty, logfd) < 0)
1284
        goto cleanup;
1285 1286 1287 1288

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

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

1300
    vm->def->id = vm->pid;
1301 1302
    vm->state = VIR_DOMAIN_RUNNING;

1303 1304
    if ((priv->monitorWatch = virEventAddHandle(
             priv->monitor,
1305 1306
             VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
             lxcMonitorEvent,
1307
             vm, NULL)) < 0) {
1308
        lxcVmTerminate(driver, vm, 0);
1309 1310
        goto cleanup;
    }
1311

1312 1313 1314 1315 1316 1317 1318
    /*
     * Again, need to save the live configuration, because the function
     * requires vm->def->id != -1 to save tty info surely.
     */
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
        goto cleanup;

1319 1320 1321 1322 1323 1324 1325 1326
    rc = 0;

cleanup:
    for (i = 0 ; i < nveths ; i++) {
        if (rc != 0)
            vethDelete(veths[i]);
        VIR_FREE(veths[i]);
    }
1327 1328 1329
    if (rc != 0 && priv->monitor != -1) {
        close(priv->monitor);
        priv->monitor = -1;
1330 1331 1332 1333 1334 1335
    }
    if (parentTty != -1)
        close(parentTty);
    if (logfd != -1)
        close(logfd);
    VIR_FREE(logfile);
1336 1337 1338 1339
    return rc;
}

/**
1340
 * lxcDomainStartWithFlags:
1341
 * @dom: domain to start
1342
 * @flags: Must be 0 for now
1343 1344 1345 1346 1347
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
1348
static int lxcDomainStartWithFlags(virDomainPtr dom, unsigned int flags)
1349
{
1350 1351
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1352
    virDomainEventPtr event = NULL;
1353
    int ret = -1;
1354

1355 1356
    virCheckFlags(0, -1);

1357
    lxcDriverLock(driver);
1358
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1359
    if (!vm) {
1360 1361 1362 1363
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1364 1365 1366
        goto cleanup;
    }

1367
    if ((vm->def->nets != NULL) && !(driver->have_netns)) {
1368
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1369
                 "%s", _("System lacks NETNS support"));
1370 1371 1372
        goto cleanup;
    }

1373 1374 1375 1376 1377 1378
    if (virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is already running"));
        goto cleanup;
    }

1379
    ret = lxcVmStart(dom->conn, driver, vm);
1380

1381 1382 1383 1384 1385
    if (ret == 0)
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);

1386
cleanup:
1387 1388
    if (vm)
        virDomainObjUnlock(vm);
1389 1390
    if (event)
        lxcDomainEventQueue(driver, event);
1391
    lxcDriverUnlock(driver);
1392
    return ret;
1393 1394
}

1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
/**
 * 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)
{
    return lxcDomainStartWithFlags(dom, 0);
}

1408 1409 1410 1411
/**
 * lxcDomainCreateAndStart:
 * @conn: pointer to connection
 * @xml: XML definition of domain
1412
 * @flags: Must be 0 for now
1413 1414 1415 1416 1417 1418 1419 1420
 *
 * 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,
1421
                        unsigned int flags) {
1422
    lxc_driver_t *driver = conn->privateData;
1423
    virDomainObjPtr vm = NULL;
1424
    virDomainDefPtr def;
1425
    virDomainPtr dom = NULL;
1426
    virDomainEventPtr event = NULL;
1427

1428 1429
    virCheckFlags(0, NULL);

1430
    lxcDriverLock(driver);
1431
    if (!(def = virDomainDefParseString(driver->caps, xml,
1432
                                        VIR_DOMAIN_XML_INACTIVE)))
1433
        goto cleanup;
1434

1435 1436
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
        goto cleanup;
1437

1438
    if ((def->nets != NULL) && !(driver->have_netns)) {
1439
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1440
                 "%s", _("System lacks NETNS support"));
1441
        goto cleanup;
1442 1443
    }

1444

1445
    if (!(vm = virDomainAssignDef(driver->caps,
1446
                                  &driver->domains, def, false)))
1447 1448
        goto cleanup;
    def = NULL;
1449 1450

    if (lxcVmStart(conn, driver, vm) < 0) {
1451
        virDomainRemoveInactive(&driver->domains, vm);
1452
        vm = NULL;
1453
        goto cleanup;
1454 1455
    }

1456 1457 1458 1459
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);

1460
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
1461
    if (dom)
1462 1463
        dom->id = vm->def->id;

1464 1465
cleanup:
    virDomainDefFree(def);
1466 1467
    if (vm)
        virDomainObjUnlock(vm);
1468 1469
    if (event)
        lxcDomainEventQueue(driver, event);
1470
    lxcDriverUnlock(driver);
1471 1472 1473 1474 1475
    return dom;
}

/**
 * lxcDomainShutdown:
1476
 * @dom: pointer to domain to shutdown
1477 1478 1479 1480 1481 1482 1483
 *
 * 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)
{
1484 1485
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1486
    virDomainEventPtr event = NULL;
1487
    int ret = -1;
1488

1489
    lxcDriverLock(driver);
1490
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1491
    if (!vm) {
1492 1493 1494 1495
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1496
        goto cleanup;
1497 1498
    }

1499 1500 1501 1502 1503 1504
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

1505
    ret = lxcVmTerminate(driver, vm, 0);
1506 1507 1508
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
1509 1510 1511 1512
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1513 1514

cleanup:
1515 1516
    if (vm)
        virDomainObjUnlock(vm);
1517 1518 1519 1520 1521 1522 1523 1524
    if (event)
        lxcDomainEventQueue(driver, event);
    lxcDriverUnlock(driver);
    return ret;
}


static int
1525 1526 1527 1528
lxcDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
1529 1530 1531 1532 1533 1534 1535
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

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

1538
    return ret;
1539 1540
}

1541

1542
static int
1543 1544
lxcDomainEventDeregister(virConnectPtr conn,
                         virConnectDomainEventCallback callback)
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
{
    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;
}

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

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


1604 1605
static void lxcDomainEventDispatchFunc(virConnectPtr conn,
                                       virDomainEventPtr event,
1606
                                       virConnectDomainEventGenericCallback cb,
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 1651 1652 1653 1654 1655 1656 1657
                                       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);
}
1658 1659 1660

/**
 * lxcDomainDestroy:
1661
 * @dom: pointer to domain to destroy
1662 1663 1664 1665 1666 1667 1668
 *
 * 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)
{
1669 1670
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1671
    virDomainEventPtr event = NULL;
1672
    int ret = -1;
1673

1674
    lxcDriverLock(driver);
1675
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1676
    if (!vm) {
1677 1678 1679 1680
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1681
        goto cleanup;
1682 1683
    }

1684 1685 1686 1687 1688 1689
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

1690
    ret = lxcVmTerminate(driver, vm, SIGKILL);
1691 1692 1693
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1694 1695 1696 1697
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1698 1699

cleanup:
1700 1701
    if (vm)
        virDomainObjUnlock(vm);
1702 1703
    if (event)
        lxcDomainEventQueue(driver, event);
1704
    lxcDriverUnlock(driver);
1705
    return ret;
1706
}
1707

1708 1709 1710 1711 1712
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

1713
    if (virRun(argv, &ip_rc) < 0 ||
1714 1715
        !(WIFEXITED(ip_rc) && (WEXITSTATUS(ip_rc) != 255)))
        return 0;
1716

1717 1718
    if (lxcContainerAvailable(LXC_CONTAINER_FEATURE_NET) < 0)
        return 0;
1719

1720
    return 1;
1721 1722
}

1723

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

1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
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 */

1766 1767
    struct lxcAutostartData data = { driver, conn };

1768
    lxcDriverLock(driver);
1769
    virHashForEach(driver->domains.objs, lxcAutostartDomain, &data);
1770 1771 1772 1773 1774 1775
    lxcDriverUnlock(driver);

    if (conn)
        virConnectClose(conn);
}

1776 1777 1778 1779 1780 1781 1782
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;
1783
    lxcDomainObjPrivatePtr priv;
1784 1785

    virDomainObjLock(vm);
1786 1787

    priv = vm->privateData;
1788
    if ((priv->monitor = lxcMonitorClient(driver, vm)) < 0) {
1789 1790 1791 1792 1793
        goto cleanup;
    }

    /* Read pid from controller */
    if ((virFileReadPid(lxc_driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1794 1795
        close(priv->monitor);
        priv->monitor = -1;
1796 1797 1798
        goto cleanup;
    }

1799
    if ((config = virDomainConfigFile(driver->stateDir,
1800 1801 1802 1803
                                      vm->def->name)) == NULL)
        goto cleanup;

    /* Try and load the live config */
1804
    tmp = virDomainDefParseFile(driver->caps, config, 0);
1805 1806 1807 1808 1809 1810 1811 1812 1813
    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;
1814 1815 1816 1817 1818 1819

        if ((priv->monitorWatch = virEventAddHandle(
                 priv->monitor,
                 VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
                 lxcMonitorEvent,
                 vm, NULL)) < 0) {
1820
            lxcVmTerminate(driver, vm, 0);
1821 1822
            goto cleanup;
        }
1823 1824
    } else {
        vm->def->id = -1;
1825 1826
        close(priv->monitor);
        priv->monitor = -1;
1827 1828 1829 1830 1831 1832
    }

cleanup:
    virDomainObjUnlock(vm);
}

1833

1834
static int lxcStartup(int privileged)
D
Daniel Veillard 已提交
1835
{
1836
    char *ld;
1837
    int rc;
1838 1839 1840 1841 1842 1843

    /* 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");
1844 1845 1846 1847
    if (ld && strstr(ld, "vgpreload")) {
        VIR_INFO0("Running under valgrind, disabling driver");
        return 0;
    }
1848

1849
    /* Check that the user is root, silently disable if not */
1850
    if (!privileged) {
1851 1852 1853 1854 1855 1856 1857 1858
        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;
1859 1860
    }

1861
    if (VIR_ALLOC(lxc_driver) < 0) {
1862 1863
        return -1;
    }
1864 1865 1866 1867
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
1868
    lxcDriverLock(lxc_driver);
D
Daniel Veillard 已提交
1869

1870 1871 1872
    if (virDomainObjListInit(&lxc_driver->domains) < 0)
        goto cleanup;

1873
    if (VIR_ALLOC(lxc_driver->domainEventCallbacks) < 0)
1874 1875 1876 1877 1878 1879 1880 1881
        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 已提交
1882
    lxc_driver->log_libvirtd = 0; /* by default log to container logfile */
1883
    lxc_driver->have_netns = lxcCheckNetNsSupport();
D
Daniel Veillard 已提交
1884

1885 1886 1887 1888 1889 1890 1891
    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 已提交
1892
    /* Call function to load lxc driver configuration information */
1893 1894
    if (lxcLoadDriverConfig(lxc_driver) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
1895

1896 1897
    if ((lxc_driver->caps = lxcCapsInit()) == NULL)
        goto cleanup;
D
Daniel Veillard 已提交
1898

1899 1900 1901
    lxc_driver->caps->privateDataAllocFunc = lxcDomainObjPrivateAlloc;
    lxc_driver->caps->privateDataFreeFunc = lxcDomainObjPrivateFree;

1902
    if (virDomainLoadAllConfigs(lxc_driver->caps,
1903 1904
                                &lxc_driver->domains,
                                lxc_driver->configDir,
1905
                                lxc_driver->autostartDir,
1906
                                0, NULL, NULL) < 0)
1907
        goto cleanup;
1908

1909
    virHashForEach(lxc_driver->domains.objs, lxcReconnectVM, lxc_driver);
1910

1911
    lxcDriverUnlock(lxc_driver);
1912 1913 1914

    lxcAutostartConfigs(lxc_driver);

D
Daniel Veillard 已提交
1915 1916
    return 0;

1917 1918 1919 1920
cleanup:
    lxcDriverUnlock(lxc_driver);
    lxcShutdown();
    return -1;
D
Daniel Veillard 已提交
1921 1922
}

1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948
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);
1949
    virDomainLoadAllConfigs(lxc_driver->caps,
1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960
                            &lxc_driver->domains,
                            lxc_driver->configDir,
                            lxc_driver->autostartDir,
                            0, lxcNotifyLoadDomain, lxc_driver);
    lxcDriverUnlock(lxc_driver);

    lxcAutostartConfigs(lxc_driver);

    return 0;
}

1961
static int lxcShutdown(void)
D
Daniel Veillard 已提交
1962
{
1963
    if (lxc_driver == NULL)
1964
        return(-1);
1965

1966
    lxcDriverLock(lxc_driver);
1967
    virDomainObjListDeinit(&lxc_driver->domains);
1968

1969 1970 1971 1972 1973 1974
    virDomainEventCallbackListFree(lxc_driver->domainEventCallbacks);
    virDomainEventQueueFree(lxc_driver->domainEventQueue);

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

1975 1976 1977 1978 1979 1980
    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);
1981
    virMutexDestroy(&lxc_driver->lock);
1982
    VIR_FREE(lxc_driver);
1983 1984 1985

    return 0;
}
D
Daniel Veillard 已提交
1986

1987 1988 1989 1990 1991 1992 1993 1994 1995
/**
 * lxcActive:
 *
 * Checks if the LXC daemon is active, i.e. has an active domain
 *
 * Returns 1 if active, 0 otherwise
 */
static int
lxcActive(void) {
1996
    int active;
1997

1998 1999
    if (lxc_driver == NULL)
        return(0);
2000

2001
    lxcDriverLock(lxc_driver);
2002
    active = virDomainObjListNumOfDomains(&lxc_driver->domains, 1);
2003
    lxcDriverUnlock(lxc_driver);
2004

2005
    return active;
D
Daniel Veillard 已提交
2006 2007
}

2008
static int lxcVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *version)
D
Dan Smith 已提交
2009 2010 2011
{
    struct utsname ver;

2012
    uname(&ver);
D
Dan Smith 已提交
2013

2014 2015
    if (virParseVersionString(ver.release, version) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, _("Unknown release: %s"), ver.release);
D
Dan Smith 已提交
2016 2017 2018 2019 2020
        return -1;
    }

    return 0;
}
2021

2022 2023
static char *lxcGetSchedulerType(virDomainPtr domain ATTRIBUTE_UNUSED,
                                 int *nparams)
2024
{
2025 2026
    char *schedulerType = NULL;

2027 2028 2029
    if (nparams)
        *nparams = 1;

2030 2031 2032
    schedulerType = strdup("posix");

    if (schedulerType == NULL)
2033
        virReportOOMError();
2034 2035

    return schedulerType;
2036 2037
}

2038
static int lxcSetSchedulerParameters(virDomainPtr domain,
2039 2040 2041
                                     virSchedParameterPtr params,
                                     int nparams)
{
2042
    lxc_driver_t *driver = domain->conn->privateData;
2043
    int i;
2044 2045 2046
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;
2047

2048
    if (driver->cgroup == NULL)
2049 2050 2051 2052
        return -1;

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

2054
    if (vm == NULL) {
2055 2056 2057 2058
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(domain->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2059
        goto cleanup;
2060 2061
    }

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

    for (i = 0; i < nparams; i++) {
        virSchedParameterPtr param = &params[i];
2067 2068 2069 2070 2071 2072 2073

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

2074
        if (param->type != VIR_DOMAIN_SCHED_FIELD_ULLONG) {
2075
            lxcError(VIR_ERR_INVALID_ARG, "%s",
2076
                 _("Invalid type for cpu_shares tunable, expected a 'ullong'"));
2077 2078
            goto cleanup;
        }
2079

2080 2081 2082 2083
        int rc = virCgroupSetCpuShares(group, params[i].value.ul);
        if (rc != 0) {
            virReportSystemError(-rc, _("failed to set cpu_shares=%llu"),
                                 params[i].value.ul);
2084
            goto cleanup;
2085 2086
        }
    }
2087
    ret = 0;
2088

2089
cleanup:
2090
    lxcDriverUnlock(driver);
2091
    virCgroupFree(&group);
2092 2093
    if (vm)
        virDomainObjUnlock(vm);
2094
    return ret;
2095 2096
}

2097
static int lxcGetSchedulerParameters(virDomainPtr domain,
2098 2099 2100
                                     virSchedParameterPtr params,
                                     int *nparams)
{
2101
    lxc_driver_t *driver = domain->conn->privateData;
2102 2103
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
2104
    unsigned long long val;
2105
    int ret = -1;
2106

2107
    if (driver->cgroup == NULL)
2108
        return -1;
2109 2110

    if ((*nparams) != 1) {
2111
        lxcError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
2112
                 "%s", _("Invalid parameter count"));
2113
        return -1;
2114 2115
    }

2116 2117 2118
    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, domain->uuid);

2119
    if (vm == NULL) {
2120 2121 2122 2123
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(domain->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2124
        goto cleanup;
2125 2126
    }

2127
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2128
        goto cleanup;
2129

2130 2131
    if (virCgroupGetCpuShares(group, &val) != 0)
        goto cleanup;
2132
    params[0].value.ul = val;
C
Chris Lalancette 已提交
2133
    if (virStrcpyStatic(params[0].field, "cpu_shares") == NULL) {
2134
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
2135 2136 2137
                 "%s", _("Field cpu_shares too big for destination"));
        goto cleanup;
    }
2138 2139
    params[0].type = VIR_DOMAIN_SCHED_FIELD_ULLONG;

2140
    ret = 0;
2141

2142
cleanup:
2143
    lxcDriverUnlock(driver);
2144
    virCgroupFree(&group);
2145 2146
    if (vm)
        virDomainObjUnlock(vm);
2147
    return ret;
2148 2149
}

2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167
#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);
2168
        lxcError(VIR_ERR_NO_DOMAIN,
2169 2170 2171 2172 2173
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2174
        lxcError(VIR_ERR_OPERATION_INVALID,
2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188
                 "%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)
2189
        ret = linuxDomainInterfaceStats(path, stats);
2190
    else
2191
        lxcError(VIR_ERR_INVALID_ARG,
2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203
                 _("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)
2204
    lxcError(VIR_ERR_NO_SUPPORT, "%s", __FUNCTION__);
2205 2206 2207 2208
    return -1;
}
#endif

2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221
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);
2222
        lxcError(VIR_ERR_NO_DOMAIN,
2223
                 _("No domain with matching uuid '%s'"), uuidstr);
2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248
        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);
2249
        lxcError(VIR_ERR_NO_DOMAIN,
2250
                 _("No domain with matching uuid '%s'"), uuidstr);
2251 2252 2253 2254
        goto cleanup;
    }

    if (!vm->persistent) {
2255
        lxcError(VIR_ERR_INTERNAL_ERROR,
2256
                 "%s", _("Cannot set autostart for transient domain"));
2257 2258 2259 2260 2261
        goto cleanup;
    }

    autostart = (autostart != 0);

2262 2263 2264 2265
    if (vm->autostart == autostart) {
        ret = 0;
        goto cleanup;
    }
2266

2267
    configFile = virDomainConfigFile(driver->configDir,
2268 2269 2270
                                     vm->def->name);
    if (configFile == NULL)
        goto cleanup;
2271
    autostartLink = virDomainConfigFile(driver->autostartDir,
2272 2273 2274
                                        vm->def->name);
    if (autostartLink == NULL)
        goto cleanup;
2275

2276 2277
    if (autostart) {
        int err;
2278

2279
        if ((err = virFileMakePath(driver->autostartDir))) {
2280
            virReportSystemError(err,
2281 2282 2283
                                 _("Cannot create autostart directory %s"),
                                 driver->autostartDir);
            goto cleanup;
2284 2285
        }

2286
        if (symlink(configFile, autostartLink) < 0) {
2287
            virReportSystemError(errno,
2288 2289 2290 2291 2292 2293
                                 _("Failed to create symlink '%s to '%s'"),
                                 autostartLink, configFile);
            goto cleanup;
        }
    } else {
        if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2294
            virReportSystemError(errno,
2295 2296 2297 2298
                                 _("Failed to delete symlink '%s'"),
                                 autostartLink);
            goto cleanup;
        }
2299
    }
2300 2301

    vm->autostart = autostart;
2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
    ret = 0;

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

R
Ryota Ozaki 已提交
2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323
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 &&
2324
          virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
R
Ryota Ozaki 已提交
2325 2326
        return -1;

2327 2328
    /* From here on, we know that cgroup != NULL.  */

R
Ryota Ozaki 已提交
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 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
    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:
2401
    virCgroupFree(&cgroup);
R
Ryota Ozaki 已提交
2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418
    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);
2419
        lxcError(VIR_ERR_NO_DOMAIN,
2420
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2421 2422 2423
        goto cleanup;
    }

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

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

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

2443
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483
        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);
2484
        lxcError(VIR_ERR_NO_DOMAIN,
2485
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2486 2487 2488
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2489
    if (!virDomainObjIsActive(vm)) {
2490
        lxcError(VIR_ERR_OPERATION_INVALID,
2491
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2492 2493 2494 2495 2496
        goto cleanup;
    }

    if (vm->state == VIR_DOMAIN_PAUSED) {
        if (lxcUnfreezeContainer(driver, vm) < 0) {
2497
            lxcError(VIR_ERR_OPERATION_FAILED,
2498
                     "%s", _("Resume operation failed"));
R
Ryota Ozaki 已提交
2499 2500 2501 2502 2503 2504 2505 2506 2507
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_RUNNING;

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

2508
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521
        goto cleanup;
    ret = 0;

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


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

2627
static virStateDriver lxcStateDriver = {
2628
    .name = "LXC",
2629 2630 2631
    .initialize = lxcStartup,
    .cleanup = lxcShutdown,
    .active = lxcActive,
2632
    .reload = lxcReload,
2633 2634
};

D
Daniel Veillard 已提交
2635 2636 2637
int lxcRegister(void)
{
    virRegisterDriver(&lxcDriver);
2638
    virRegisterStateDriver(&lxcStateDriver);
D
Daniel Veillard 已提交
2639 2640
    return 0;
}