lxc_driver.c 108.7 KB
Newer Older
D
Daniel Veillard 已提交
1
/*
E
Eric Blake 已提交
2
 * Copyright (C) 2010-2012 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 30 31
#include <sched.h>
#include <sys/utsname.h>
#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
#include "virnetdevbridge.h"
47
#include "virnetdevveth.h"
48
#include "nodeinfo.h"
49
#include "uuid.h"
50
#include "stats_linux.h"
51
#include "hooks.h"
E
Eric Blake 已提交
52
#include "virfile.h"
53
#include "virpidfile.h"
54
#include "fdstream.h"
55
#include "domain_audit.h"
56
#include "domain_nwfilter.h"
57
#include "network/bridge_driver.h"
58
#include "virnetdev.h"
59
#include "virnodesuspend.h"
60
#include "virtime.h"
D
Daniel Veillard 已提交
61

62 63
#define VIR_FROM_THIS VIR_FROM_LXC

64 65
#define START_POSTFIX ": starting up\n"

66 67
#define LXC_NB_MEM_PARAM  3

68 69 70 71 72 73 74 75
typedef struct _lxcDomainObjPrivate lxcDomainObjPrivate;
typedef lxcDomainObjPrivate *lxcDomainObjPrivatePtr;
struct _lxcDomainObjPrivate {
    int monitor;
    int monitorWatch;
};


76
static int lxcStartup(int privileged);
77
static int lxcShutdown(void);
78
static lxc_driver_t *lxc_driver = NULL;
D
Daniel Veillard 已提交
79 80 81

/* Functions */

82 83
static void lxcDriverLock(lxc_driver_t *driver)
{
84
    virMutexLock(&driver->lock);
85 86 87
}
static void lxcDriverUnlock(lxc_driver_t *driver)
{
88
    virMutexUnlock(&driver->lock);
89 90
}

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
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);
}


112 113 114
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                virDomainEventPtr event);

115 116 117 118 119 120 121 122 123 124 125 126 127
static int lxcVmTerminate(lxc_driver_t *driver,
                          virDomainObjPtr vm,
                          virDomainShutoffReason reason);
static int lxcProcessAutoDestroyInit(lxc_driver_t *driver);
static void lxcProcessAutoDestroyRun(lxc_driver_t *driver,
                                     virConnectPtr conn);
static void lxcProcessAutoDestroyShutdown(lxc_driver_t *driver);
static int lxcProcessAutoDestroyAdd(lxc_driver_t *driver,
                                    virDomainObjPtr vm,
                                    virConnectPtr conn);
static int lxcProcessAutoDestroyRemove(lxc_driver_t *driver,
                                       virDomainObjPtr vm);

128

D
Daniel Veillard 已提交
129 130
static virDrvOpenStatus lxcOpen(virConnectPtr conn,
                                virConnectAuthPtr auth ATTRIBUTE_UNUSED,
E
Eric Blake 已提交
131
                                unsigned int flags)
D
Daniel Veillard 已提交
132
{
E
Eric Blake 已提交
133 134
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

D
Daniel Veillard 已提交
135
    /* Verify uri was specified */
136
    if (conn->uri == NULL) {
137 138
        if (lxc_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
139

140 141
        conn->uri = xmlParseURI("lxc:///");
        if (!conn->uri) {
142
            virReportOOMError();
143 144
            return VIR_DRV_OPEN_ERROR;
        }
145 146 147 148 149 150 151 152 153 154
    } 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 */
155 156
        if (conn->uri->path != NULL &&
            STRNEQ(conn->uri->path, "/")) {
157
            lxcError(VIR_ERR_INTERNAL_ERROR,
158
                     _("Unexpected LXC URI path '%s', try lxc:///"),
159 160 161
                     conn->uri->path);
            return VIR_DRV_OPEN_ERROR;
        }
D
Daniel Veillard 已提交
162

163 164
        /* URI was good, but driver isn't active */
        if (lxc_driver == NULL) {
165
            lxcError(VIR_ERR_INTERNAL_ERROR,
166
                     "%s", _("lxc state driver is not active"));
167 168 169
            return VIR_DRV_OPEN_ERROR;
        }
    }
170

171
    conn->privateData = lxc_driver;
D
Daniel Veillard 已提交
172 173 174 175 176 177

    return VIR_DRV_OPEN_SUCCESS;
}

static int lxcClose(virConnectPtr conn)
{
178 179 180
    lxc_driver_t *driver = conn->privateData;

    lxcDriverLock(driver);
181 182
    virDomainEventStateDeregisterConn(conn,
                                      driver->domainEventState);
183
    lxcProcessAutoDestroyRun(driver, conn);
184 185
    lxcDriverUnlock(driver);

186 187
    conn->privateData = NULL;
    return 0;
D
Daniel Veillard 已提交
188 189
}

190 191 192 193 194 195 196 197 198 199 200 201 202 203 204

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


205 206 207 208 209 210
static int lxcIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return 1;
}


211 212 213 214 215 216
static char *lxcGetCapabilities(virConnectPtr conn) {
    lxc_driver_t *driver = conn->privateData;
    char *xml;

    lxcDriverLock(driver);
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
217
        virReportOOMError();
218 219 220 221 222 223
    lxcDriverUnlock(driver);

    return xml;
}


D
Daniel Veillard 已提交
224 225 226
static virDomainPtr lxcDomainLookupByID(virConnectPtr conn,
                                        int id)
{
227 228 229
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
230

231
    lxcDriverLock(driver);
232
    vm = virDomainFindByID(&driver->domains, id);
233 234
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
235
    if (!vm) {
236 237
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching id %d"), id);
238
        goto cleanup;
D
Daniel Veillard 已提交
239 240 241
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
242
    if (dom)
D
Daniel Veillard 已提交
243 244
        dom->id = vm->def->id;

245
cleanup:
246 247
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
248 249 250 251 252 253
    return dom;
}

static virDomainPtr lxcDomainLookupByUUID(virConnectPtr conn,
                                          const unsigned char *uuid)
{
254 255 256
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
257

258
    lxcDriverLock(driver);
259
    vm = virDomainFindByUUID(&driver->domains, uuid);
260 261
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
262
    if (!vm) {
263 264 265 266
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
267
        goto cleanup;
D
Daniel Veillard 已提交
268 269 270
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
271
    if (dom)
D
Daniel Veillard 已提交
272 273
        dom->id = vm->def->id;

274
cleanup:
275 276
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
277 278 279 280 281 282
    return dom;
}

static virDomainPtr lxcDomainLookupByName(virConnectPtr conn,
                                          const char *name)
{
283 284 285
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
286

287
    lxcDriverLock(driver);
288
    vm = virDomainFindByName(&driver->domains, name);
289
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
290
    if (!vm) {
291 292
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching name '%s'"), name);
293
        goto cleanup;
D
Daniel Veillard 已提交
294 295 296
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
297
    if (dom)
D
Daniel Veillard 已提交
298 299
        dom->id = vm->def->id;

300
cleanup:
301 302
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
303 304 305
    return dom;
}

306 307 308 309 310 311 312 313 314 315 316

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) {
317 318 319 320
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
        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) {
342 343 344 345
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
346 347 348 349 350 351 352 353 354 355
        goto cleanup;
    }
    ret = obj->persistent;

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

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
static int lxcDomainIsUpdated(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) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }
    ret = obj->updated;

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

380
static int lxcListDomains(virConnectPtr conn, int *ids, int nids) {
381
    lxc_driver_t *driver = conn->privateData;
382
    int n;
383

384
    lxcDriverLock(driver);
385
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
386
    lxcDriverUnlock(driver);
387

388
    return n;
D
Daniel Veillard 已提交
389
}
390

391
static int lxcNumDomains(virConnectPtr conn) {
392
    lxc_driver_t *driver = conn->privateData;
393
    int n;
394

395
    lxcDriverLock(driver);
396
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
397
    lxcDriverUnlock(driver);
398

399
    return n;
D
Daniel Veillard 已提交
400 401 402
}

static int lxcListDefinedDomains(virConnectPtr conn,
403
                                 char **const names, int nnames) {
404
    lxc_driver_t *driver = conn->privateData;
405
    int n;
406

407
    lxcDriverLock(driver);
408
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
409
    lxcDriverUnlock(driver);
410

411
    return n;
D
Daniel Veillard 已提交
412 413 414
}


415
static int lxcNumDefinedDomains(virConnectPtr conn) {
416
    lxc_driver_t *driver = conn->privateData;
417
    int n;
418

419
    lxcDriverLock(driver);
420
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
421
    lxcDriverUnlock(driver);
422

423
    return n;
D
Daniel Veillard 已提交
424 425
}

426 427


D
Daniel Veillard 已提交
428 429
static virDomainPtr lxcDomainDefine(virConnectPtr conn, const char *xml)
{
430 431
    lxc_driver_t *driver = conn->privateData;
    virDomainDefPtr def = NULL;
432
    virDomainObjPtr vm = NULL;
433
    virDomainPtr dom = NULL;
434
    virDomainEventPtr event = NULL;
435
    int dupVM;
D
Daniel Veillard 已提交
436

437
    lxcDriverLock(driver);
438
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
439
                                        1 << VIR_DOMAIN_VIRT_LXC,
440
                                        VIR_DOMAIN_XML_INACTIVE)))
441
        goto cleanup;
D
Daniel Veillard 已提交
442

M
Matthias Bolte 已提交
443
    if ((dupVM = virDomainObjIsDuplicate(&driver->domains, def, 0)) < 0)
444
        goto cleanup;
445

446
    if ((def->nets != NULL) && !(driver->have_netns)) {
447
        lxcError(VIR_ERR_OPERATION_INVALID,
J
Jim Meyering 已提交
448
                 "%s", _("System lacks NETNS support"));
449
        goto cleanup;
450 451
    }

452
    if (!(vm = virDomainAssignDef(driver->caps,
453
                                  &driver->domains, def, false)))
454 455
        goto cleanup;
    def = NULL;
456
    vm->persistent = 1;
D
Daniel Veillard 已提交
457

458
    if (virDomainSaveConfig(driver->configDir,
459
                            vm->newDef ? vm->newDef : vm->def) < 0) {
460
        virDomainRemoveInactive(&driver->domains, vm);
461
        vm = NULL;
462
        goto cleanup;
D
Daniel Veillard 已提交
463 464
    }

465 466
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_DEFINED,
467
                                     !dupVM ?
468 469 470
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                     VIR_DOMAIN_EVENT_DEFINED_UPDATED);

D
Daniel Veillard 已提交
471
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
472
    if (dom)
D
Daniel Veillard 已提交
473 474
        dom->id = vm->def->id;

475 476
cleanup:
    virDomainDefFree(def);
477 478
    if (vm)
        virDomainObjUnlock(vm);
479 480
    if (event)
        lxcDomainEventQueue(driver, event);
481
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
482 483 484
    return dom;
}

485 486
static int lxcDomainUndefineFlags(virDomainPtr dom,
                                  unsigned int flags)
D
Daniel Veillard 已提交
487
{
488 489
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
490
    virDomainEventPtr event = NULL;
491
    int ret = -1;
D
Daniel Veillard 已提交
492

493 494
    virCheckFlags(0, -1);

495
    lxcDriverLock(driver);
496
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
D
Daniel Veillard 已提交
497
    if (!vm) {
498 499 500 501
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
502
        goto cleanup;
D
Daniel Veillard 已提交
503 504
    }

505
    if (!vm->persistent) {
506
        lxcError(VIR_ERR_OPERATION_INVALID,
507
                 "%s", _("Cannot undefine transient domain"));
508
        goto cleanup;
509
    }
D
Daniel Veillard 已提交
510

511
    if (virDomainDeleteConfig(driver->configDir,
512
                              driver->autostartDir,
513 514
                              vm) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
515

516 517 518 519
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

520 521 522 523 524 525 526
    if (virDomainObjIsActive(vm)) {
        vm->persistent = 0;
    } else {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }

527
    ret = 0;
D
Daniel Veillard 已提交
528

529
cleanup:
530 531
    if (vm)
        virDomainObjUnlock(vm);
532 533
    if (event)
        lxcDomainEventQueue(driver, event);
534
    lxcDriverUnlock(driver);
535
    return ret;
D
Daniel Veillard 已提交
536 537
}

538 539 540 541 542
static int lxcDomainUndefine(virDomainPtr dom)
{
    return lxcDomainUndefineFlags(dom, 0);
}

D
Daniel Veillard 已提交
543 544 545
static int lxcDomainGetInfo(virDomainPtr dom,
                            virDomainInfoPtr info)
{
546 547
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
548
    virCgroupPtr cgroup = NULL;
549
    int ret = -1, rc;
D
Daniel Veillard 已提交
550

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

D
Daniel Veillard 已提交
554
    if (!vm) {
555 556 557 558
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
559
        goto cleanup;
D
Daniel Veillard 已提交
560 561
    }

J
Jiri Denemark 已提交
562
    info->state = virDomainObjGetState(vm, NULL);
D
Daniel Veillard 已提交
563

D
Daniel P. Berrange 已提交
564
    if (!virDomainObjIsActive(vm) || driver->cgroup == NULL) {
D
Daniel Veillard 已提交
565
        info->cpuTime = 0;
566
        info->memory = vm->def->mem.cur_balloon;
D
Daniel Veillard 已提交
567
    } else {
568
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
569
            lxcError(VIR_ERR_INTERNAL_ERROR,
570
                     _("Unable to get cgroup for %s"), vm->def->name);
571 572 573 574
            goto cleanup;
        }

        if (virCgroupGetCpuacctUsage(cgroup, &(info->cpuTime)) < 0) {
575
            lxcError(VIR_ERR_OPERATION_FAILED,
576
                     "%s", _("Cannot read cputime for domain"));
R
Ryota Ozaki 已提交
577 578
            goto cleanup;
        }
579
        if ((rc = virCgroupGetMemoryUsage(cgroup, &(info->memory))) < 0) {
580
            lxcError(VIR_ERR_OPERATION_FAILED,
581
                     "%s", _("Cannot read memory usage for domain"));
582 583 584 585 586 587
            if (rc == -ENOENT) {
                /* Don't fail if we can't read memory usage due to a lack of
                 * kernel support */
                info->memory = 0;
            } else
                goto cleanup;
588
        }
D
Daniel Veillard 已提交
589 590
    }

591
    info->maxMem = vm->def->mem.max_balloon;
D
Daniel Veillard 已提交
592
    info->nrVirtCpu = 1;
593
    ret = 0;
D
Daniel Veillard 已提交
594

595
cleanup:
596
    lxcDriverUnlock(driver);
597 598
    if (cgroup)
        virCgroupFree(&cgroup);
599 600
    if (vm)
        virDomainObjUnlock(vm);
601
    return ret;
D
Daniel Veillard 已提交
602 603
}

604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
static int
lxcDomainGetState(virDomainPtr dom,
                  int *state,
                  int *reason,
                  unsigned int flags)
{
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

    virCheckFlags(0, -1);

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

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

J
Jiri Denemark 已提交
628
    *state = virDomainObjGetState(vm, reason);
629 630 631 632 633 634 635 636
    ret = 0;

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

637
static char *lxcGetOSType(virDomainPtr dom)
D
Daniel Veillard 已提交
638
{
639 640 641
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
642

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

647
    if (!vm) {
648 649 650 651
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
652
        goto cleanup;
653 654
    }

655 656
    ret = strdup(vm->def->os.type);

657
    if (ret == NULL)
658
        virReportOOMError();
659

660
cleanup:
661 662
    if (vm)
        virDomainObjUnlock(vm);
663
    return ret;
D
Daniel Veillard 已提交
664 665
}

R
Ryota Ozaki 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678
/* 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);
679
        lxcError(VIR_ERR_NO_DOMAIN,
680
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
681 682 683
        goto cleanup;
    }

684
    ret = vm->def->mem.max_balloon;
R
Ryota Ozaki 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703

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);
704
        lxcError(VIR_ERR_NO_DOMAIN,
705
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
706 707 708
        goto cleanup;
    }

709
    if (newmax < vm->def->mem.cur_balloon) {
710
        lxcError(VIR_ERR_INVALID_ARG,
711
                         "%s", _("Cannot set max memory lower than current memory"));
R
Ryota Ozaki 已提交
712 713 714
        goto cleanup;
    }

715
    vm->def->mem.max_balloon = newmax;
R
Ryota Ozaki 已提交
716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
    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);
736
        lxcError(VIR_ERR_NO_DOMAIN,
737
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
738 739 740
        goto cleanup;
    }

741
    if (newmem > vm->def->mem.max_balloon) {
742
        lxcError(VIR_ERR_INVALID_ARG,
743
                 "%s", _("Cannot set memory higher than max memory"));
R
Ryota Ozaki 已提交
744 745 746
        goto cleanup;
    }

747 748 749 750 751
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }
752

753
    if (driver->cgroup == NULL) {
754
        lxcError(VIR_ERR_OPERATION_INVALID,
755 756 757
                 "%s", _("cgroups must be configured on the host"));
        goto cleanup;
    }
R
Ryota Ozaki 已提交
758

759 760 761 762
    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 已提交
763
    }
764 765 766 767 768 769 770

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

R
Ryota Ozaki 已提交
771 772 773 774 775 776 777 778 779 780
    ret = 0;

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

781
static int lxcDomainSetMemoryParameters(virDomainPtr dom,
782
                                        virTypedParameterPtr params,
783
                                        int nparams,
E
Eric Blake 已提交
784
                                        unsigned int flags)
785 786 787 788 789 790 791
{
    lxc_driver_t *driver = dom->conn->privateData;
    int i;
    virCgroupPtr cgroup = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;

E
Eric Blake 已提交
792 793
    virCheckFlags(0, -1);

794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);

    if (vm == NULL) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("cannot find cgroup for domain %s"), vm->def->name);
        goto cleanup;
    }

    ret = 0;
    for (i = 0; i < nparams; i++) {
813
        virTypedParameterPtr param = &params[i];
814 815 816

        if (STREQ(param->field, VIR_DOMAIN_MEMORY_HARD_LIMIT)) {
            int rc;
817
            if (param->type != VIR_TYPED_PARAM_ULLONG) {
818 819 820 821 822 823 824 825 826 827 828 829 830 831
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for memory hard_limit tunable, expected a 'ullong'"));
                ret = -1;
                continue;
            }

            rc = virCgroupSetMemoryHardLimit(cgroup, params[i].value.ul);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to set memory hard_limit tunable"));
                ret = -1;
            }
        } else if (STREQ(param->field, VIR_DOMAIN_MEMORY_SOFT_LIMIT)) {
            int rc;
832
            if (param->type != VIR_TYPED_PARAM_ULLONG) {
833 834 835 836 837 838 839 840 841 842 843 844
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for memory soft_limit tunable, expected a 'ullong'"));
                ret = -1;
                continue;
            }

            rc = virCgroupSetMemorySoftLimit(cgroup, params[i].value.ul);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to set memory soft_limit tunable"));
                ret = -1;
            }
845
        } else if (STREQ(param->field, VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT)) {
846
            int rc;
847
            if (param->type != VIR_TYPED_PARAM_ULLONG) {
848 849 850 851 852 853
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for swap_hard_limit tunable, expected a 'ullong'"));
                ret = -1;
                continue;
            }

854
            rc = virCgroupSetMemSwapHardLimit(cgroup, params[i].value.ul);
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to set swap_hard_limit tunable"));
                ret = -1;
            }
        } else if (STREQ(param->field, VIR_DOMAIN_MEMORY_MIN_GUARANTEE)) {
            lxcError(VIR_ERR_INVALID_ARG,
                     _("Memory tunable `%s' not implemented"), param->field);
            ret = -1;
        } else {
            lxcError(VIR_ERR_INVALID_ARG,
                     _("Parameter `%s' not supported"), param->field);
            ret = -1;
        }
    }

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

880
static int lxcDomainGetMemoryParameters(virDomainPtr dom,
881
                                        virTypedParameterPtr params,
882
                                        int *nparams,
E
Eric Blake 已提交
883
                                        unsigned int flags)
884 885 886 887 888
{
    lxc_driver_t *driver = dom->conn->privateData;
    int i;
    virCgroupPtr cgroup = NULL;
    virDomainObjPtr vm = NULL;
889
    unsigned long long val;
890 891 892
    int ret = -1;
    int rc;

E
Eric Blake 已提交
893 894
    virCheckFlags(0, -1);

895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);

    if (vm == NULL) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if ((*nparams) == 0) {
        /* Current number of memory parameters supported by cgroups */
        *nparams = LXC_NB_MEM_PARAM;
        ret = 0;
        goto cleanup;
    }

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

919
    for (i = 0; i < LXC_NB_MEM_PARAM && i < *nparams; i++) {
920
        virTypedParameterPtr param = &params[i];
921 922
        val = 0;
        param->value.ul = 0;
923
        param->type = VIR_TYPED_PARAM_ULLONG;
924 925 926 927 928 929 930

        switch(i) {
        case 0: /* fill memory hard limit here */
            rc = virCgroupGetMemoryHardLimit(cgroup, &val);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to get memory hard limit"));
931
                goto cleanup;
932 933 934 935
            }
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_HARD_LIMIT) == NULL) {
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field memory hard limit too long for destination"));
936
                goto cleanup;
937 938 939 940 941 942 943 944 945
            }
            param->value.ul = val;
            break;

        case 1: /* fill memory soft limit here */
            rc = virCgroupGetMemorySoftLimit(cgroup, &val);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to get memory soft limit"));
946
                goto cleanup;
947 948 949 950
            }
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_SOFT_LIMIT) == NULL) {
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field memory soft limit too long for destination"));
951
                goto cleanup;
952 953 954 955 956
            }
            param->value.ul = val;
            break;

        case 2: /* fill swap hard limit here */
957
            rc = virCgroupGetMemSwapHardLimit(cgroup, &val);
958 959 960
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to get swap hard limit"));
961
                goto cleanup;
962
            }
963
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT) == NULL) {
964 965
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field swap hard limit too long for destination"));
966
                goto cleanup;
967 968 969 970 971 972 973 974 975 976
            }
            param->value.ul = val;
            break;

        default:
            break;
            /* should not hit here */
        }
    }

977 978
    if (*nparams > LXC_NB_MEM_PARAM)
        *nparams = LXC_NB_MEM_PARAM;
979 980
    ret = 0;

981 982 983 984 985 986 987 988 989
cleanup:
    if (cgroup)
        virCgroupFree(&cgroup);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}

990
static char *lxcDomainGetXMLDesc(virDomainPtr dom,
991
                                 unsigned int flags)
D
Daniel Veillard 已提交
992
{
993 994 995
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
D
Daniel Veillard 已提交
996

997 998
    /* Flags checked by virDomainDefFormat */

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

D
Daniel Veillard 已提交
1003
    if (!vm) {
1004 1005 1006 1007
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1008
        goto cleanup;
D
Daniel Veillard 已提交
1009 1010
    }

1011
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) &&
1012 1013 1014 1015
                             vm->newDef ? vm->newDef : vm->def,
                             flags);

cleanup:
1016 1017
    if (vm)
        virDomainObjUnlock(vm);
1018
    return ret;
D
Daniel Veillard 已提交
1019 1020
}

1021

1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
static int lxcProcessAutoDestroyInit(lxc_driver_t *driver)
{
    if (!(driver->autodestroy = virHashCreate(5, NULL)))
        return -1;

    return 0;
}

struct lxcProcessAutoDestroyData {
    lxc_driver_t *driver;
    virConnectPtr conn;
};

static void lxcProcessAutoDestroyDom(void *payload,
                                     const void *name,
                                     void *opaque)
{
    struct lxcProcessAutoDestroyData *data = opaque;
    virConnectPtr conn = payload;
    const char *uuidstr = name;
    unsigned char uuid[VIR_UUID_BUFLEN];
    virDomainObjPtr dom;
    virDomainEventPtr event = NULL;

    VIR_DEBUG("conn=%p uuidstr=%s thisconn=%p", conn, uuidstr, data->conn);

    if (data->conn != conn)
        return;

    if (virUUIDParse(uuidstr, uuid) < 0) {
        VIR_WARN("Failed to parse %s", uuidstr);
        return;
    }

    if (!(dom = virDomainFindByUUID(&data->driver->domains,
                                    uuid))) {
        VIR_DEBUG("No domain object to kill");
        return;
    }

    VIR_DEBUG("Killing domain");
    lxcVmTerminate(data->driver, dom, VIR_DOMAIN_SHUTOFF_DESTROYED);
    virDomainAuditStop(dom, "destroyed");
    event = virDomainEventNewFromObj(dom,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);

    if (dom && !dom->persistent)
        virDomainRemoveInactive(&data->driver->domains, dom);

    if (dom)
        virDomainObjUnlock(dom);
    if (event)
        lxcDomainEventQueue(data->driver, event);
    virHashRemoveEntry(data->driver->autodestroy, uuidstr);
}

/*
 * Precondition: driver is locked
 */
static void lxcProcessAutoDestroyRun(lxc_driver_t *driver, virConnectPtr conn)
{
    struct lxcProcessAutoDestroyData data = {
        driver, conn
    };
    VIR_DEBUG("conn=%p", conn);
    virHashForEach(driver->autodestroy, lxcProcessAutoDestroyDom, &data);
}

static void lxcProcessAutoDestroyShutdown(lxc_driver_t *driver)
{
    virHashFree(driver->autodestroy);
}

static int lxcProcessAutoDestroyAdd(lxc_driver_t *driver,
                                    virDomainObjPtr vm,
                                    virConnectPtr conn)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];
    virUUIDFormat(vm->def->uuid, uuidstr);
    VIR_DEBUG("vm=%s uuid=%s conn=%p", vm->def->name, uuidstr, conn);
    if (virHashAddEntry(driver->autodestroy, uuidstr, conn) < 0)
        return -1;
    return 0;
}

static int lxcProcessAutoDestroyRemove(lxc_driver_t *driver,
                                       virDomainObjPtr vm)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];
    virUUIDFormat(vm->def->uuid, uuidstr);
    VIR_DEBUG("vm=%s uuid=%s", vm->def->name, uuidstr);
    if (virHashRemoveEntry(driver->autodestroy, uuidstr) < 0)
        return -1;
    return 0;
}


1120 1121
/**
 * lxcVmCleanup:
1122 1123
 * @driver: pointer to driver structure
 * @vm: pointer to VM to clean up
J
Jiri Denemark 已提交
1124
 * @reason: reason for switching the VM to shutoff state
1125
 *
1126
 * Cleanout resources associated with the now dead VM
1127 1128
 *
 */
1129
static void lxcVmCleanup(lxc_driver_t *driver,
J
Jiri Denemark 已提交
1130 1131
                         virDomainObjPtr vm,
                         virDomainShutoffReason reason)
1132
{
D
Dan Smith 已提交
1133
    virCgroupPtr cgroup;
1134
    int i;
1135
    lxcDomainObjPrivatePtr priv = vm->privateData;
1136

1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
    /* 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);
    }

1147 1148 1149
    /* Stop autodestroy in case guest is restarted */
    lxcProcessAutoDestroyRemove(driver, vm);

1150
    virEventRemoveHandle(priv->monitorWatch);
1151
    VIR_FORCE_CLOSE(priv->monitor);
1152

1153
    virPidFileDelete(driver->stateDir, vm->def->name);
1154
    virDomainDeleteConfig(driver->stateDir, NULL, vm);
1155

J
Jiri Denemark 已提交
1156
    virDomainObjSetState(vm, VIR_DOMAIN_SHUTOFF, reason);
1157 1158
    vm->pid = -1;
    vm->def->id = -1;
1159 1160
    priv->monitor = -1;
    priv->monitorWatch = -1;
1161

1162
    for (i = 0 ; i < vm->def->nnets ; i++) {
1163 1164
        ignore_value(virNetDevSetOnline(vm->def->nets[i]->ifname, false));
        ignore_value(virNetDevVethDelete(vm->def->nets[i]->ifname));
1165 1166

        networkReleaseActualDevice(vm->def->nets[i]);
1167 1168
    }

1169 1170
    virDomainConfVMNWFilterTeardown(vm);

1171 1172
    if (driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0) {
D
Dan Smith 已提交
1173 1174 1175 1176
        virCgroupRemove(cgroup);
        virCgroupFree(&cgroup);
    }

1177 1178 1179 1180 1181 1182
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }
1183 1184
}

1185 1186

static int lxcSetupInterfaceBridged(virConnectPtr conn,
1187
                                    virDomainDefPtr vm,
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
                                    virDomainNetDefPtr net,
                                    const char *brname,
                                    unsigned int *nveths,
                                    char ***veths)
{
    int ret = -1;
    char *parentVeth;
    char *containerVeth = NULL;

    VIR_DEBUG("calling vethCreate()");
    parentVeth = net->ifname;
    if (virNetDevVethCreate(&parentVeth, &containerVeth) < 0)
        goto cleanup;
    VIR_DEBUG("parentVeth: %s, containerVeth: %s", parentVeth, containerVeth);

    if (net->ifname == NULL)
        net->ifname = parentVeth;

    if (VIR_REALLOC_N(*veths, (*nveths)+1) < 0) {
        virReportOOMError();
        VIR_FREE(containerVeth);
        goto cleanup;
    }
    (*veths)[(*nveths)] = containerVeth;
    (*nveths)++;

    if (virNetDevSetMAC(containerVeth, net->mac) < 0)
        goto cleanup;

    if (virNetDevBridgeAddPort(brname, parentVeth) < 0)
        goto cleanup;

    if (virNetDevSetOnline(parentVeth, true) < 0)
        goto cleanup;

    if (virNetDevBandwidthSet(net->ifname,
                              virDomainNetGetActualBandwidth(net)) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("cannot set bandwidth limits on %s"),
                 net->ifname);
        goto cleanup;
    }

    if (net->filter &&
1232
        virDomainConfNWFilterInstantiate(conn, vm->uuid, net) < 0)
1233 1234 1235 1236 1237 1238 1239 1240
        goto cleanup;

    ret = 0;

cleanup:
    return ret;
}

1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307

static int lxcSetupInterfaceDirect(virConnectPtr conn,
                                   virDomainDefPtr def,
                                   virDomainNetDefPtr net,
                                   unsigned int *nveths,
                                   char ***veths)
{
    int ret = 0;
    char *res_ifname = NULL;
    lxc_driver_t *driver = conn->privateData;
    virNetDevBandwidthPtr bw;
    virNetDevVPortProfilePtr prof;

    /* XXX how todo bandwidth controls ?
     * Since the 'net-ifname' is about to be moved to a different
     * namespace & renamed, there will be no host side visible
     * interface for the container to attach rules to
     */
    bw = virDomainNetGetActualBandwidth(net);
    if (bw) {
        lxcError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                 _("Unable to set network bandwidth on direct interfaces"));
        return -1;
    }

    /* XXX how todo port profiles ?
     * Although we can do the association during container
     * startup, at shutdown we are unable to disassociate
     * because the macvlan device was moved to the container
     * and automagically dies when the container dies. So
     * we have no dev to perform disassociation with.
     */
    prof = virDomainNetGetActualDirectVirtPortProfile(net);
    if (prof) {
        lxcError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                 _("Unable to set port profile on direct interfaces"));
        return -1;
    }

    if (VIR_REALLOC_N(*veths, (*nveths)+1) < 0) {
        virReportOOMError();
        return -1;
    }
    (*veths)[(*nveths)] = NULL;

    if (virNetDevMacVLanCreateWithVPortProfile(
            net->ifname, net->mac,
            virDomainNetGetActualDirectDev(net),
            virDomainNetGetActualDirectMode(net),
            false, false, def->uuid,
            virDomainNetGetActualDirectVirtPortProfile(net),
            &res_ifname,
            VIR_NETDEV_VPORT_PROFILE_OP_CREATE,
            driver->stateDir,
            virDomainNetGetActualBandwidth(net)) < 0)
        goto cleanup;

    (*veths)[(*nveths)] = res_ifname;
    (*nveths)++;

    ret = 0;

cleanup:
    return ret;
}


1308 1309
/**
 * lxcSetupInterfaces:
1310
 * @conn: pointer to connection
1311
 * @def: pointer to virtual machine structure
1312 1313
 * @nveths: number of interfaces
 * @veths: interface names
1314 1315 1316 1317 1318 1319 1320 1321
 *
 * 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,
1322
                              virDomainDefPtr def,
1323 1324
                              unsigned int *nveths,
                              char ***veths)
1325
{
1326 1327
    int ret = -1;
    size_t i;
1328

1329
    for (i = 0 ; i < def->nnets ; i++) {
1330 1331 1332 1333 1334
        /* If appropriate, grab a physical device from the configured
         * network's pool of devices, or resolve bridge device name
         * to the one defined in the network definition.
         */
        if (networkAllocateActualDevice(def->nets[i]) < 0)
1335
            goto cleanup;
1336 1337

        switch (virDomainNetGetActualType(def->nets[i])) {
1338
        case VIR_DOMAIN_NET_TYPE_NETWORK: {
1339
            virNetworkPtr network;
1340
            char *brname = NULL;
1341

1342 1343 1344
            if (!(network = virNetworkLookupByName(conn,
                                                   def->nets[i]->data.network.name)))
                goto cleanup;
1345

1346
            brname = virNetworkGetBridgeName(network);
1347
            virNetworkFree(network);
1348 1349 1350 1351
            if (!brname)
                goto cleanup;

            if (lxcSetupInterfaceBridged(conn,
1352
                                         def,
1353 1354 1355 1356 1357 1358 1359 1360
                                         def->nets[i],
                                         brname,
                                         nveths,
                                         veths) < 0) {
                VIR_FREE(brname);
                goto cleanup;
            }
            VIR_FREE(brname);
1361 1362
            break;
        }
1363 1364 1365 1366 1367 1368 1369 1370
        case VIR_DOMAIN_NET_TYPE_BRIDGE: {
            const char *brname = virDomainNetGetActualBridgeName(def->nets[i]);
            if (!brname) {
                lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                         _("No bridge name specified"));
                goto cleanup;
            }
            if (lxcSetupInterfaceBridged(conn,
1371
                                         def,
1372 1373 1374 1375 1376 1377
                                         def->nets[i],
                                         brname,
                                         nveths,
                                         veths) < 0)
                goto cleanup;
        }   break;
S
Stefan Berger 已提交
1378

1379 1380 1381 1382 1383 1384 1385 1386 1387
        case VIR_DOMAIN_NET_TYPE_DIRECT:
            if (lxcSetupInterfaceDirect(conn,
                                        def,
                                        def->nets[i],
                                        nveths,
                                        veths) < 0)
                goto cleanup;
            break;

S
Stefan Berger 已提交
1388 1389 1390 1391 1392 1393 1394
        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_LAST:
1395
            lxcError(VIR_ERR_INTERNAL_ERROR,
1396 1397 1398 1399 1400
                     _("Unsupported network type %s"),
                     virDomainNetTypeToString(
                         virDomainNetGetActualType(def->nets[i])
                         ));
            goto cleanup;
1401
        }
1402 1403
    }

1404
    ret= 0;
1405

1406 1407
cleanup:
    if (ret != 0) {
1408 1409 1410
        for (i = 0 ; i < def->nnets ; i++)
            networkReleaseActualDevice(def->nets[i]);
    }
1411
    return ret;
1412 1413
}

1414

1415
static int lxcMonitorClient(lxc_driver_t * driver,
1416
                            virDomainObjPtr vm)
1417
{
1418 1419 1420
    char *sockpath = NULL;
    int fd;
    struct sockaddr_un addr;
1421

1422 1423
    if (virAsprintf(&sockpath, "%s/%s.sock",
                    driver->stateDir, vm->def->name) < 0) {
1424
        virReportOOMError();
1425 1426 1427 1428
        return -1;
    }

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
1429
        virReportSystemError(errno, "%s",
1430
                             _("Failed to create client socket"));
1431
        goto error;
1432 1433
    }

1434 1435
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
1436
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
1437
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
1438 1439 1440
                 _("Socket path %s too big for destination"), sockpath);
        goto error;
    }
1441 1442

    if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
1443
        virReportSystemError(errno, "%s",
1444
                             _("Failed to connect to client socket"));
1445
        goto error;
1446 1447
    }

1448 1449
    VIR_FREE(sockpath);
    return fd;
1450

1451 1452
error:
    VIR_FREE(sockpath);
1453
    VIR_FORCE_CLOSE(fd);
1454 1455 1456 1457
    return -1;
}


1458
static int lxcVmTerminate(lxc_driver_t *driver,
J
Jiri Denemark 已提交
1459 1460
                          virDomainObjPtr vm,
                          virDomainShutoffReason reason)
1461
{
1462 1463
    virCgroupPtr group = NULL;
    int rc;
1464

1465
    if (vm->pid <= 0) {
1466
        lxcError(VIR_ERR_INTERNAL_ERROR,
1467
                 _("Invalid PID %d for container"), vm->pid);
1468 1469 1470
        return -1;
    }

1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) == 0) {
        rc = virCgroupKillPainfully(group);
        if (rc < 0) {
            virReportSystemError(-rc, "%s",
                                 _("Failed to kill container PIDs"));
            rc = -1;
            goto cleanup;
        }
        if (rc == 1) {
            lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                     _("Some container PIDs refused to die"));
            rc = -1;
            goto cleanup;
        }
    } else {
        /* If cgroup doesn't exist, the VM pids must have already
         * died and so we're just cleaning up stale state
         */
1489
    }
1490

J
Jiri Denemark 已提交
1491
    lxcVmCleanup(driver, vm, reason);
1492

1493
    rc = 0;
1494

1495 1496 1497
cleanup:
    virCgroupFree(&group);
    return rc;
1498
}
1499

1500 1501
static void lxcMonitorEvent(int watch,
                            int fd,
1502 1503 1504
                            int events ATTRIBUTE_UNUSED,
                            void *data)
{
1505 1506
    lxc_driver_t *driver = lxc_driver;
    virDomainObjPtr vm = data;
1507
    virDomainEventPtr event = NULL;
1508
    lxcDomainObjPrivatePtr priv;
1509

1510
    lxcDriverLock(driver);
1511 1512
    virDomainObjLock(vm);
    lxcDriverUnlock(driver);
1513

1514 1515 1516
    priv = vm->privateData;

    if (priv->monitor != fd || priv->monitorWatch != watch) {
1517
        virEventRemoveHandle(watch);
1518
        goto cleanup;
1519 1520
    }

J
Jiri Denemark 已提交
1521
    if (lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_SHUTDOWN) < 0) {
1522
        virEventRemoveHandle(watch);
1523 1524 1525 1526
    } else {
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
1527
        virDomainAuditStop(vm, "shutdown");
1528
    }
1529 1530 1531 1532
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1533 1534

cleanup:
1535 1536
    if (vm)
        virDomainObjUnlock(vm);
1537 1538
    if (event) {
        lxcDriverLock(driver);
1539
        lxcDomainEventQueue(driver, event);
1540 1541
        lxcDriverUnlock(driver);
    }
1542 1543 1544
}


1545 1546 1547 1548 1549
static virCommandPtr
lxcBuildControllerCmd(lxc_driver_t *driver,
                      virDomainObjPtr vm,
                      int nveths,
                      char **veths,
1550 1551
                      int *ttyFDs,
                      size_t nttyFDs,
1552
                      int handshakefd)
1553
{
1554
    size_t i;
A
Amy Griffis 已提交
1555 1556
    char *filterstr;
    char *outputstr;
1557 1558 1559 1560 1561 1562 1563 1564 1565
    virCommandPtr cmd;

    cmd = virCommandNew(vm->def->emulator);

    /* The controller may call ip command, so we have to retain PATH. */
    virCommandAddEnvPass(cmd, "PATH");

    virCommandAddEnvFormat(cmd, "LIBVIRT_DEBUG=%d",
                           virLogGetDefaultPriority());
A
Amy Griffis 已提交
1566 1567 1568

    if (virLogGetNbFilters() > 0) {
        filterstr = virLogGetFilters();
1569 1570 1571 1572 1573 1574
        if (!filterstr) {
            virReportOOMError();
            goto cleanup;
        }

        virCommandAddEnvPair(cmd, "LIBVIRT_LOG_FILTERS", filterstr);
A
Amy Griffis 已提交
1575 1576 1577
        VIR_FREE(filterstr);
    }

A
Amy Griffis 已提交
1578 1579 1580
    if (driver->log_libvirtd) {
        if (virLogGetNbOutputs() > 0) {
            outputstr = virLogGetOutputs();
1581 1582 1583 1584 1585 1586
            if (!outputstr) {
                virReportOOMError();
                goto cleanup;
            }

            virCommandAddEnvPair(cmd, "LIBVIRT_LOG_OUTPUTS", outputstr);
A
Amy Griffis 已提交
1587 1588 1589
            VIR_FREE(outputstr);
        }
    } else {
1590 1591 1592
        virCommandAddEnvFormat(cmd,
                               "LIBVIRT_LOG_OUTPUTS=%d:stderr",
                               virLogGetDefaultPriority());
A
Amy Griffis 已提交
1593 1594
    }

1595 1596 1597 1598 1599 1600
    virCommandAddArgList(cmd, "--name", vm->def->name, NULL);
    for (i = 0 ; i < nttyFDs ; i++) {
        virCommandAddArg(cmd, "--console");
        virCommandAddArgFormat(cmd, "%d", ttyFDs[i]);
        virCommandPreserveFD(cmd, ttyFDs[i]);
    }
1601 1602
    virCommandAddArg(cmd, "--handshake");
    virCommandAddArgFormat(cmd, "%d", handshakefd);
1603
    virCommandAddArg(cmd, "--background");
1604 1605

    for (i = 0 ; i < nveths ; i++) {
1606
        virCommandAddArgList(cmd, "--veth", veths[i], NULL);
1607 1608
    }

1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
    /* 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;
    }

1625
    virCommandPreserveFD(cmd, handshakefd);
1626

1627
    return cmd;
A
Amy Griffis 已提交
1628
cleanup:
1629
    virCommandFree(cmd);
1630
    return NULL;
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 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
static int
lxcReadLogOutput(virDomainObjPtr vm,
                 char *logfile,
                 off_t pos,
                 char *buf,
                 size_t buflen)
{
    int fd;
    off_t off;
    int whence;
    int got = 0, ret = -1;
    int retries = 10;

    if ((fd = open(logfile, O_RDONLY)) < 0) {
        virReportSystemError(errno, _("failed to open logfile %s"),
                             logfile);
        goto cleanup;
    }

    if (pos < 0) {
        off = 0;
        whence = SEEK_END;
    } else {
        off = pos;
        whence = SEEK_SET;
    }

    if (lseek(fd, off, whence) < 0) {
        if (whence == SEEK_END)
            virReportSystemError(errno,
                                 _("unable to seek to end of log for %s"),
                                 logfile);
        else
            virReportSystemError(errno,
                                 _("unable to seek to %lld from start for %s"),
                                 (long long)off, logfile);
        goto cleanup;
    }

    while (retries) {
        ssize_t bytes;
        int isdead = 0;

        if (kill(vm->pid, 0) == -1 && errno == ESRCH)
            isdead = 1;

        /* Any failures should be detected before we read the log, so we
         * always have something useful to report on failure. */
        bytes = saferead(fd, buf+got, buflen-got-1);
        if (bytes < 0) {
            virReportSystemError(errno, "%s",
                                 _("Failure while reading guest log output"));
            goto cleanup;
        }

        got += bytes;
        buf[got] = '\0';

        if ((got == buflen-1) || isdead) {
            break;
        }

        usleep(100*1000);
        retries--;
    }


    ret = got;
cleanup:
    VIR_FORCE_CLOSE(fd);
    return ret;
}
1705

1706 1707 1708 1709 1710
/**
 * lxcVmStart:
 * @conn: pointer to connection
 * @driver: pointer to driver structure
 * @vm: pointer to virtual machine structure
1711
 * @autoDestroy: mark the domain for auto destruction
J
Jiri Denemark 已提交
1712
 * @reason: reason for switching vm to running state
1713 1714 1715 1716 1717 1718 1719
 *
 * Starts a vm
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcVmStart(virConnectPtr conn,
                      lxc_driver_t * driver,
J
Jiri Denemark 已提交
1720
                      virDomainObjPtr vm,
1721
                      bool autoDestroy,
J
Jiri Denemark 已提交
1722
                      virDomainRunningReason reason)
1723
{
1724
    int rc = -1, r;
1725 1726 1727
    size_t nttyFDs = 0;
    int *ttyFDs = NULL;
    size_t i;
1728 1729 1730 1731
    char *logfile = NULL;
    int logfd = -1;
    unsigned int nveths = 0;
    char **veths = NULL;
1732
    int handshakefds[2] = { -1, -1 };
1733 1734 1735 1736
    off_t pos = -1;
    char ebuf[1024];
    char *timestamp;
    virCommandPtr cmd = NULL;
1737
    lxcDomainObjPrivatePtr priv = vm->privateData;
1738
    virErrorPtr err = NULL;
1739

1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764
    if (!lxc_driver->cgroup) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("The 'cpuacct', 'devices' & 'memory' cgroups controllers must be mounted"));
        return -1;
    }

    if (!virCgroupMounted(lxc_driver->cgroup,
                          VIR_CGROUP_CONTROLLER_CPUACCT)) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Unable to find 'cpuacct' cgroups controller mount"));
        return -1;
    }
    if (!virCgroupMounted(lxc_driver->cgroup,
                          VIR_CGROUP_CONTROLLER_DEVICES)) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Unable to find 'devices' cgroups controller mount"));
        return -1;
    }
    if (!virCgroupMounted(lxc_driver->cgroup,
                          VIR_CGROUP_CONTROLLER_MEMORY)) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Unable to find 'memory' cgroups controller mount"));
        return -1;
    }

1765 1766
    if (virFileMakePath(driver->logDir) < 0) {
        virReportSystemError(errno,
1767
                             _("Cannot create log directory '%s'"),
1768
                             driver->logDir);
1769 1770
        return -1;
    }
1771

1772 1773
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1774
        virReportOOMError();
1775
        return -1;
1776 1777
    }

1778 1779 1780 1781 1782 1783 1784 1785
    /* Do this up front, so any part of the startup process can add
     * runtime state to vm->def that won't be persisted. This let's us
     * report implicit runtime defaults in the XML, like vnc listen/socket
     */
    VIR_DEBUG("Setting current domain def as transient");
    if (virDomainObjSetDefTransient(driver->caps, vm, true) < 0)
        goto cleanup;

1786 1787 1788 1789 1790 1791 1792
    /* Here we open all the PTYs we need on the host OS side.
     * The LXC controller will open the guest OS side PTYs
     * and forward I/O between them.
     */
    nttyFDs = vm->def->nconsoles;
    if (VIR_ALLOC_N(ttyFDs, nttyFDs) < 0) {
        virReportOOMError();
1793 1794
        goto cleanup;
    }
1795 1796 1797 1798 1799 1800
    for (i = 0 ; i < vm->def->nconsoles ; i++)
        ttyFDs[i] = -1;

    for (i = 0 ; i < vm->def->nconsoles ; i++) {
        char *ttyPath;
        if (vm->def->consoles[i]->source.type != VIR_DOMAIN_CHR_TYPE_PTY) {
1801
            lxcError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1802
                     _("Only PTY console types are supported"));
1803 1804
            goto cleanup;
        }
1805 1806 1807 1808 1809

        if (virFileOpenTty(&ttyFDs[i], &ttyPath, 1) < 0) {
            virReportSystemError(errno, "%s",
                                 _("Failed to allocate tty"));
            goto cleanup;
1810
        }
1811 1812 1813

        VIR_FREE(vm->def->consoles[i]->source.data.file.path);
        vm->def->consoles[i]->source.data.file.path = ttyPath;
1814 1815 1816 1817 1818 1819

        VIR_FREE(vm->def->consoles[i]->info.alias);
        if (virAsprintf(&vm->def->consoles[i]->info.alias, "console%zu", i) < 0) {
            virReportOOMError();
            goto cleanup;
        }
1820
    }
1821

1822
    if (lxcSetupInterfaces(conn, vm->def, &nveths, &veths) != 0)
1823
        goto cleanup;
1824

1825
    /* Save the configuration for the controller */
1826
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
1827 1828
        goto cleanup;

1829
    if ((logfd = open(logfile, O_WRONLY | O_APPEND | O_CREAT,
1830
             S_IRUSR|S_IWUSR)) < 0) {
1831
        virReportSystemError(errno,
1832
                             _("Failed to open '%s'"),
1833
                             logfile);
1834
        goto cleanup;
1835 1836
    }

1837 1838 1839 1840 1841 1842
    if (pipe(handshakefds) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to create pipe"));
        goto cleanup;
    }

1843 1844 1845
    if (!(cmd = lxcBuildControllerCmd(driver,
                                      vm,
                                      nveths, veths,
1846
                                      ttyFDs, nttyFDs,
E
Eric Blake 已提交
1847
                                      handshakefds[1])))
1848
        goto cleanup;
E
Eric Blake 已提交
1849 1850
    virCommandSetOutputFD(cmd, &logfd);
    virCommandSetErrorFD(cmd, &logfd);
1851 1852

    /* Log timestamp */
1853
    if ((timestamp = virTimeStringNow()) == NULL) {
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
        virReportOOMError();
        goto cleanup;
    }
    if (safewrite(logfd, timestamp, strlen(timestamp)) < 0 ||
        safewrite(logfd, START_POSTFIX, strlen(START_POSTFIX)) < 0) {
        VIR_WARN("Unable to write timestamp to logfile: %s",
                 virStrerror(errno, ebuf, sizeof ebuf));
    }
    VIR_FREE(timestamp);

    /* Log generated command line */
    virCommandWriteArgLog(cmd, logfd);
    if ((pos = lseek(logfd, 0, SEEK_END)) < 0)
        VIR_WARN("Unable to seek to end of logfile: %s",
                 virStrerror(errno, ebuf, sizeof ebuf));

    if (virCommandRun(cmd, NULL) < 0)
1871
        goto cleanup;
1872

1873 1874 1875 1876 1877
    if (VIR_CLOSE(handshakefds[1]) < 0) {
        virReportSystemError(errno, "%s", _("could not close handshake fd"));
        goto cleanup;
    }

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

1884
    /* And get its pid */
1885
    if ((r = virPidFileRead(driver->stateDir, vm->def->name, &vm->pid)) < 0) {
1886
        virReportSystemError(-r,
1887 1888
                             _("Failed to read pid file %s/%s.pid"),
                             driver->stateDir, vm->def->name);
1889
        goto cleanup;
1890
    }
1891

1892
    vm->def->id = vm->pid;
J
Jiri Denemark 已提交
1893
    virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, reason);
1894

1895 1896 1897 1898 1899 1900 1901 1902
    if (lxcContainerWaitForContinue(handshakefds[0]) < 0) {
        char out[1024];

        if (!(lxcReadLogOutput(vm, logfile, pos, out, 1024) < 0)) {
            lxcError(VIR_ERR_INTERNAL_ERROR,
                     _("guest failed to start: %s"), out);
        }

1903
        goto error;
1904 1905
    }

1906 1907
    if ((priv->monitorWatch = virEventAddHandle(
             priv->monitor,
1908 1909
             VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
             lxcMonitorEvent,
1910
             vm, NULL)) < 0) {
1911
        goto error;
1912
    }
1913

1914 1915
    if (autoDestroy &&
        lxcProcessAutoDestroyAdd(driver, vm, conn) < 0)
1916
        goto error;
1917

1918 1919 1920 1921 1922
    /*
     * 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)
1923
        goto error;
1924

1925
    if (virDomainObjSetDefTransient(driver->caps, vm, false) < 0)
1926
        goto error;
1927

O
Osier Yang 已提交
1928 1929
    /* Write domain status to disk. */
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
1930
        goto error;
O
Osier Yang 已提交
1931

1932 1933 1934
    rc = 0;

cleanup:
1935 1936
    if (rc != 0 && !err)
        err = virSaveLastError();
1937
    virCommandFree(cmd);
1938 1939 1940 1941
    if (VIR_CLOSE(logfd) < 0) {
        virReportSystemError(errno, "%s", _("could not close logfile"));
        rc = -1;
    }
1942 1943
    for (i = 0 ; i < nveths ; i++) {
        if (rc != 0)
1944
            ignore_value(virNetDevVethDelete(veths[i]));
1945 1946
        VIR_FREE(veths[i]);
    }
1947
    if (rc != 0) {
1948
        VIR_FORCE_CLOSE(priv->monitor);
1949 1950
        virDomainConfVMNWFilterTeardown(vm);
    }
1951 1952
    for (i = 0 ; i < nttyFDs ; i++)
        VIR_FORCE_CLOSE(ttyFDs[i]);
1953
    VIR_FREE(ttyFDs);
1954 1955
    VIR_FORCE_CLOSE(handshakefds[0]);
    VIR_FORCE_CLOSE(handshakefds[1]);
1956
    VIR_FREE(logfile);
1957 1958 1959

    if (err) {
        virSetError(err);
1960
        virFreeError(err);
1961 1962
    }

1963
    return rc;
1964 1965 1966 1967 1968

error:
    err = virSaveLastError();
    lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED);
    goto cleanup;
1969 1970 1971
}

/**
1972
 * lxcDomainStartWithFlags:
1973
 * @dom: domain to start
1974
 * @flags: Must be 0 for now
1975 1976 1977 1978 1979
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
1980
static int lxcDomainStartWithFlags(virDomainPtr dom, unsigned int flags)
1981
{
1982 1983
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1984
    virDomainEventPtr event = NULL;
1985
    int ret = -1;
1986

1987
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, -1);
1988

1989
    lxcDriverLock(driver);
1990
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1991
    if (!vm) {
1992 1993 1994 1995
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1996 1997 1998
        goto cleanup;
    }

1999
    if ((vm->def->nets != NULL) && !(driver->have_netns)) {
2000
        lxcError(VIR_ERR_OPERATION_INVALID,
J
Jim Meyering 已提交
2001
                 "%s", _("System lacks NETNS support"));
2002 2003 2004
        goto cleanup;
    }

2005 2006 2007 2008 2009 2010
    if (virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is already running"));
        goto cleanup;
    }

2011 2012 2013
    ret = lxcVmStart(dom->conn, driver, vm,
                     (flags & VIR_DOMAIN_START_AUTODESTROY),
                     VIR_DOMAIN_RUNNING_BOOTED);
2014

2015
    if (ret == 0) {
2016 2017 2018
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);
2019 2020 2021 2022
        virDomainAuditStart(vm, "booted", true);
    } else {
        virDomainAuditStart(vm, "booted", false);
    }
2023

2024
cleanup:
2025 2026
    if (vm)
        virDomainObjUnlock(vm);
2027 2028
    if (event)
        lxcDomainEventQueue(driver, event);
2029
    lxcDriverUnlock(driver);
2030
    return ret;
2031 2032
}

2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045
/**
 * 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);
}

2046 2047 2048 2049
/**
 * lxcDomainCreateAndStart:
 * @conn: pointer to connection
 * @xml: XML definition of domain
2050
 * @flags: Must be 0 for now
2051 2052 2053 2054 2055 2056 2057 2058
 *
 * 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,
2059
                        unsigned int flags) {
2060
    lxc_driver_t *driver = conn->privateData;
2061
    virDomainObjPtr vm = NULL;
2062
    virDomainDefPtr def;
2063
    virDomainPtr dom = NULL;
2064
    virDomainEventPtr event = NULL;
2065

2066
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, NULL);
2067

2068
    lxcDriverLock(driver);
2069
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
2070
                                        1 << VIR_DOMAIN_VIRT_LXC,
2071
                                        VIR_DOMAIN_XML_INACTIVE)))
2072
        goto cleanup;
2073

2074 2075
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
        goto cleanup;
2076

2077
    if ((def->nets != NULL) && !(driver->have_netns)) {
2078
        lxcError(VIR_ERR_CONFIG_UNSUPPORTED,
J
Jim Meyering 已提交
2079
                 "%s", _("System lacks NETNS support"));
2080
        goto cleanup;
2081 2082
    }

2083

2084
    if (!(vm = virDomainAssignDef(driver->caps,
2085
                                  &driver->domains, def, false)))
2086 2087
        goto cleanup;
    def = NULL;
2088

2089 2090 2091
    if (lxcVmStart(conn, driver, vm,
                   (flags & VIR_DOMAIN_START_AUTODESTROY),
                   VIR_DOMAIN_RUNNING_BOOTED) < 0) {
2092
        virDomainAuditStart(vm, "booted", false);
2093
        virDomainRemoveInactive(&driver->domains, vm);
2094
        vm = NULL;
2095
        goto cleanup;
2096 2097
    }

2098 2099 2100
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);
2101
    virDomainAuditStart(vm, "booted", true);
2102

2103
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
2104
    if (dom)
2105 2106
        dom->id = vm->def->id;

2107 2108
cleanup:
    virDomainDefFree(def);
2109 2110
    if (vm)
        virDomainObjUnlock(vm);
2111 2112
    if (event)
        lxcDomainEventQueue(driver, event);
2113
    lxcDriverUnlock(driver);
2114 2115 2116
    return dom;
}

2117 2118

static int
2119 2120 2121 2122
lxcDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
2123 2124 2125 2126 2127
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
2128 2129 2130
    ret = virDomainEventStateRegister(conn,
                                      driver->domainEventState,
                                      callback, opaque, freecb);
2131
    lxcDriverUnlock(driver);
2132

2133
    return ret;
2134 2135
}

2136

2137
static int
2138 2139
lxcDomainEventDeregister(virConnectPtr conn,
                         virConnectDomainEventCallback callback)
2140 2141 2142 2143 2144
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
2145 2146 2147
    ret = virDomainEventStateDeregister(conn,
                                        driver->domainEventState,
                                        callback);
2148 2149 2150 2151 2152
    lxcDriverUnlock(driver);

    return ret;
}

2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165

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);
2166 2167 2168 2169
    if (virDomainEventStateRegisterID(conn,
                                      driver->domainEventState,
                                      dom, eventID,
                                      callback, opaque, freecb, &ret) < 0)
2170
        ret = -1;
2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184
    lxcDriverUnlock(driver);

    return ret;
}


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

    lxcDriverLock(driver);
2185 2186 2187
    ret = virDomainEventStateDeregisterID(conn,
                                          driver->domainEventState,
                                          callbackID);
2188 2189 2190 2191 2192 2193
    lxcDriverUnlock(driver);

    return ret;
}


2194 2195 2196 2197
/* driver must be locked before calling */
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                 virDomainEventPtr event)
{
2198
    virDomainEventStateQueue(driver->domainEventState, event);
2199
}
2200 2201

/**
2202
 * lxcDomainDestroyFlags:
2203
 * @dom: pointer to domain to destroy
2204
 * @flags: an OR'ed set of virDomainDestroyFlags
2205 2206 2207 2208 2209
 *
 * Sends SIGKILL to container root process to terminate the container
 *
 * Returns 0 on success or -1 in case of error
 */
2210 2211 2212
static int
lxcDomainDestroyFlags(virDomainPtr dom,
                      unsigned int flags)
2213
{
2214 2215
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
2216
    virDomainEventPtr event = NULL;
2217
    int ret = -1;
2218

2219 2220
    virCheckFlags(0, -1);

2221
    lxcDriverLock(driver);
2222
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
2223
    if (!vm) {
2224 2225 2226 2227
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2228
        goto cleanup;
2229 2230
    }

2231 2232 2233 2234 2235 2236
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

J
Jiri Denemark 已提交
2237
    ret = lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
2238 2239 2240
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
2241
    virDomainAuditStop(vm, "destroyed");
2242 2243 2244 2245
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
2246 2247

cleanup:
2248 2249
    if (vm)
        virDomainObjUnlock(vm);
2250 2251
    if (event)
        lxcDomainEventQueue(driver, event);
2252
    lxcDriverUnlock(driver);
2253
    return ret;
2254
}
2255

2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269
/**
 * lxcDomainDestroy:
 * @dom: pointer to domain to destroy
 *
 * 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)
{
    return lxcDomainDestroyFlags(dom, 0);
}

2270 2271 2272 2273 2274
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

2275
    if (virRun(argv, &ip_rc) < 0 ||
2276 2277
        !(WIFEXITED(ip_rc) && (WEXITSTATUS(ip_rc) != 255)))
        return 0;
2278

2279 2280
    if (lxcContainerAvailable(LXC_CONTAINER_FEATURE_NET) < 0)
        return 0;
2281

2282
    return 1;
2283 2284
}

2285

2286 2287 2288 2289 2290 2291
struct lxcAutostartData {
    lxc_driver_t *driver;
    virConnectPtr conn;
};

static void
2292
lxcAutostartDomain(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
2293 2294 2295 2296 2297 2298
{
    virDomainObjPtr vm = payload;
    const struct lxcAutostartData *data = opaque;

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
2299
        !virDomainObjIsActive(vm)) {
2300
        int ret = lxcVmStart(data->conn, data->driver, vm, false,
J
Jiri Denemark 已提交
2301
                             VIR_DOMAIN_RUNNING_BOOTED);
2302
        virDomainAuditStart(vm, "booted", ret >= 0);
2303 2304
        if (ret < 0) {
            virErrorPtr err = virGetLastError();
2305
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319
                      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);
}

2320 2321 2322 2323 2324 2325 2326 2327 2328 2329
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 */

2330 2331
    struct lxcAutostartData data = { driver, conn };

2332
    lxcDriverLock(driver);
2333
    virHashForEach(driver->domains.objs, lxcAutostartDomain, &data);
2334 2335 2336 2337 2338 2339
    lxcDriverUnlock(driver);

    if (conn)
        virConnectClose(conn);
}

2340
static void
2341
lxcReconnectVM(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
2342 2343 2344
{
    virDomainObjPtr vm = payload;
    lxc_driver_t *driver = opaque;
2345
    lxcDomainObjPrivatePtr priv;
2346 2347

    virDomainObjLock(vm);
2348
    VIR_DEBUG("Reconnect %d %d %d\n", vm->def->id, vm->pid, vm->state.state);
2349 2350

    priv = vm->privateData;
2351 2352 2353

    if (vm->pid != 0) {
        vm->def->id = vm->pid;
J
Jiri Denemark 已提交
2354 2355
        virDomainObjSetState(vm, VIR_DOMAIN_RUNNING,
                             VIR_DOMAIN_RUNNING_UNKNOWN);
2356

2357 2358 2359
        if ((priv->monitor = lxcMonitorClient(driver, vm)) < 0)
            goto error;

2360 2361 2362 2363
        if ((priv->monitorWatch = virEventAddHandle(
                 priv->monitor,
                 VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
                 lxcMonitorEvent,
2364 2365
                 vm, NULL)) < 0)
            goto error;
2366 2367
    } else {
        vm->def->id = -1;
2368
        VIR_FORCE_CLOSE(priv->monitor);
2369 2370 2371 2372
    }

cleanup:
    virDomainObjUnlock(vm);
2373 2374 2375 2376 2377 2378
    return;

error:
    lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED);
    virDomainAuditStop(vm, "failed");
    goto cleanup;
2379 2380
}

2381

2382
static int lxcStartup(int privileged)
D
Daniel Veillard 已提交
2383
{
2384
    char *ld;
2385
    int rc;
2386 2387 2388 2389 2390 2391

    /* 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");
2392
    if (ld && strstr(ld, "vgpreload")) {
2393
        VIR_INFO("Running under valgrind, disabling driver");
2394 2395
        return 0;
    }
2396

2397
    /* Check that the user is root, silently disable if not */
2398
    if (!privileged) {
2399
        VIR_INFO("Not running privileged, disabling driver");
2400 2401 2402 2403 2404
        return 0;
    }

    /* Check that this is a container enabled kernel */
    if (lxcContainerAvailable(0) < 0) {
2405
        VIR_INFO("LXC support not available in this kernel, disabling driver");
2406
        return 0;
2407 2408
    }

2409
    if (VIR_ALLOC(lxc_driver) < 0) {
2410 2411
        return -1;
    }
2412 2413 2414 2415
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
2416
    lxcDriverLock(lxc_driver);
D
Daniel Veillard 已提交
2417

2418 2419 2420
    if (virDomainObjListInit(&lxc_driver->domains) < 0)
        goto cleanup;

2421
    lxc_driver->domainEventState = virDomainEventStateNew();
2422
    if (!lxc_driver->domainEventState)
2423 2424
        goto cleanup;

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

2428 2429
    rc = virCgroupForDriver("lxc", &lxc_driver->cgroup, privileged, 1);
    if (rc < 0) {
2430
        char buf[1024] ATTRIBUTE_UNUSED;
2431 2432 2433 2434 2435
        VIR_DEBUG("Unable to create cgroup for LXC driver: %s",
                  virStrerror(-rc, buf, sizeof(buf)));
        /* Don't abort startup. We will explicitly report to
         * the user when they try to start a VM
         */
2436 2437
    }

D
Daniel Veillard 已提交
2438
    /* Call function to load lxc driver configuration information */
2439 2440
    if (lxcLoadDriverConfig(lxc_driver) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
2441

2442 2443
    if ((lxc_driver->caps = lxcCapsInit()) == NULL)
        goto cleanup;
D
Daniel Veillard 已提交
2444

2445 2446 2447
    lxc_driver->caps->privateDataAllocFunc = lxcDomainObjPrivateAlloc;
    lxc_driver->caps->privateDataFreeFunc = lxcDomainObjPrivateFree;

2448 2449 2450
    if (lxcProcessAutoDestroyInit(lxc_driver) < 0)
        goto cleanup;

O
Osier Yang 已提交
2451 2452 2453 2454 2455
    /* Get all the running persistent or transient configs first */
    if (virDomainLoadAllConfigs(lxc_driver->caps,
                                &lxc_driver->domains,
                                lxc_driver->stateDir,
                                NULL,
M
Matthias Bolte 已提交
2456 2457
                                1, 1 << VIR_DOMAIN_VIRT_LXC,
                                NULL, NULL) < 0)
O
Osier Yang 已提交
2458 2459 2460 2461 2462
        goto cleanup;

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

    /* Then inactive persistent configs */
2463
    if (virDomainLoadAllConfigs(lxc_driver->caps,
2464 2465
                                &lxc_driver->domains,
                                lxc_driver->configDir,
2466
                                lxc_driver->autostartDir,
M
Matthias Bolte 已提交
2467 2468
                                0, 1 << VIR_DOMAIN_VIRT_LXC,
                                NULL, NULL) < 0)
2469
        goto cleanup;
2470

2471
    lxcDriverUnlock(lxc_driver);
2472 2473 2474

    lxcAutostartConfigs(lxc_driver);

D
Daniel Veillard 已提交
2475 2476
    return 0;

2477 2478 2479 2480
cleanup:
    lxcDriverUnlock(lxc_driver);
    lxcShutdown();
    return -1;
D
Daniel Veillard 已提交
2481 2482
}

2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508
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);
2509
    virDomainLoadAllConfigs(lxc_driver->caps,
2510 2511 2512
                            &lxc_driver->domains,
                            lxc_driver->configDir,
                            lxc_driver->autostartDir,
M
Matthias Bolte 已提交
2513 2514
                            0, 1 << VIR_DOMAIN_VIRT_LXC,
                            lxcNotifyLoadDomain, lxc_driver);
2515 2516 2517 2518 2519 2520 2521
    lxcDriverUnlock(lxc_driver);

    lxcAutostartConfigs(lxc_driver);

    return 0;
}

2522
static int lxcShutdown(void)
D
Daniel Veillard 已提交
2523
{
2524
    if (lxc_driver == NULL)
2525
        return(-1);
2526

2527
    lxcDriverLock(lxc_driver);
2528
    virDomainObjListDeinit(&lxc_driver->domains);
2529
    virDomainEventStateFree(lxc_driver->domainEventState);
2530

2531 2532
    lxcProcessAutoDestroyShutdown(lxc_driver);

2533 2534 2535 2536 2537 2538
    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);
2539
    virMutexDestroy(&lxc_driver->lock);
2540
    VIR_FREE(lxc_driver);
2541 2542 2543

    return 0;
}
D
Daniel Veillard 已提交
2544

2545 2546 2547 2548 2549 2550 2551 2552 2553
/**
 * lxcActive:
 *
 * Checks if the LXC daemon is active, i.e. has an active domain
 *
 * Returns 1 if active, 0 otherwise
 */
static int
lxcActive(void) {
2554
    int active;
2555

2556 2557
    if (lxc_driver == NULL)
        return(0);
2558

2559
    lxcDriverLock(lxc_driver);
2560
    active = virDomainObjListNumOfDomains(&lxc_driver->domains, 1);
2561
    lxcDriverUnlock(lxc_driver);
2562

2563
    return active;
D
Daniel Veillard 已提交
2564 2565
}

2566
static int lxcVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *version)
D
Dan Smith 已提交
2567 2568 2569
{
    struct utsname ver;

2570
    uname(&ver);
D
Dan Smith 已提交
2571

2572
    if (virParseVersionString(ver.release, version, true) < 0) {
2573
        lxcError(VIR_ERR_INTERNAL_ERROR, _("Unknown release: %s"), ver.release);
D
Dan Smith 已提交
2574 2575 2576 2577 2578
        return -1;
    }

    return 0;
}
2579

2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632

/*
 * check whether the host supports CFS bandwidth
 *
 * Return 1 when CFS bandwidth is supported, 0 when CFS bandwidth is not
 * supported, -1 on error.
 */
static int lxcGetCpuBWStatus(virCgroupPtr cgroup)
{
    char *cfs_period_path = NULL;
    int ret = -1;

    if (!cgroup)
        return 0;

    if (virCgroupPathOfController(cgroup, VIR_CGROUP_CONTROLLER_CPU,
                                  "cpu.cfs_period_us", &cfs_period_path) < 0) {
        VIR_INFO("cannot get the path of cgroup CPU controller");
        ret = 0;
        goto cleanup;
    }

    if (access(cfs_period_path, F_OK) < 0) {
        ret = 0;
    } else {
        ret = 1;
    }

cleanup:
    VIR_FREE(cfs_period_path);
    return ret;
}


static bool lxcCgroupControllerActive(lxc_driver_t *driver,
                                      int controller)
{
    if (driver->cgroup == NULL)
        return false;
    if (controller < 0 || controller >= VIR_CGROUP_CONTROLLER_LAST)
        return false;
    if (!virCgroupMounted(driver->cgroup, controller))
        return false;
#if 0
    if (driver->cgroupControllers & (1 << controller))
        return true;
#endif
    return false;
}



static char *lxcGetSchedulerType(virDomainPtr domain,
2633
                                 int *nparams)
2634
{
2635 2636 2637
    lxc_driver_t *driver = domain->conn->privateData;
    char *ret = NULL;
    int rc;
2638

2639 2640 2641 2642 2643 2644
    lxcDriverLock(driver);
    if (!lxcCgroupControllerActive(driver, VIR_CGROUP_CONTROLLER_CPU)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("cgroup CPU controller is not mounted"));
        goto cleanup;
    }
2645

2646 2647 2648 2649 2650 2651 2652 2653 2654
    if (nparams) {
        rc = lxcGetCpuBWStatus(driver->cgroup);
        if (rc < 0)
            goto cleanup;
        else if (rc == 0)
            *nparams = 1;
        else
            *nparams = 3;
    }
2655

2656 2657
    ret = strdup("posix");
    if (!ret)
2658
        virReportOOMError();
2659

2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736
cleanup:
    lxcDriverUnlock(driver);
    return ret;
}


static int
lxcGetVcpuBWLive(virCgroupPtr cgroup, unsigned long long *period,
                 long long *quota)
{
    int rc;

    rc = virCgroupGetCpuCfsPeriod(cgroup, period);
    if (rc < 0) {
        virReportSystemError(-rc, "%s",
                             _("unable to get cpu bandwidth period tunable"));
        return -1;
    }

    rc = virCgroupGetCpuCfsQuota(cgroup, quota);
    if (rc < 0) {
        virReportSystemError(-rc, "%s",
                             _("unable to get cpu bandwidth tunable"));
        return -1;
    }

    return 0;
}


static int lxcSetVcpuBWLive(virCgroupPtr cgroup, unsigned long long period,
                            long long quota)
{
    int rc;
    unsigned long long old_period;

    if (period == 0 && quota == 0)
        return 0;

    if (period) {
        /* get old period, and we can rollback if set quota failed */
        rc = virCgroupGetCpuCfsPeriod(cgroup, &old_period);
        if (rc < 0) {
            virReportSystemError(-rc,
                                 "%s", _("Unable to get cpu bandwidth period"));
            return -1;
        }

        rc = virCgroupSetCpuCfsPeriod(cgroup, period);
        if (rc < 0) {
            virReportSystemError(-rc,
                                 "%s", _("Unable to set cpu bandwidth period"));
            return -1;
        }
    }

    if (quota) {
        rc = virCgroupSetCpuCfsQuota(cgroup, quota);
        if (rc < 0) {
            virReportSystemError(-rc,
                                 "%s", _("Unable to set cpu bandwidth quota"));
            goto cleanup;
        }
    }

    return 0;

cleanup:
    if (period) {
        rc = virCgroupSetCpuCfsPeriod(cgroup, old_period);
        if (rc < 0)
            virReportSystemError(-rc,
                                 _("%s"),
                                 "Unable to rollback cpu bandwidth period");
    }

    return -1;
2737 2738
}

2739

2740
static int
2741
lxcSetSchedulerParametersFlags(virDomainPtr dom,
2742 2743 2744
                               virTypedParameterPtr params,
                               int nparams,
                               unsigned int flags)
2745
{
2746
    lxc_driver_t *driver = dom->conn->privateData;
2747
    int i;
2748 2749
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
2750
    virDomainDefPtr vmdef = NULL;
2751
    int ret = -1;
2752
    int rc;
2753

2754 2755
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
2756 2757

    lxcDriverLock(driver);
2758 2759

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

2761
    if (vm == NULL) {
2762 2763
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("No such domain %s"), dom->uuid);
2764
        goto cleanup;
2765 2766
    }

E
Eric Blake 已提交
2767 2768 2769
    if (virDomainLiveConfigHelperMethod(driver->caps, vm, &flags,
                                        &vmdef) < 0)
        goto cleanup;
2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790

    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
        /* Make a copy for updated domain. */
        vmdef = virDomainObjCopyPersistentDef(driver->caps, vm);
        if (!vmdef)
            goto cleanup;
    }

    if (flags & VIR_DOMAIN_AFFECT_LIVE) {
        if (!lxcCgroupControllerActive(driver, VIR_CGROUP_CONTROLLER_CPU)) {
            lxcError(VIR_ERR_OPERATION_INVALID,
                     "%s", _("cgroup CPU controller is not mounted"));
            goto cleanup;
        }
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0) {
            lxcError(VIR_ERR_INTERNAL_ERROR,
                     _("cannot find cgroup for domain %s"),
                     vm->def->name);
            goto cleanup;
        }
    }
2791 2792

    for (i = 0; i < nparams; i++) {
2793
        virTypedParameterPtr param = &params[i];
2794

2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856
        if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_CPU_SHARES)) {
            if (param->type != VIR_TYPED_PARAM_ULLONG) {
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for cpu_shares tunable, expected a 'ullong'"));
                goto cleanup;
            }

            if (flags & VIR_DOMAIN_AFFECT_LIVE) {
                rc = virCgroupSetCpuShares(group, params[i].value.ul);
                if (rc != 0) {
                    virReportSystemError(-rc, "%s",
                                         _("unable to set cpu shares tunable"));
                    goto cleanup;
                }

                vm->def->cputune.shares = params[i].value.ul;
            }

            if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
                vmdef->cputune.shares = params[i].value.ul;
            }
        } else if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_VCPU_PERIOD)) {
            if (param->type != VIR_TYPED_PARAM_ULLONG) {
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for vcpu_period tunable,"
                           " expected a 'ullong'"));
                goto cleanup;
            }

            if (flags & VIR_DOMAIN_AFFECT_LIVE) {
                rc = lxcSetVcpuBWLive(group, params[i].value.ul, 0);
                if (rc != 0)
                    goto cleanup;

                if (params[i].value.ul)
                    vm->def->cputune.period = params[i].value.ul;
            }

            if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
                vmdef->cputune.period = params[i].value.ul;
            }
        } else if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_VCPU_QUOTA)) {
            if (param->type != VIR_TYPED_PARAM_LLONG) {
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for vcpu_quota tunable,"
                           " expected a 'llong'"));
                goto cleanup;
            }

            if (flags & VIR_DOMAIN_AFFECT_LIVE) {
                rc = lxcSetVcpuBWLive(group, 0, params[i].value.l);
                if (rc != 0)
                    goto cleanup;

                if (params[i].value.l)
                    vm->def->cputune.quota = params[i].value.l;
            }

            if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
                vmdef->cputune.quota = params[i].value.l;
            }
        } else {
2857 2858 2859 2860
            lxcError(VIR_ERR_INVALID_ARG,
                     _("Invalid parameter `%s'"), param->field);
            goto cleanup;
        }
2861
    }
2862

2863 2864
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
        goto cleanup;
2865

2866 2867 2868 2869

    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
        rc = virDomainSaveConfig(driver->configDir, vmdef);
        if (rc < 0)
2870
            goto cleanup;
2871

2872 2873
        virDomainObjAssignDef(vm, vmdef, false);
        vmdef = NULL;
2874
    }
2875

2876
    ret = 0;
2877

2878
cleanup:
2879
    virDomainDefFree(vmdef);
2880
    virCgroupFree(&group);
2881 2882
    if (vm)
        virDomainObjUnlock(vm);
2883
    lxcDriverUnlock(driver);
2884
    return ret;
2885 2886
}

2887 2888 2889 2890 2891 2892 2893 2894 2895
static int
lxcSetSchedulerParameters(virDomainPtr domain,
                          virTypedParameterPtr params,
                          int nparams)
{
    return lxcSetSchedulerParametersFlags(domain, params, nparams, 0);
}

static int
2896
lxcGetSchedulerParametersFlags(virDomainPtr dom,
2897 2898 2899
                               virTypedParameterPtr params,
                               int *nparams,
                               unsigned int flags)
2900
{
2901
    lxc_driver_t *driver = dom->conn->privateData;
2902 2903
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
E
Eric Blake 已提交
2904
    virDomainDefPtr persistentDef;
2905 2906 2907
    unsigned long long shares = 0;
    unsigned long long period = 0;
    long long quota = 0;
2908
    int ret = -1;
2909 2910 2911
    int rc;
    bool cpu_bw_status = false;
    int saved_nparams = 0;
2912

2913 2914
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
2915

2916
    lxcDriverLock(driver);
2917 2918 2919 2920 2921 2922 2923 2924 2925

    if (*nparams > 1) {
        rc = lxcGetCpuBWStatus(driver->cgroup);
        if (rc < 0)
            goto cleanup;
        cpu_bw_status = !!rc;
    }

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

2927
    if (vm == NULL) {
2928 2929 2930 2931 2932
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("No such domain %s"), dom->uuid);
        goto cleanup;
    }

E
Eric Blake 已提交
2933 2934 2935
    if (virDomainLiveConfigHelperMethod(driver->caps, vm, &flags,
                                        &persistentDef) < 0)
        goto cleanup;
2936 2937

    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
E
Eric Blake 已提交
2938 2939 2940 2941
        shares = persistentDef->cputune.shares;
        if (*nparams > 1 && cpu_bw_status) {
            period = persistentDef->cputune.period;
            quota = persistentDef->cputune.quota;
2942 2943 2944 2945 2946 2947 2948
        }
        goto out;
    }

    if (!lxcCgroupControllerActive(driver, VIR_CGROUP_CONTROLLER_CPU)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("cgroup CPU controller is not mounted"));
2949
        goto cleanup;
2950 2951
    }

2952 2953 2954
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("cannot find cgroup for domain %s"), vm->def->name);
2955
        goto cleanup;
2956
    }
2957

2958 2959 2960 2961
    rc = virCgroupGetCpuShares(group, &shares);
    if (rc != 0) {
        virReportSystemError(-rc, "%s",
                             _("unable to get cpu shares tunable"));
2962
        goto cleanup;
2963 2964 2965 2966 2967 2968 2969 2970 2971 2972
    }

    if (*nparams > 1 && cpu_bw_status) {
        rc = lxcGetVcpuBWLive(group, &period, &quota);
        if (rc != 0)
            goto cleanup;
    }
out:
    params[0].value.ul = shares;
    params[0].type = VIR_TYPED_PARAM_ULLONG;
2973 2974
    if (virStrcpyStatic(params[0].field,
                        VIR_DOMAIN_SCHEDULER_CPU_SHARES) == NULL) {
2975
        lxcError(VIR_ERR_INTERNAL_ERROR,
2976 2977
                 _("Field name '%s' too long"),
                 VIR_DOMAIN_SCHEDULER_CPU_SHARES);
C
Chris Lalancette 已提交
2978 2979
        goto cleanup;
    }
2980

2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012
    saved_nparams++;

    if (cpu_bw_status) {
        if (*nparams > saved_nparams) {
            params[1].value.ul = period;
            params[1].type = VIR_TYPED_PARAM_ULLONG;
            if (virStrcpyStatic(params[1].field,
                                VIR_DOMAIN_SCHEDULER_VCPU_PERIOD) == NULL) {
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         _("Field name '%s' too long"),
                         VIR_DOMAIN_SCHEDULER_VCPU_PERIOD);
                goto cleanup;
            }
            saved_nparams++;
        }

        if (*nparams > saved_nparams) {
            params[2].value.ul = quota;
            params[2].type = VIR_TYPED_PARAM_LLONG;
            if (virStrcpyStatic(params[2].field,
                                VIR_DOMAIN_SCHEDULER_VCPU_QUOTA) == NULL) {
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         _("Field name '%s' too long"),
                         VIR_DOMAIN_SCHEDULER_VCPU_QUOTA);
                goto cleanup;
            }
            saved_nparams++;
        }
    }

    *nparams = saved_nparams;

3013
    ret = 0;
3014

3015 3016
cleanup:
    virCgroupFree(&group);
3017 3018
    if (vm)
        virDomainObjUnlock(vm);
3019
    lxcDriverUnlock(driver);
3020
    return ret;
3021 3022
}

3023 3024 3025 3026 3027 3028 3029 3030
static int
lxcGetSchedulerParameters(virDomainPtr domain,
                          virTypedParameterPtr params,
                          int *nparams)
{
    return lxcGetSchedulerParametersFlags(domain, params, nparams, 0);
}

3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055

static int lxcDomainSetBlkioParameters(virDomainPtr dom,
                                       virTypedParameterPtr params,
                                       int nparams,
                                       unsigned int flags)
{
    lxc_driver_t *driver = dom->conn->privateData;
    int i;
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
    virDomainDefPtr persistentDef = NULL;
    int ret = -1;

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
    lxcDriverLock(driver);

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

    if (vm == NULL) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                        _("No such domain %s"), dom->uuid);
        goto cleanup;
    }

E
Eric Blake 已提交
3056 3057 3058
    if (virDomainLiveConfigHelperMethod(driver->caps, vm, &flags,
                                        &persistentDef) < 0)
        goto cleanup;
3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079

    if (flags & VIR_DOMAIN_AFFECT_LIVE) {
        if (!lxcCgroupControllerActive(driver, VIR_CGROUP_CONTROLLER_BLKIO)) {
            lxcError(VIR_ERR_OPERATION_INVALID, _("blkio cgroup isn't mounted"));
            goto cleanup;
        }

        if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0) {
            lxcError(VIR_ERR_INTERNAL_ERROR,
                     _("cannot find cgroup for domain %s"), vm->def->name);
            goto cleanup;
        }

        for (i = 0; i < nparams; i++) {
            virTypedParameterPtr param = &params[i];

            if (STREQ(param->field, VIR_DOMAIN_BLKIO_WEIGHT)) {
                int rc;
                if (param->type != VIR_TYPED_PARAM_UINT) {
                    lxcError(VIR_ERR_INVALID_ARG, "%s",
                             _("invalid type for blkio weight tunable, expected a 'unsigned int'"));
E
Eric Blake 已提交
3080
                    goto cleanup;
3081 3082 3083 3084 3085
                }

                if (params[i].value.ui > 1000 || params[i].value.ui < 100) {
                    lxcError(VIR_ERR_INVALID_ARG, "%s",
                             _("out of blkio weight range."));
E
Eric Blake 已提交
3086
                    goto cleanup;
3087 3088 3089 3090 3091 3092
                }

                rc = virCgroupSetBlkioWeight(group, params[i].value.ui);
                if (rc != 0) {
                    virReportSystemError(-rc, "%s",
                                         _("unable to set blkio weight tunable"));
E
Eric Blake 已提交
3093
                    goto cleanup;
3094 3095 3096 3097
                }
            } else {
                lxcError(VIR_ERR_INVALID_ARG,
                         _("Parameter `%s' not supported"), param->field);
E
Eric Blake 已提交
3098
                goto cleanup;
3099 3100
            }
        }
E
Eric Blake 已提交
3101 3102
    }
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
3103 3104 3105 3106 3107 3108 3109 3110 3111 3112
        /* Clang can't see that if we get here, persistentDef was set.  */
        sa_assert(persistentDef);

        for (i = 0; i < nparams; i++) {
            virTypedParameterPtr param = &params[i];

            if (STREQ(param->field, VIR_DOMAIN_BLKIO_WEIGHT)) {
                if (param->type != VIR_TYPED_PARAM_UINT) {
                    lxcError(VIR_ERR_INVALID_ARG, "%s",
                             _("invalid type for blkio weight tunable, expected a 'unsigned int'"));
E
Eric Blake 已提交
3113
                    goto cleanup;
3114 3115 3116 3117 3118
                }

                if (params[i].value.ui > 1000 || params[i].value.ui < 100) {
                    lxcError(VIR_ERR_INVALID_ARG, "%s",
                             _("out of blkio weight range."));
E
Eric Blake 已提交
3119
                    goto cleanup;
3120 3121 3122 3123 3124 3125
                }

                persistentDef->blkio.weight = params[i].value.ui;
            } else {
                lxcError(VIR_ERR_INVALID_ARG,
                         _("Parameter `%s' not supported"), param->field);
E
Eric Blake 已提交
3126
                goto cleanup;
3127 3128 3129 3130
            }
        }

        if (virDomainSaveConfig(driver->configDir, persistentDef) < 0)
E
Eric Blake 已提交
3131
            goto cleanup;
3132 3133
    }

E
Eric Blake 已提交
3134
    ret = 0;
3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177
cleanup:
    virCgroupFree(&group);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}


#define LXC_NB_BLKIO_PARAM  1
static int lxcDomainGetBlkioParameters(virDomainPtr dom,
                                       virTypedParameterPtr params,
                                       int *nparams,
                                       unsigned int flags)
{
    lxc_driver_t *driver = dom->conn->privateData;
    int i;
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
    virDomainDefPtr persistentDef = NULL;
    unsigned int val;
    int ret = -1;
    int rc;

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
    lxcDriverLock(driver);

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

    if (vm == NULL) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("No such domain %s"), dom->uuid);
        goto cleanup;
    }

    if ((*nparams) == 0) {
        /* Current number of blkio parameters supported by cgroups */
        *nparams = LXC_NB_BLKIO_PARAM;
        ret = 0;
        goto cleanup;
    }

E
Eric Blake 已提交
3178 3179 3180
    if (virDomainLiveConfigHelperMethod(driver->caps, vm, &flags,
                                        &persistentDef) < 0)
        goto cleanup;
3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260

    if (flags & VIR_DOMAIN_AFFECT_LIVE) {
        if (!lxcCgroupControllerActive(driver, VIR_CGROUP_CONTROLLER_BLKIO)) {
            lxcError(VIR_ERR_OPERATION_INVALID, _("blkio cgroup isn't mounted"));
            goto cleanup;
        }

        if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0) {
            lxcError(VIR_ERR_INTERNAL_ERROR,
                     _("cannot find cgroup for domain %s"), vm->def->name);
            goto cleanup;
        }

        for (i = 0; i < *nparams && i < LXC_NB_BLKIO_PARAM; i++) {
            virTypedParameterPtr param = &params[i];
            val = 0;
            param->value.ui = 0;
            param->type = VIR_TYPED_PARAM_UINT;

            switch (i) {
            case 0: /* fill blkio weight here */
                rc = virCgroupGetBlkioWeight(group, &val);
                if (rc != 0) {
                    virReportSystemError(-rc, "%s",
                                         _("unable to get blkio weight"));
                    goto cleanup;
                }
                if (virStrcpyStatic(param->field, VIR_DOMAIN_BLKIO_WEIGHT) == NULL) {
                    lxcError(VIR_ERR_INTERNAL_ERROR,
                             _("Field name '%s' too long"),
                             VIR_DOMAIN_BLKIO_WEIGHT);
                    goto cleanup;
                }
                param->value.ui = val;
                break;

            default:
                break;
                /* should not hit here */
            }
        }
    } else if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
        for (i = 0; i < *nparams && i < LXC_NB_BLKIO_PARAM; i++) {
            virTypedParameterPtr param = &params[i];
            val = 0;
            param->value.ui = 0;
            param->type = VIR_TYPED_PARAM_UINT;

            switch (i) {
            case 0: /* fill blkio weight here */
                if (virStrcpyStatic(param->field, VIR_DOMAIN_BLKIO_WEIGHT) == NULL) {
                    lxcError(VIR_ERR_INTERNAL_ERROR,
                             _("Field name '%s' too long"),
                             VIR_DOMAIN_BLKIO_WEIGHT);
                    goto cleanup;
                }
                param->value.ui = persistentDef->blkio.weight;
                break;

            default:
                break;
                /* should not hit here */
            }
        }
    }

    if (LXC_NB_BLKIO_PARAM < *nparams)
        *nparams = LXC_NB_BLKIO_PARAM;
    ret = 0;

cleanup:
    if (group)
        virCgroupFree(&group);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}


3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278
#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);
3279
        lxcError(VIR_ERR_NO_DOMAIN,
3280 3281 3282 3283 3284
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
3285
        lxcError(VIR_ERR_OPERATION_INVALID,
3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299
                 "%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)
3300
        ret = linuxDomainInterfaceStats(path, stats);
3301
    else
3302
        lxcError(VIR_ERR_INVALID_ARG,
3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314
                 _("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)
A
Alex Jia 已提交
3315
{
3316
    lxcError(VIR_ERR_NO_SUPPORT, "%s", __FUNCTION__);
3317 3318 3319 3320
    return -1;
}
#endif

3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333
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);
3334
        lxcError(VIR_ERR_NO_DOMAIN,
3335
                 _("No domain with matching uuid '%s'"), uuidstr);
3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360
        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);
3361
        lxcError(VIR_ERR_NO_DOMAIN,
3362
                 _("No domain with matching uuid '%s'"), uuidstr);
3363 3364 3365 3366
        goto cleanup;
    }

    if (!vm->persistent) {
3367
        lxcError(VIR_ERR_OPERATION_INVALID,
3368
                 "%s", _("Cannot set autostart for transient domain"));
3369 3370 3371 3372 3373
        goto cleanup;
    }

    autostart = (autostart != 0);

3374 3375 3376 3377
    if (vm->autostart == autostart) {
        ret = 0;
        goto cleanup;
    }
3378

3379
    configFile = virDomainConfigFile(driver->configDir,
3380 3381 3382
                                     vm->def->name);
    if (configFile == NULL)
        goto cleanup;
3383
    autostartLink = virDomainConfigFile(driver->autostartDir,
3384 3385 3386
                                        vm->def->name);
    if (autostartLink == NULL)
        goto cleanup;
3387

3388
    if (autostart) {
3389 3390
        if (virFileMakePath(driver->autostartDir) < 0) {
            virReportSystemError(errno,
3391 3392 3393
                                 _("Cannot create autostart directory %s"),
                                 driver->autostartDir);
            goto cleanup;
3394 3395
        }

3396
        if (symlink(configFile, autostartLink) < 0) {
3397
            virReportSystemError(errno,
3398 3399 3400 3401 3402 3403
                                 _("Failed to create symlink '%s to '%s'"),
                                 autostartLink, configFile);
            goto cleanup;
        }
    } else {
        if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
3404
            virReportSystemError(errno,
3405 3406 3407 3408
                                 _("Failed to delete symlink '%s'"),
                                 autostartLink);
            goto cleanup;
        }
3409
    }
3410 3411

    vm->autostart = autostart;
3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422
    ret = 0;

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

R
Ryota Ozaki 已提交
3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433
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 &&
3434
          virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
R
Ryota Ozaki 已提交
3435 3436
        return -1;

3437 3438
    /* From here on, we know that cgroup != NULL.  */

R
Ryota Ozaki 已提交
3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459
    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)
3460
            VIR_DEBUG("Writing freezer.state gets EBUSY");
R
Ryota Ozaki 已提交
3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499

        /*
         * 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);
    }
3500
    VIR_DEBUG("lxcFreezeContainer timeout");
R
Ryota Ozaki 已提交
3501 3502 3503 3504 3505 3506 3507 3508 3509 3510
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:
3511
    virCgroupFree(&cgroup);
R
Ryota Ozaki 已提交
3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528
    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);
3529
        lxcError(VIR_ERR_NO_DOMAIN,
3530
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
3531 3532 3533
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
3534
    if (!virDomainObjIsActive(vm)) {
3535
        lxcError(VIR_ERR_OPERATION_INVALID,
3536
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
3537 3538 3539
        goto cleanup;
    }

J
Jiri Denemark 已提交
3540
    if (virDomainObjGetState(vm, NULL) != VIR_DOMAIN_PAUSED) {
R
Ryota Ozaki 已提交
3541
        if (lxcFreezeContainer(driver, vm) < 0) {
3542
            lxcError(VIR_ERR_OPERATION_FAILED,
3543
                     "%s", _("Suspend operation failed"));
R
Ryota Ozaki 已提交
3544 3545
            goto cleanup;
        }
J
Jiri Denemark 已提交
3546
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
R
Ryota Ozaki 已提交
3547 3548 3549 3550 3551 3552

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

3553
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593
        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);
3594
        lxcError(VIR_ERR_NO_DOMAIN,
3595
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
3596 3597 3598
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
3599
    if (!virDomainObjIsActive(vm)) {
3600
        lxcError(VIR_ERR_OPERATION_INVALID,
3601
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
3602 3603 3604
        goto cleanup;
    }

J
Jiri Denemark 已提交
3605
    if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED) {
R
Ryota Ozaki 已提交
3606
        if (lxcUnfreezeContainer(driver, vm) < 0) {
3607
            lxcError(VIR_ERR_OPERATION_FAILED,
3608
                     "%s", _("Resume operation failed"));
R
Ryota Ozaki 已提交
3609 3610
            goto cleanup;
        }
J
Jiri Denemark 已提交
3611 3612
        virDomainObjSetState(vm, VIR_DOMAIN_RUNNING,
                             VIR_DOMAIN_RUNNING_UNPAUSED);
R
Ryota Ozaki 已提交
3613 3614 3615 3616 3617 3618

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

3619
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631
        goto cleanup;
    ret = 0;

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

3632 3633
static int
lxcDomainOpenConsole(virDomainPtr dom,
3634
                      const char *dev_name,
3635 3636 3637 3638 3639 3640 3641 3642
                      virStreamPtr st,
                      unsigned int flags)
{
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm = NULL;
    char uuidstr[VIR_UUID_STRING_BUFLEN];
    int ret = -1;
    virDomainChrDefPtr chr = NULL;
3643
    size_t i;
3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661

    virCheckFlags(0, -1);

    lxcDriverLock(driver);
    virUUIDFormat(dom->uuid, uuidstr);
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
    if (!vm) {
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("domain is not running"));
        goto cleanup;
    }

3662
    if (dev_name) {
3663 3664 3665 3666 3667 3668 3669
        for (i = 0 ; i < vm->def->nconsoles ; i++) {
            if (vm->def->consoles[i]->info.alias &&
                STREQ(vm->def->consoles[i]->info.alias, dev_name)) {
                chr = vm->def->consoles[i];
                break;
            }
        }
3670
    } else {
3671 3672
        if (vm->def->nconsoles)
            chr = vm->def->consoles[0];
3673 3674 3675 3676 3677
        else if (vm->def->nserials)
            chr = vm->def->serials[0];
    }

    if (!chr) {
3678 3679 3680
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("cannot find console device '%s'"),
                 dev_name ? dev_name : _("default"));
3681 3682 3683
        goto cleanup;
    }

3684
    if (chr->source.type != VIR_DOMAIN_CHR_TYPE_PTY) {
3685
        lxcError(VIR_ERR_INTERNAL_ERROR,
3686
                 _("character device %s is not using a PTY"), dev_name);
3687 3688 3689
        goto cleanup;
    }

3690
    if (virFDStreamOpenFile(st, chr->source.data.file.path,
E
Eric Blake 已提交
3691
                            0, 0, O_RDWR) < 0)
3692 3693 3694 3695 3696 3697 3698 3699 3700 3701
        goto cleanup;

    ret = 0;
cleanup:
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}

3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728
static int
lxcVMFilterRebuild(virConnectPtr conn ATTRIBUTE_UNUSED,
                   virHashIterator iter, void *data)
{
    virHashForEach(lxc_driver->domains.objs, iter, data);

    return 0;
}

static void
lxcVMDriverLock(void)
{
    lxcDriverLock(lxc_driver);
}

static void
lxcVMDriverUnlock(void)
{
    lxcDriverUnlock(lxc_driver);
}

static virNWFilterCallbackDriver lxcCallbackDriver = {
    .name = "LXC",
    .vmFilterRebuild = lxcVMFilterRebuild,
    .vmDriverLock = lxcVMDriverLock,
    .vmDriverUnlock = lxcVMDriverUnlock,
};
R
Ryota Ozaki 已提交
3729

D
Daniel Veillard 已提交
3730 3731
/* Function Tables */
static virDriver lxcDriver = {
3732 3733
    .no = VIR_DRV_LXC,
    .name = "LXC",
3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748
    .open = lxcOpen, /* 0.4.2 */
    .close = lxcClose, /* 0.4.2 */
    .version = lxcVersion, /* 0.4.6 */
    .getHostname = virGetHostname, /* 0.6.3 */
    .nodeGetInfo = nodeGetInfo, /* 0.6.5 */
    .getCapabilities = lxcGetCapabilities, /* 0.6.5 */
    .listDomains = lxcListDomains, /* 0.4.2 */
    .numOfDomains = lxcNumDomains, /* 0.4.2 */
    .domainCreateXML = lxcDomainCreateAndStart, /* 0.4.4 */
    .domainLookupByID = lxcDomainLookupByID, /* 0.4.2 */
    .domainLookupByUUID = lxcDomainLookupByUUID, /* 0.4.2 */
    .domainLookupByName = lxcDomainLookupByName, /* 0.4.2 */
    .domainSuspend = lxcDomainSuspend, /* 0.7.2 */
    .domainResume = lxcDomainResume, /* 0.7.2 */
    .domainDestroy = lxcDomainDestroy, /* 0.4.4 */
3749
    .domainDestroyFlags = lxcDomainDestroyFlags, /* 0.9.4 */
3750 3751 3752 3753 3754 3755
    .domainGetOSType = lxcGetOSType, /* 0.4.2 */
    .domainGetMaxMemory = lxcDomainGetMaxMemory, /* 0.7.2 */
    .domainSetMaxMemory = lxcDomainSetMaxMemory, /* 0.7.2 */
    .domainSetMemory = lxcDomainSetMemory, /* 0.7.2 */
    .domainSetMemoryParameters = lxcDomainSetMemoryParameters, /* 0.8.5 */
    .domainGetMemoryParameters = lxcDomainGetMemoryParameters, /* 0.8.5 */
3756 3757
    .domainSetBlkioParameters = lxcDomainSetBlkioParameters, /* 0.9.8 */
    .domainGetBlkioParameters = lxcDomainGetBlkioParameters, /* 0.9.8 */
3758 3759 3760 3761 3762 3763 3764 3765 3766
    .domainGetInfo = lxcDomainGetInfo, /* 0.4.2 */
    .domainGetState = lxcDomainGetState, /* 0.9.2 */
    .domainGetXMLDesc = lxcDomainGetXMLDesc, /* 0.4.2 */
    .listDefinedDomains = lxcListDefinedDomains, /* 0.4.2 */
    .numOfDefinedDomains = lxcNumDefinedDomains, /* 0.4.2 */
    .domainCreate = lxcDomainStart, /* 0.4.4 */
    .domainCreateWithFlags = lxcDomainStartWithFlags, /* 0.8.2 */
    .domainDefineXML = lxcDomainDefine, /* 0.4.2 */
    .domainUndefine = lxcDomainUndefine, /* 0.4.2 */
3767
    .domainUndefineFlags = lxcDomainUndefineFlags, /* 0.9.4 */
3768 3769 3770 3771
    .domainGetAutostart = lxcDomainGetAutostart, /* 0.7.0 */
    .domainSetAutostart = lxcDomainSetAutostart, /* 0.7.0 */
    .domainGetSchedulerType = lxcGetSchedulerType, /* 0.5.0 */
    .domainGetSchedulerParameters = lxcGetSchedulerParameters, /* 0.5.0 */
3772
    .domainGetSchedulerParametersFlags = lxcGetSchedulerParametersFlags, /* 0.9.2 */
3773
    .domainSetSchedulerParameters = lxcSetSchedulerParameters, /* 0.5.0 */
3774
    .domainSetSchedulerParametersFlags = lxcSetSchedulerParametersFlags, /* 0.9.2 */
3775
    .domainInterfaceStats = lxcDomainInterfaceStats, /* 0.7.3 */
3776
    .nodeGetCPUStats = nodeGetCPUStats, /* 0.9.3 */
3777
    .nodeGetMemoryStats = nodeGetMemoryStats, /* 0.9.3 */
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789
    .nodeGetCellsFreeMemory = nodeGetCellsFreeMemory, /* 0.6.5 */
    .nodeGetFreeMemory = nodeGetFreeMemory, /* 0.6.5 */
    .domainEventRegister = lxcDomainEventRegister, /* 0.7.0 */
    .domainEventDeregister = lxcDomainEventDeregister, /* 0.7.0 */
    .isEncrypted = lxcIsEncrypted, /* 0.7.3 */
    .isSecure = lxcIsSecure, /* 0.7.3 */
    .domainIsActive = lxcDomainIsActive, /* 0.7.3 */
    .domainIsPersistent = lxcDomainIsPersistent, /* 0.7.3 */
    .domainIsUpdated = lxcDomainIsUpdated, /* 0.8.6 */
    .domainEventRegisterAny = lxcDomainEventRegisterAny, /* 0.8.0 */
    .domainEventDeregisterAny = lxcDomainEventDeregisterAny, /* 0.8.0 */
    .domainOpenConsole = lxcDomainOpenConsole, /* 0.8.6 */
3790
    .isAlive = lxcIsAlive, /* 0.9.8 */
3791
    .nodeSuspendForDuration = nodeSuspendForDuration, /* 0.9.8 */
D
Daniel Veillard 已提交
3792 3793
};

3794
static virStateDriver lxcStateDriver = {
3795
    .name = "LXC",
3796 3797 3798
    .initialize = lxcStartup,
    .cleanup = lxcShutdown,
    .active = lxcActive,
3799
    .reload = lxcReload,
3800 3801
};

D
Daniel Veillard 已提交
3802 3803 3804
int lxcRegister(void)
{
    virRegisterDriver(&lxcDriver);
3805
    virRegisterStateDriver(&lxcStateDriver);
3806
    virNWFilterRegisterCallbackDriver(&lxcCallbackDriver);
D
Daniel Veillard 已提交
3807 3808
    return 0;
}