lxc_driver.c 114.9 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"
43
#include "lxc_domain.h"
D
Daniel Veillard 已提交
44
#include "lxc_driver.h"
45
#include "memory.h"
46
#include "util.h"
47
#include "virnetdevbridge.h"
48
#include "virnetdevveth.h"
49
#include "nodeinfo.h"
50
#include "uuid.h"
51
#include "stats_linux.h"
52
#include "hooks.h"
E
Eric Blake 已提交
53
#include "virfile.h"
54
#include "virpidfile.h"
55
#include "fdstream.h"
56
#include "domain_audit.h"
57
#include "domain_nwfilter.h"
58
#include "network/bridge_driver.h"
59
#include "virnetdev.h"
A
Ansis Atteka 已提交
60
#include "virnetdevtap.h"
61
#include "virnodesuspend.h"
62
#include "virtime.h"
63
#include "virtypedparam.h"
M
Martin Kletzander 已提交
64
#include "viruri.h"
65
#include "virdomainlist.h"
D
Daniel Veillard 已提交
66

67 68
#define VIR_FROM_THIS VIR_FROM_LXC

69 70
#define START_POSTFIX ": starting up\n"

71 72
#define LXC_NB_MEM_PARAM  3

73
static int lxcStartup(int privileged);
74
static int lxcShutdown(void);
75
static lxc_driver_t *lxc_driver = NULL;
D
Daniel Veillard 已提交
76 77 78

/* Functions */

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

88 89 90
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                virDomainEventPtr event);

91 92 93 94 95 96 97 98 99 100 101 102 103
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);

104

D
Daniel Veillard 已提交
105 106
static virDrvOpenStatus lxcOpen(virConnectPtr conn,
                                virConnectAuthPtr auth ATTRIBUTE_UNUSED,
E
Eric Blake 已提交
107
                                unsigned int flags)
D
Daniel Veillard 已提交
108
{
E
Eric Blake 已提交
109 110
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

D
Daniel Veillard 已提交
111
    /* Verify uri was specified */
112
    if (conn->uri == NULL) {
113 114
        if (lxc_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
115

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

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

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

    return VIR_DRV_OPEN_SUCCESS;
}

static int lxcClose(virConnectPtr conn)
{
151 152 153
    lxc_driver_t *driver = conn->privateData;

    lxcDriverLock(driver);
154
    lxcProcessAutoDestroyRun(driver, conn);
155 156
    lxcDriverUnlock(driver);

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

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175

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


176 177 178 179 180 181
static int lxcIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return 1;
}


182 183 184 185 186 187
static char *lxcGetCapabilities(virConnectPtr conn) {
    lxc_driver_t *driver = conn->privateData;
    char *xml;

    lxcDriverLock(driver);
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
188
        virReportOOMError();
189 190 191 192 193 194
    lxcDriverUnlock(driver);

    return xml;
}


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

202
    lxcDriverLock(driver);
203
    vm = virDomainFindByID(&driver->domains, id);
204 205
    lxcDriverUnlock(driver);

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

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
213
    if (dom)
D
Daniel Veillard 已提交
214 215
        dom->id = vm->def->id;

216
cleanup:
217 218
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
219 220 221 222 223 224
    return dom;
}

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

229
    lxcDriverLock(driver);
230
    vm = virDomainFindByUUID(&driver->domains, uuid);
231 232
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
233
    if (!vm) {
234 235 236 237
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
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 lxcDomainLookupByName(virConnectPtr conn,
                                          const char *name)
{
254 255 256
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
257

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

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
268
    if (dom)
D
Daniel Veillard 已提交
269 270
        dom->id = vm->def->id;

271
cleanup:
272 273
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
274 275 276
    return dom;
}

277 278 279 280 281 282 283 284 285 286 287

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

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

327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
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;
}
350

351
static int lxcListDomains(virConnectPtr conn, int *ids, int nids) {
352
    lxc_driver_t *driver = conn->privateData;
353
    int n;
354

355
    lxcDriverLock(driver);
356
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
357
    lxcDriverUnlock(driver);
358

359
    return n;
D
Daniel Veillard 已提交
360
}
361

362
static int lxcNumDomains(virConnectPtr conn) {
363
    lxc_driver_t *driver = conn->privateData;
364
    int n;
365

366
    lxcDriverLock(driver);
367
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
368
    lxcDriverUnlock(driver);
369

370
    return n;
D
Daniel Veillard 已提交
371 372 373
}

static int lxcListDefinedDomains(virConnectPtr conn,
374
                                 char **const names, int nnames) {
375
    lxc_driver_t *driver = conn->privateData;
376
    int n;
377

378
    lxcDriverLock(driver);
379
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
380
    lxcDriverUnlock(driver);
381

382
    return n;
D
Daniel Veillard 已提交
383 384 385
}


386
static int lxcNumDefinedDomains(virConnectPtr conn) {
387
    lxc_driver_t *driver = conn->privateData;
388
    int n;
389

390
    lxcDriverLock(driver);
391
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
392
    lxcDriverUnlock(driver);
393

394
    return n;
D
Daniel Veillard 已提交
395 396
}

397 398


D
Daniel Veillard 已提交
399 400
static virDomainPtr lxcDomainDefine(virConnectPtr conn, const char *xml)
{
401 402
    lxc_driver_t *driver = conn->privateData;
    virDomainDefPtr def = NULL;
403
    virDomainObjPtr vm = NULL;
404
    virDomainPtr dom = NULL;
405
    virDomainEventPtr event = NULL;
406
    int dupVM;
D
Daniel Veillard 已提交
407

408
    lxcDriverLock(driver);
409
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
410
                                        1 << VIR_DOMAIN_VIRT_LXC,
411
                                        VIR_DOMAIN_XML_INACTIVE)))
412
        goto cleanup;
D
Daniel Veillard 已提交
413

414 415 416
    if (virSecurityManagerVerify(driver->securityManager, def) < 0)
        goto cleanup;

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

420
    if ((def->nets != NULL) && !(driver->have_netns)) {
421
        lxcError(VIR_ERR_OPERATION_INVALID,
J
Jim Meyering 已提交
422
                 "%s", _("System lacks NETNS support"));
423
        goto cleanup;
424 425
    }

426
    if (!(vm = virDomainAssignDef(driver->caps,
427
                                  &driver->domains, def, false)))
428 429
        goto cleanup;
    def = NULL;
430
    vm->persistent = 1;
D
Daniel Veillard 已提交
431

432
    if (virDomainSaveConfig(driver->configDir,
433
                            vm->newDef ? vm->newDef : vm->def) < 0) {
434
        virDomainRemoveInactive(&driver->domains, vm);
435
        vm = NULL;
436
        goto cleanup;
D
Daniel Veillard 已提交
437 438
    }

439 440
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_DEFINED,
441
                                     !dupVM ?
442 443 444
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                     VIR_DOMAIN_EVENT_DEFINED_UPDATED);

D
Daniel Veillard 已提交
445
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
446
    if (dom)
D
Daniel Veillard 已提交
447 448
        dom->id = vm->def->id;

449 450
cleanup:
    virDomainDefFree(def);
451 452
    if (vm)
        virDomainObjUnlock(vm);
453 454
    if (event)
        lxcDomainEventQueue(driver, event);
455
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
456 457 458
    return dom;
}

459 460
static int lxcDomainUndefineFlags(virDomainPtr dom,
                                  unsigned int flags)
D
Daniel Veillard 已提交
461
{
462 463
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
464
    virDomainEventPtr event = NULL;
465
    int ret = -1;
D
Daniel Veillard 已提交
466

467 468
    virCheckFlags(0, -1);

469
    lxcDriverLock(driver);
470
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
D
Daniel Veillard 已提交
471
    if (!vm) {
472 473 474 475
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
476
        goto cleanup;
D
Daniel Veillard 已提交
477 478
    }

479
    if (!vm->persistent) {
480
        lxcError(VIR_ERR_OPERATION_INVALID,
481
                 "%s", _("Cannot undefine transient domain"));
482
        goto cleanup;
483
    }
D
Daniel Veillard 已提交
484

485
    if (virDomainDeleteConfig(driver->configDir,
486
                              driver->autostartDir,
487 488
                              vm) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
489

490 491 492 493
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

494 495 496 497 498 499 500
    if (virDomainObjIsActive(vm)) {
        vm->persistent = 0;
    } else {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }

501
    ret = 0;
D
Daniel Veillard 已提交
502

503
cleanup:
504 505
    if (vm)
        virDomainObjUnlock(vm);
506 507
    if (event)
        lxcDomainEventQueue(driver, event);
508
    lxcDriverUnlock(driver);
509
    return ret;
D
Daniel Veillard 已提交
510 511
}

512 513 514 515 516
static int lxcDomainUndefine(virDomainPtr dom)
{
    return lxcDomainUndefineFlags(dom, 0);
}

D
Daniel Veillard 已提交
517 518 519
static int lxcDomainGetInfo(virDomainPtr dom,
                            virDomainInfoPtr info)
{
520 521
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
522
    virCgroupPtr cgroup = NULL;
523
    int ret = -1, rc;
D
Daniel Veillard 已提交
524

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

D
Daniel Veillard 已提交
528
    if (!vm) {
529 530 531 532
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
533
        goto cleanup;
D
Daniel Veillard 已提交
534 535
    }

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

D
Daniel P. Berrange 已提交
538
    if (!virDomainObjIsActive(vm) || driver->cgroup == NULL) {
D
Daniel Veillard 已提交
539
        info->cpuTime = 0;
540
        info->memory = vm->def->mem.cur_balloon;
D
Daniel Veillard 已提交
541
    } else {
542
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
543
            lxcError(VIR_ERR_INTERNAL_ERROR,
544
                     _("Unable to get cgroup for %s"), vm->def->name);
545 546 547 548
            goto cleanup;
        }

        if (virCgroupGetCpuacctUsage(cgroup, &(info->cpuTime)) < 0) {
549
            lxcError(VIR_ERR_OPERATION_FAILED,
550
                     "%s", _("Cannot read cputime for domain"));
R
Ryota Ozaki 已提交
551 552
            goto cleanup;
        }
553
        if ((rc = virCgroupGetMemoryUsage(cgroup, &(info->memory))) < 0) {
554
            lxcError(VIR_ERR_OPERATION_FAILED,
555
                     "%s", _("Cannot read memory usage for domain"));
556 557 558 559 560 561
            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;
562
        }
D
Daniel Veillard 已提交
563 564
    }

565
    info->maxMem = vm->def->mem.max_balloon;
566
    info->nrVirtCpu = vm->def->vcpus;
567
    ret = 0;
D
Daniel Veillard 已提交
568

569
cleanup:
570
    lxcDriverUnlock(driver);
571 572
    if (cgroup)
        virCgroupFree(&cgroup);
573 574
    if (vm)
        virDomainObjUnlock(vm);
575
    return ret;
D
Daniel Veillard 已提交
576 577
}

578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
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 已提交
602
    *state = virDomainObjGetState(vm, reason);
603 604 605 606 607 608 609 610
    ret = 0;

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

611
static char *lxcGetOSType(virDomainPtr dom)
D
Daniel Veillard 已提交
612
{
613 614 615
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
616

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

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

629 630
    ret = strdup(vm->def->os.type);

631
    if (ret == NULL)
632
        virReportOOMError();
633

634
cleanup:
635 636
    if (vm)
        virDomainObjUnlock(vm);
637
    return ret;
D
Daniel Veillard 已提交
638 639
}

R
Ryota Ozaki 已提交
640
/* Returns max memory in kb, 0 if error */
641 642 643
static unsigned long long
lxcDomainGetMaxMemory(virDomainPtr dom)
{
R
Ryota Ozaki 已提交
644 645
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
646
    unsigned long long ret = 0;
R
Ryota Ozaki 已提交
647 648 649 650 651 652 653 654

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

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
655
        lxcError(VIR_ERR_NO_DOMAIN,
656
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
657 658 659
        goto cleanup;
    }

660
    ret = vm->def->mem.max_balloon;
R
Ryota Ozaki 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679

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);
680
        lxcError(VIR_ERR_NO_DOMAIN,
681
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
682 683 684
        goto cleanup;
    }

685
    if (newmax < vm->def->mem.cur_balloon) {
686
        lxcError(VIR_ERR_INVALID_ARG,
687
                         "%s", _("Cannot set max memory lower than current memory"));
R
Ryota Ozaki 已提交
688 689 690
        goto cleanup;
    }

691
    vm->def->mem.max_balloon = newmax;
R
Ryota Ozaki 已提交
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
    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);
712
        lxcError(VIR_ERR_NO_DOMAIN,
713
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
714 715 716
        goto cleanup;
    }

717
    if (newmem > vm->def->mem.max_balloon) {
718
        lxcError(VIR_ERR_INVALID_ARG,
719
                 "%s", _("Cannot set memory higher than max memory"));
R
Ryota Ozaki 已提交
720 721 722
        goto cleanup;
    }

723 724 725 726 727
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }
728

729
    if (driver->cgroup == NULL) {
730
        lxcError(VIR_ERR_OPERATION_INVALID,
731 732 733
                 "%s", _("cgroups must be configured on the host"));
        goto cleanup;
    }
R
Ryota Ozaki 已提交
734

735 736 737 738
    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 已提交
739
    }
740 741 742 743 744 745 746

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

R
Ryota Ozaki 已提交
747 748 749 750 751 752 753 754 755 756
    ret = 0;

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

757 758 759 760 761
static int
lxcDomainSetMemoryParameters(virDomainPtr dom,
                             virTypedParameterPtr params,
                             int nparams,
                             unsigned int flags)
762 763 764 765 766 767
{
    lxc_driver_t *driver = dom->conn->privateData;
    int i;
    virCgroupPtr cgroup = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;
768
    int rc;
769

E
Eric Blake 已提交
770
    virCheckFlags(0, -1);
771 772 773 774 775 776 777 778 779
    if (virTypedParameterArrayValidate(params, nparams,
                                       VIR_DOMAIN_MEMORY_HARD_LIMIT,
                                       VIR_TYPED_PARAM_ULLONG,
                                       VIR_DOMAIN_MEMORY_SOFT_LIMIT,
                                       VIR_TYPED_PARAM_ULLONG,
                                       VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT,
                                       VIR_TYPED_PARAM_ULLONG,
                                       NULL) < 0)
        return -1;
E
Eric Blake 已提交
780

781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
    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++) {
800
        virTypedParameterPtr param = &params[i];
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815

        if (STREQ(param->field, VIR_DOMAIN_MEMORY_HARD_LIMIT)) {
            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)) {
            rc = virCgroupSetMemorySoftLimit(cgroup, params[i].value.ul);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to set memory soft_limit tunable"));
                ret = -1;
            }
816
        } else if (STREQ(param->field, VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT)) {
817
            rc = virCgroupSetMemSwapHardLimit(cgroup, params[i].value.ul);
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to set swap_hard_limit tunable"));
                ret = -1;
            }
        }
    }

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

835 836 837 838 839
static int
lxcDomainGetMemoryParameters(virDomainPtr dom,
                             virTypedParameterPtr params,
                             int *nparams,
                             unsigned int flags)
840 841 842 843 844
{
    lxc_driver_t *driver = dom->conn->privateData;
    int i;
    virCgroupPtr cgroup = NULL;
    virDomainObjPtr vm = NULL;
845
    unsigned long long val;
846 847 848
    int ret = -1;
    int rc;

E
Eric Blake 已提交
849 850
    virCheckFlags(0, -1);

851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
    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;
    }

875
    for (i = 0; i < LXC_NB_MEM_PARAM && i < *nparams; i++) {
876
        virTypedParameterPtr param = &params[i];
877 878 879 880 881 882 883 884
        val = 0;

        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"));
885
                goto cleanup;
886
            }
887 888
            if (virTypedParameterAssign(param, VIR_DOMAIN_MEMORY_HARD_LIMIT,
                                        VIR_TYPED_PARAM_ULLONG, val) < 0)
889
                goto cleanup;
890 891 892 893 894 895
            break;
        case 1: /* fill memory soft limit here */
            rc = virCgroupGetMemorySoftLimit(cgroup, &val);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to get memory soft limit"));
896
                goto cleanup;
897
            }
898 899
            if (virTypedParameterAssign(param, VIR_DOMAIN_MEMORY_SOFT_LIMIT,
                                        VIR_TYPED_PARAM_ULLONG, val) < 0)
900
                goto cleanup;
901 902
            break;
        case 2: /* fill swap hard limit here */
903
            rc = virCgroupGetMemSwapHardLimit(cgroup, &val);
904 905 906
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to get swap hard limit"));
907
                goto cleanup;
908
            }
909 910 911
            if (virTypedParameterAssign(param,
                                        VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT,
                                        VIR_TYPED_PARAM_ULLONG, val) < 0)
912
                goto cleanup;
913 914 915 916 917 918 919 920
            break;

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

921 922
    if (*nparams > LXC_NB_MEM_PARAM)
        *nparams = LXC_NB_MEM_PARAM;
923 924
    ret = 0;

925 926 927 928 929 930 931 932 933
cleanup:
    if (cgroup)
        virCgroupFree(&cgroup);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}

934
static char *lxcDomainGetXMLDesc(virDomainPtr dom,
935
                                 unsigned int flags)
D
Daniel Veillard 已提交
936
{
937 938 939
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
D
Daniel Veillard 已提交
940

941 942
    /* Flags checked by virDomainDefFormat */

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

D
Daniel Veillard 已提交
947
    if (!vm) {
948 949 950 951
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
952
        goto cleanup;
D
Daniel Veillard 已提交
953 954
    }

955
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) &&
956 957 958 959
                             vm->newDef ? vm->newDef : vm->def,
                             flags);

cleanup:
960 961
    if (vm)
        virDomainObjUnlock(vm);
962
    return ret;
D
Daniel Veillard 已提交
963 964
}

965

966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 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
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;
}


1064 1065
/**
 * lxcVmCleanup:
1066 1067
 * @driver: pointer to driver structure
 * @vm: pointer to VM to clean up
J
Jiri Denemark 已提交
1068
 * @reason: reason for switching the VM to shutoff state
1069
 *
1070
 * Cleanout resources associated with the now dead VM
1071 1072
 *
 */
1073
static void lxcVmCleanup(lxc_driver_t *driver,
J
Jiri Denemark 已提交
1074 1075
                         virDomainObjPtr vm,
                         virDomainShutoffReason reason)
1076
{
D
Dan Smith 已提交
1077
    virCgroupPtr cgroup;
1078
    int i;
1079
    lxcDomainObjPrivatePtr priv = vm->privateData;
A
Ansis Atteka 已提交
1080
    virNetDevVPortProfilePtr vport = NULL;
1081

1082 1083 1084 1085 1086 1087
    /* 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,
1088 1089
                    VIR_HOOK_LXC_OP_STOPPED, VIR_HOOK_SUBOP_END,
                    NULL, xml, NULL);
1090 1091 1092
        VIR_FREE(xml);
    }

1093 1094 1095
    /* Stop autodestroy in case guest is restarted */
    lxcProcessAutoDestroyRemove(driver, vm);

1096
    virEventRemoveHandle(priv->monitorWatch);
1097
    VIR_FORCE_CLOSE(priv->monitor);
1098

1099
    virPidFileDelete(driver->stateDir, vm->def->name);
1100
    virDomainDeleteConfig(driver->stateDir, NULL, vm);
1101

J
Jiri Denemark 已提交
1102
    virDomainObjSetState(vm, VIR_DOMAIN_SHUTOFF, reason);
1103 1104
    vm->pid = -1;
    vm->def->id = -1;
1105 1106
    priv->monitor = -1;
    priv->monitorWatch = -1;
1107

1108
    for (i = 0 ; i < vm->def->nnets ; i++) {
A
Ansis Atteka 已提交
1109 1110 1111 1112 1113 1114 1115 1116 1117
        virDomainNetDefPtr iface = vm->def->nets[i];
        vport = virDomainNetGetActualVirtPortProfile(iface);
        ignore_value(virNetDevSetOnline(iface->ifname, false));
        if (vport && vport->virtPortType == VIR_NETDEV_VPORT_PROFILE_OPENVSWITCH)
            ignore_value(virNetDevOpenvswitchRemovePort(
                            virDomainNetGetActualBridgeName(iface),
                            iface->ifname));
        ignore_value(virNetDevVethDelete(iface->ifname));
        networkReleaseActualDevice(iface);
1118 1119
    }

1120 1121
    virDomainConfVMNWFilterTeardown(vm);

1122 1123
    if (driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0) {
D
Dan Smith 已提交
1124 1125 1126 1127
        virCgroupRemove(cgroup);
        virCgroupFree(&cgroup);
    }

1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
    /* 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_RELEASE, VIR_HOOK_SUBOP_END,
                    NULL, xml, NULL);
        VIR_FREE(xml);
    }

1139 1140 1141 1142 1143 1144
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }
1145 1146
}

1147 1148

static int lxcSetupInterfaceBridged(virConnectPtr conn,
1149
                                    virDomainDefPtr vm,
1150 1151 1152 1153 1154 1155 1156 1157
                                    virDomainNetDefPtr net,
                                    const char *brname,
                                    unsigned int *nveths,
                                    char ***veths)
{
    int ret = -1;
    char *parentVeth;
    char *containerVeth = NULL;
A
Ansis Atteka 已提交
1158
    const virNetDevVPortProfilePtr vport = virDomainNetGetActualVirtPortProfile(net);
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176

    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)++;

1177
    if (virNetDevSetMAC(containerVeth, &net->mac) < 0)
1178 1179
        goto cleanup;

A
Ansis Atteka 已提交
1180
    if (vport && vport->virtPortType == VIR_NETDEV_VPORT_PROFILE_OPENVSWITCH)
1181
        ret = virNetDevOpenvswitchAddPort(brname, parentVeth, &net->mac,
1182
                                          vm->uuid, vport);
A
Ansis Atteka 已提交
1183 1184 1185
    else
        ret = virNetDevBridgeAddPort(brname, parentVeth);
    if (ret < 0)
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
        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 &&
1200
        virDomainConfNWFilterInstantiate(conn, vm->uuid, net) < 0)
1201 1202 1203 1204 1205 1206 1207 1208
        goto cleanup;

    ret = 0;

cleanup:
    return ret;
}

1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240

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.
     */
1241
    prof = virDomainNetGetActualVirtPortProfile(net);
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
    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(
1255
            net->ifname, &net->mac,
1256 1257 1258
            virDomainNetGetActualDirectDev(net),
            virDomainNetGetActualDirectMode(net),
            false, false, def->uuid,
1259
            virDomainNetGetActualVirtPortProfile(net),
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
            &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;
}


1276 1277
/**
 * lxcSetupInterfaces:
1278
 * @conn: pointer to connection
1279
 * @def: pointer to virtual machine structure
1280 1281
 * @nveths: number of interfaces
 * @veths: interface names
1282 1283 1284 1285 1286 1287 1288 1289
 *
 * 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,
1290
                              virDomainDefPtr def,
1291 1292
                              unsigned int *nveths,
                              char ***veths)
1293
{
1294 1295
    int ret = -1;
    size_t i;
1296

1297
    for (i = 0 ; i < def->nnets ; i++) {
1298 1299 1300 1301 1302
        /* 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)
1303
            goto cleanup;
1304 1305

        switch (virDomainNetGetActualType(def->nets[i])) {
1306
        case VIR_DOMAIN_NET_TYPE_NETWORK: {
1307
            virNetworkPtr network;
1308
            char *brname = NULL;
1309

1310 1311 1312
            if (!(network = virNetworkLookupByName(conn,
                                                   def->nets[i]->data.network.name)))
                goto cleanup;
1313

1314
            brname = virNetworkGetBridgeName(network);
1315
            virNetworkFree(network);
1316 1317 1318 1319
            if (!brname)
                goto cleanup;

            if (lxcSetupInterfaceBridged(conn,
1320
                                         def,
1321 1322 1323 1324 1325 1326 1327 1328
                                         def->nets[i],
                                         brname,
                                         nveths,
                                         veths) < 0) {
                VIR_FREE(brname);
                goto cleanup;
            }
            VIR_FREE(brname);
1329 1330
            break;
        }
1331 1332 1333 1334 1335 1336 1337 1338
        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,
1339
                                         def,
1340 1341 1342 1343 1344 1345
                                         def->nets[i],
                                         brname,
                                         nveths,
                                         veths) < 0)
                goto cleanup;
        }   break;
S
Stefan Berger 已提交
1346

1347 1348 1349 1350 1351 1352 1353 1354 1355
        case VIR_DOMAIN_NET_TYPE_DIRECT:
            if (lxcSetupInterfaceDirect(conn,
                                        def,
                                        def->nets[i],
                                        nveths,
                                        veths) < 0)
                goto cleanup;
            break;

S
Stefan Berger 已提交
1356 1357 1358 1359 1360 1361 1362
        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:
1363
            lxcError(VIR_ERR_INTERNAL_ERROR,
1364 1365 1366 1367 1368
                     _("Unsupported network type %s"),
                     virDomainNetTypeToString(
                         virDomainNetGetActualType(def->nets[i])
                         ));
            goto cleanup;
1369
        }
1370 1371
    }

1372
    ret= 0;
1373

1374 1375
cleanup:
    if (ret != 0) {
A
Ansis Atteka 已提交
1376 1377 1378 1379 1380 1381 1382 1383 1384
        for (i = 0 ; i < def->nnets ; i++) {
            virDomainNetDefPtr iface = def->nets[i];
            virNetDevVPortProfilePtr vport = virDomainNetGetActualVirtPortProfile(iface);
            if (vport && vport->virtPortType == VIR_NETDEV_VPORT_PROFILE_OPENVSWITCH)
                ignore_value(virNetDevOpenvswitchRemovePort(
                                virDomainNetGetActualBridgeName(iface),
                                iface->ifname));
            networkReleaseActualDevice(iface);
        }
1385
    }
1386
    return ret;
1387 1388
}

1389

1390
static int lxcMonitorClient(lxc_driver_t * driver,
1391
                            virDomainObjPtr vm)
1392
{
1393
    char *sockpath = NULL;
S
Stefan Berger 已提交
1394
    int fd = -1;
1395
    struct sockaddr_un addr;
1396

1397 1398
    if (virAsprintf(&sockpath, "%s/%s.sock",
                    driver->stateDir, vm->def->name) < 0) {
1399
        virReportOOMError();
1400 1401 1402
        return -1;
    }

1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
    if (virSecurityManagerSetSocketLabel(driver->securityManager, vm->def) < 0) {
        VIR_ERROR(_("Failed to set security context for monitor for %s"),
                  vm->def->name);
        goto error;
    }

    fd = socket(PF_UNIX, SOCK_STREAM, 0);

    if (virSecurityManagerClearSocketLabel(driver->securityManager, vm->def) < 0) {
        VIR_ERROR(_("Failed to clear security context for monitor for %s"),
                  vm->def->name);
        goto error;
    }

    if (fd < 0) {
1418
        virReportSystemError(errno, "%s",
1419
                             _("Failed to create client socket"));
1420
        goto error;
1421 1422
    }

1423 1424
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
1425
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
1426
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
1427 1428 1429
                 _("Socket path %s too big for destination"), sockpath);
        goto error;
    }
1430 1431

    if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
1432
        virReportSystemError(errno, "%s",
1433
                             _("Failed to connect to client socket"));
1434
        goto error;
1435 1436
    }

1437 1438
    VIR_FREE(sockpath);
    return fd;
1439

1440 1441
error:
    VIR_FREE(sockpath);
1442
    VIR_FORCE_CLOSE(fd);
1443 1444 1445 1446
    return -1;
}


1447
static int lxcVmTerminate(lxc_driver_t *driver,
J
Jiri Denemark 已提交
1448 1449
                          virDomainObjPtr vm,
                          virDomainShutoffReason reason)
1450
{
1451 1452
    virCgroupPtr group = NULL;
    int rc;
1453

1454
    if (vm->pid <= 0) {
1455
        lxcError(VIR_ERR_INTERNAL_ERROR,
1456
                 _("Invalid PID %d for container"), vm->pid);
1457 1458 1459
        return -1;
    }

1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
    virSecurityManagerRestoreAllLabel(driver->securityManager,
                                      vm->def, false);
    virSecurityManagerReleaseLabel(driver->securityManager, vm->def);
    /* Clear out dynamically assigned labels */
    if (vm->def->seclabel.type == VIR_DOMAIN_SECLABEL_DYNAMIC) {
        VIR_FREE(vm->def->seclabel.model);
        VIR_FREE(vm->def->seclabel.label);
        VIR_FREE(vm->def->seclabel.imagelabel);
    }

1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
    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
         */
1488
    }
1489

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

1492
    rc = 0;
1493

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

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

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

1513 1514 1515
    priv = vm->privateData;

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

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

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


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

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

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

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

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

1594 1595 1596 1597 1598 1599
    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]);
    }
1600

1601 1602
    virCommandAddArgPair(cmd, "--security",
                         virSecurityManagerGetModel(driver->securityManager));
1603

1604 1605
    virCommandAddArg(cmd, "--handshake");
    virCommandAddArgFormat(cmd, "%d", handshakefd);
1606
    virCommandAddArg(cmd, "--background");
1607 1608

    for (i = 0 ; i < nveths ; i++) {
1609
        virCommandAddArgList(cmd, "--veth", veths[i], NULL);
1610 1611
    }

1612
    virCommandPreserveFD(cmd, handshakefd);
1613

1614
    return cmd;
A
Amy Griffis 已提交
1615
cleanup:
1616
    virCommandFree(cmd);
1617
    return NULL;
1618 1619
}

1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 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
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;
}
1692

1693 1694 1695 1696 1697
/**
 * lxcVmStart:
 * @conn: pointer to connection
 * @driver: pointer to driver structure
 * @vm: pointer to virtual machine structure
1698
 * @autoDestroy: mark the domain for auto destruction
J
Jiri Denemark 已提交
1699
 * @reason: reason for switching vm to running state
1700 1701 1702 1703 1704 1705 1706
 *
 * 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 已提交
1707
                      virDomainObjPtr vm,
1708
                      bool autoDestroy,
J
Jiri Denemark 已提交
1709
                      virDomainRunningReason reason)
1710
{
1711
    int rc = -1, r;
1712 1713 1714
    size_t nttyFDs = 0;
    int *ttyFDs = NULL;
    size_t i;
1715 1716 1717 1718
    char *logfile = NULL;
    int logfd = -1;
    unsigned int nveths = 0;
    char **veths = NULL;
1719
    int handshakefds[2] = { -1, -1 };
1720 1721 1722 1723
    off_t pos = -1;
    char ebuf[1024];
    char *timestamp;
    virCommandPtr cmd = NULL;
1724
    lxcDomainObjPrivatePtr priv = vm->privateData;
1725
    virErrorPtr err = NULL;
1726

1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
    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;
    }

1752 1753
    if (virFileMakePath(driver->logDir) < 0) {
        virReportSystemError(errno,
1754
                             _("Cannot create log directory '%s'"),
1755
                             driver->logDir);
1756 1757
        return -1;
    }
1758

1759 1760
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1761
        virReportOOMError();
1762
        return -1;
1763 1764
    }

1765 1766 1767 1768 1769 1770 1771 1772
    /* 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;

1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
    /* Run an early hook to set-up missing devices */
    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_PREPARE, VIR_HOOK_SUBOP_BEGIN,
                              NULL, xml, NULL);
        VIR_FREE(xml);

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

1790 1791 1792 1793 1794 1795 1796
    /* 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();
1797 1798
        goto cleanup;
    }
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816

    /* If you are using a SecurityDriver with dynamic labelling,
       then generate a security label for isolation */
    VIR_DEBUG("Generating domain security label (if required)");
    if (vm->def->seclabel.type == VIR_DOMAIN_SECLABEL_DEFAULT)
        vm->def->seclabel.type = VIR_DOMAIN_SECLABEL_NONE;

    if (virSecurityManagerGenLabel(driver->securityManager, vm->def) < 0) {
        virDomainAuditSecurityLabel(vm, false);
        goto cleanup;
    }
    virDomainAuditSecurityLabel(vm, true);

    VIR_DEBUG("Setting domain security labels");
    if (virSecurityManagerSetAllLabel(driver->securityManager,
                                      vm->def, NULL) < 0)
        goto cleanup;

1817 1818 1819 1820 1821 1822
    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) {
1823
            lxcError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1824
                     _("Only PTY console types are supported"));
1825 1826
            goto cleanup;
        }
1827 1828 1829 1830 1831

        if (virFileOpenTty(&ttyFDs[i], &ttyPath, 1) < 0) {
            virReportSystemError(errno, "%s",
                                 _("Failed to allocate tty"));
            goto cleanup;
1832
        }
1833 1834 1835

        VIR_FREE(vm->def->consoles[i]->source.data.file.path);
        vm->def->consoles[i]->source.data.file.path = ttyPath;
1836 1837 1838 1839 1840 1841

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

1844
    if (lxcSetupInterfaces(conn, vm->def, &nveths, &veths) != 0)
1845
        goto cleanup;
1846

1847
    /* Save the configuration for the controller */
1848
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
1849 1850
        goto cleanup;

1851
    if ((logfd = open(logfile, O_WRONLY | O_APPEND | O_CREAT,
1852
             S_IRUSR|S_IWUSR)) < 0) {
1853
        virReportSystemError(errno,
1854
                             _("Failed to open '%s'"),
1855
                             logfile);
1856
        goto cleanup;
1857 1858
    }

1859 1860 1861 1862 1863 1864
    if (pipe(handshakefds) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to create pipe"));
        goto cleanup;
    }

1865 1866 1867
    if (!(cmd = lxcBuildControllerCmd(driver,
                                      vm,
                                      nveths, veths,
1868
                                      ttyFDs, nttyFDs,
E
Eric Blake 已提交
1869
                                      handshakefds[1])))
1870
        goto cleanup;
E
Eric Blake 已提交
1871 1872
    virCommandSetOutputFD(cmd, &logfd);
    virCommandSetErrorFD(cmd, &logfd);
1873

1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
    /* 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, NULL);
        VIR_FREE(xml);

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

1891
    /* Log timestamp */
1892
    if ((timestamp = virTimeStringNow()) == NULL) {
1893 1894 1895 1896 1897 1898
        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",
1899
                 virStrerror(errno, ebuf, sizeof(ebuf)));
1900 1901 1902 1903 1904 1905 1906
    }
    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",
1907
                 virStrerror(errno, ebuf, sizeof(ebuf)));
1908 1909

    if (virCommandRun(cmd, NULL) < 0)
1910
        goto cleanup;
1911

1912 1913 1914 1915 1916
    if (VIR_CLOSE(handshakefds[1]) < 0) {
        virReportSystemError(errno, "%s", _("could not close handshake fd"));
        goto cleanup;
    }

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

1923
    /* And get its pid */
1924
    if ((r = virPidFileRead(driver->stateDir, vm->def->name, &vm->pid)) < 0) {
1925
        virReportSystemError(-r,
1926 1927
                             _("Failed to read pid file %s/%s.pid"),
                             driver->stateDir, vm->def->name);
1928
        goto cleanup;
1929
    }
1930

1931
    vm->def->id = vm->pid;
J
Jiri Denemark 已提交
1932
    virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, reason);
1933

1934 1935 1936 1937 1938 1939 1940 1941
    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);
        }

1942
        goto error;
1943 1944
    }

1945 1946
    if ((priv->monitorWatch = virEventAddHandle(
             priv->monitor,
1947 1948
             VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
             lxcMonitorEvent,
1949
             vm, NULL)) < 0) {
1950
        goto error;
1951
    }
1952

1953 1954
    if (autoDestroy &&
        lxcProcessAutoDestroyAdd(driver, vm, conn) < 0)
1955
        goto error;
1956

1957
    if (virDomainObjSetDefTransient(driver->caps, vm, false) < 0)
1958
        goto error;
1959

1960 1961 1962 1963 1964 1965
    /* Write domain status to disk.
     *
     * XXX: Earlier we wrote the plain "live" domain XML to this
     * location for the benefit of libvirt_lxc. We're now overwriting
     * it with the live status XML instead. This is a (currently
     * harmless) inconsistency we should fix one day */
O
Osier Yang 已提交
1966
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
1967
        goto error;
O
Osier Yang 已提交
1968

1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985
    /* finally we can call the 'started' hook script if any */
    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_STARTED, VIR_HOOK_SUBOP_BEGIN,
                              NULL, xml, NULL);
        VIR_FREE(xml);

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

1986 1987 1988
    rc = 0;

cleanup:
1989 1990
    if (rc != 0 && !err)
        err = virSaveLastError();
1991
    virCommandFree(cmd);
1992 1993 1994 1995
    if (VIR_CLOSE(logfd) < 0) {
        virReportSystemError(errno, "%s", _("could not close logfile"));
        rc = -1;
    }
1996 1997
    for (i = 0 ; i < nveths ; i++) {
        if (rc != 0)
1998
            ignore_value(virNetDevVethDelete(veths[i]));
1999 2000
        VIR_FREE(veths[i]);
    }
2001
    if (rc != 0) {
2002
        VIR_FORCE_CLOSE(priv->monitor);
2003
        virDomainConfVMNWFilterTeardown(vm);
2004 2005 2006 2007 2008 2009 2010 2011 2012 2013

        virSecurityManagerRestoreAllLabel(driver->securityManager,
                                          vm->def, false);
        virSecurityManagerReleaseLabel(driver->securityManager, vm->def);
        /* Clear out dynamically assigned labels */
        if (vm->def->seclabel.type == VIR_DOMAIN_SECLABEL_DYNAMIC) {
            VIR_FREE(vm->def->seclabel.model);
            VIR_FREE(vm->def->seclabel.label);
            VIR_FREE(vm->def->seclabel.imagelabel);
        }
2014
    }
2015 2016
    for (i = 0 ; i < nttyFDs ; i++)
        VIR_FORCE_CLOSE(ttyFDs[i]);
2017
    VIR_FREE(ttyFDs);
2018 2019
    VIR_FORCE_CLOSE(handshakefds[0]);
    VIR_FORCE_CLOSE(handshakefds[1]);
2020
    VIR_FREE(logfile);
2021 2022 2023

    if (err) {
        virSetError(err);
2024
        virFreeError(err);
2025 2026
    }

2027
    return rc;
2028 2029 2030 2031 2032

error:
    err = virSaveLastError();
    lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED);
    goto cleanup;
2033 2034 2035
}

/**
2036
 * lxcDomainStartWithFlags:
2037
 * @dom: domain to start
2038
 * @flags: Must be 0 for now
2039 2040 2041 2042 2043
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
2044
static int lxcDomainStartWithFlags(virDomainPtr dom, unsigned int flags)
2045
{
2046 2047
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
2048
    virDomainEventPtr event = NULL;
2049
    int ret = -1;
2050

2051
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, -1);
2052

2053
    lxcDriverLock(driver);
2054
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
2055
    if (!vm) {
2056 2057 2058 2059
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2060 2061 2062
        goto cleanup;
    }

2063
    if ((vm->def->nets != NULL) && !(driver->have_netns)) {
2064
        lxcError(VIR_ERR_OPERATION_INVALID,
J
Jim Meyering 已提交
2065
                 "%s", _("System lacks NETNS support"));
2066 2067 2068
        goto cleanup;
    }

2069 2070 2071 2072 2073 2074
    if (virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is already running"));
        goto cleanup;
    }

2075 2076 2077
    ret = lxcVmStart(dom->conn, driver, vm,
                     (flags & VIR_DOMAIN_START_AUTODESTROY),
                     VIR_DOMAIN_RUNNING_BOOTED);
2078

2079
    if (ret == 0) {
2080 2081 2082
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);
2083 2084 2085 2086
        virDomainAuditStart(vm, "booted", true);
    } else {
        virDomainAuditStart(vm, "booted", false);
    }
2087

2088
cleanup:
2089 2090
    if (vm)
        virDomainObjUnlock(vm);
2091 2092
    if (event)
        lxcDomainEventQueue(driver, event);
2093
    lxcDriverUnlock(driver);
2094
    return ret;
2095 2096
}

2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
/**
 * 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);
}

2110 2111 2112 2113
/**
 * lxcDomainCreateAndStart:
 * @conn: pointer to connection
 * @xml: XML definition of domain
2114
 * @flags: Must be 0 for now
2115 2116 2117 2118 2119 2120 2121 2122
 *
 * 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,
2123
                        unsigned int flags) {
2124
    lxc_driver_t *driver = conn->privateData;
2125
    virDomainObjPtr vm = NULL;
2126
    virDomainDefPtr def;
2127
    virDomainPtr dom = NULL;
2128
    virDomainEventPtr event = NULL;
2129

2130
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, NULL);
2131

2132
    lxcDriverLock(driver);
2133
    if (!(def = virDomainDefParseString(driver->caps, xml,
M
Matthias Bolte 已提交
2134
                                        1 << VIR_DOMAIN_VIRT_LXC,
2135
                                        VIR_DOMAIN_XML_INACTIVE)))
2136
        goto cleanup;
2137

2138 2139 2140
    if (virSecurityManagerVerify(driver->securityManager, def) < 0)
        goto cleanup;

2141 2142
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
        goto cleanup;
2143

2144
    if ((def->nets != NULL) && !(driver->have_netns)) {
2145
        lxcError(VIR_ERR_CONFIG_UNSUPPORTED,
J
Jim Meyering 已提交
2146
                 "%s", _("System lacks NETNS support"));
2147
        goto cleanup;
2148 2149
    }

2150

2151
    if (!(vm = virDomainAssignDef(driver->caps,
2152
                                  &driver->domains, def, false)))
2153 2154
        goto cleanup;
    def = NULL;
2155

2156 2157 2158
    if (lxcVmStart(conn, driver, vm,
                   (flags & VIR_DOMAIN_START_AUTODESTROY),
                   VIR_DOMAIN_RUNNING_BOOTED) < 0) {
2159
        virDomainAuditStart(vm, "booted", false);
2160
        virDomainRemoveInactive(&driver->domains, vm);
2161
        vm = NULL;
2162
        goto cleanup;
2163 2164
    }

2165 2166 2167
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);
2168
    virDomainAuditStart(vm, "booted", true);
2169

2170
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
2171
    if (dom)
2172 2173
        dom->id = vm->def->id;

2174 2175
cleanup:
    virDomainDefFree(def);
2176 2177
    if (vm)
        virDomainObjUnlock(vm);
2178 2179
    if (event)
        lxcDomainEventQueue(driver, event);
2180
    lxcDriverUnlock(driver);
2181 2182 2183
    return dom;
}

2184

2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280
static int lxcDomainGetSecurityLabel(virDomainPtr dom, virSecurityLabelPtr seclabel)
{
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    int ret = -1;

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

    memset(seclabel, 0, sizeof(*seclabel));

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

    if (!virDomainVirtTypeToString(vm->def->virtType)) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("unknown virt type in domain definition '%d'"),
                 vm->def->virtType);
        goto cleanup;
    }

    /*
     * Theoretically, the pid can be replaced during this operation and
     * return the label of a different process.  If atomicity is needed,
     * further validation will be required.
     *
     * Comment from Dan Berrange:
     *
     *   Well the PID as stored in the virDomainObjPtr can't be changed
     *   because you've got a locked object.  The OS level PID could have
     *   exited, though and in extreme circumstances have cycled through all
     *   PIDs back to ours. We could sanity check that our PID still exists
     *   after reading the label, by checking that our FD connecting to the
     *   LXC monitor hasn't seen SIGHUP/ERR on poll().
     */
    if (virDomainObjIsActive(vm)) {
        if (virSecurityManagerGetProcessLabel(driver->securityManager,
                                              vm->def, vm->pid, seclabel) < 0) {
            lxcError(VIR_ERR_INTERNAL_ERROR,
                     "%s", _("Failed to get security label"));
            goto cleanup;
        }
    }

    ret = 0;

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

static int lxcNodeGetSecurityModel(virConnectPtr conn,
                                   virSecurityModelPtr secmodel)
{
    lxc_driver_t *driver = conn->privateData;
    int ret = 0;

    lxcDriverLock(driver);
    memset(secmodel, 0, sizeof(*secmodel));

    /* NULL indicates no driver, which we treat as
     * success, but simply return no data in *secmodel */
    if (driver->caps->host.secModel.model == NULL)
        goto cleanup;

    if (!virStrcpy(secmodel->model, driver->caps->host.secModel.model,
                   VIR_SECURITY_MODEL_BUFLEN)) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("security model string exceeds max %d bytes"),
                 VIR_SECURITY_MODEL_BUFLEN - 1);
        ret = -1;
        goto cleanup;
    }

    if (!virStrcpy(secmodel->doi, driver->caps->host.secModel.doi,
                   VIR_SECURITY_DOI_BUFLEN)) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("security DOI string exceeds max %d bytes"),
                 VIR_SECURITY_DOI_BUFLEN-1);
        ret = -1;
        goto cleanup;
    }

cleanup:
    lxcDriverUnlock(driver);
    return ret;
}


2281
static int
2282 2283 2284 2285
lxcDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
2286 2287 2288 2289 2290
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
2291 2292 2293
    ret = virDomainEventStateRegister(conn,
                                      driver->domainEventState,
                                      callback, opaque, freecb);
2294
    lxcDriverUnlock(driver);
2295

2296
    return ret;
2297 2298
}

2299

2300
static int
2301 2302
lxcDomainEventDeregister(virConnectPtr conn,
                         virConnectDomainEventCallback callback)
2303 2304 2305 2306 2307
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
2308 2309 2310
    ret = virDomainEventStateDeregister(conn,
                                        driver->domainEventState,
                                        callback);
2311 2312 2313 2314 2315
    lxcDriverUnlock(driver);

    return ret;
}

2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328

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);
2329 2330 2331 2332
    if (virDomainEventStateRegisterID(conn,
                                      driver->domainEventState,
                                      dom, eventID,
                                      callback, opaque, freecb, &ret) < 0)
2333
        ret = -1;
2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347
    lxcDriverUnlock(driver);

    return ret;
}


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

    lxcDriverLock(driver);
2348 2349 2350
    ret = virDomainEventStateDeregisterID(conn,
                                          driver->domainEventState,
                                          callbackID);
2351 2352 2353 2354 2355 2356
    lxcDriverUnlock(driver);

    return ret;
}


2357 2358 2359 2360
/* driver must be locked before calling */
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                 virDomainEventPtr event)
{
2361
    virDomainEventStateQueue(driver->domainEventState, event);
2362
}
2363 2364

/**
2365
 * lxcDomainDestroyFlags:
2366
 * @dom: pointer to domain to destroy
2367
 * @flags: an OR'ed set of virDomainDestroyFlags
2368 2369 2370 2371 2372
 *
 * Sends SIGKILL to container root process to terminate the container
 *
 * Returns 0 on success or -1 in case of error
 */
2373 2374 2375
static int
lxcDomainDestroyFlags(virDomainPtr dom,
                      unsigned int flags)
2376
{
2377 2378
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
2379
    virDomainEventPtr event = NULL;
2380
    int ret = -1;
2381

2382 2383
    virCheckFlags(0, -1);

2384
    lxcDriverLock(driver);
2385
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
2386
    if (!vm) {
2387 2388 2389 2390
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2391
        goto cleanup;
2392 2393
    }

2394 2395 2396 2397 2398 2399
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

J
Jiri Denemark 已提交
2400
    ret = lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
2401 2402 2403
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
2404
    virDomainAuditStop(vm, "destroyed");
2405 2406 2407 2408
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
2409 2410

cleanup:
2411 2412
    if (vm)
        virDomainObjUnlock(vm);
2413 2414
    if (event)
        lxcDomainEventQueue(driver, event);
2415
    lxcDriverUnlock(driver);
2416
    return ret;
2417
}
2418

2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
/**
 * 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);
}

2433 2434 2435 2436 2437
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

2438
    if (virRun(argv, &ip_rc) < 0 ||
2439 2440
        !(WIFEXITED(ip_rc) && (WEXITSTATUS(ip_rc) != 255)))
        return 0;
2441

2442 2443
    if (lxcContainerAvailable(LXC_CONTAINER_FEATURE_NET) < 0)
        return 0;
2444

2445
    return 1;
2446 2447
}

2448

2449 2450 2451 2452 2453 2454
struct lxcAutostartData {
    lxc_driver_t *driver;
    virConnectPtr conn;
};

static void
2455
lxcAutostartDomain(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
2456 2457 2458 2459 2460 2461
{
    virDomainObjPtr vm = payload;
    const struct lxcAutostartData *data = opaque;

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
2462
        !virDomainObjIsActive(vm)) {
2463
        int ret = lxcVmStart(data->conn, data->driver, vm, false,
J
Jiri Denemark 已提交
2464
                             VIR_DOMAIN_RUNNING_BOOTED);
2465
        virDomainAuditStart(vm, "booted", ret >= 0);
2466 2467
        if (ret < 0) {
            virErrorPtr err = virGetLastError();
2468
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482
                      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);
}

2483 2484 2485 2486 2487 2488 2489 2490 2491 2492
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 */

2493 2494
    struct lxcAutostartData data = { driver, conn };

2495
    lxcDriverLock(driver);
2496
    virHashForEach(driver->domains.objs, lxcAutostartDomain, &data);
2497 2498 2499 2500 2501 2502
    lxcDriverUnlock(driver);

    if (conn)
        virConnectClose(conn);
}

2503
static void
2504
lxcReconnectVM(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
2505 2506 2507
{
    virDomainObjPtr vm = payload;
    lxc_driver_t *driver = opaque;
2508
    lxcDomainObjPrivatePtr priv;
2509 2510

    virDomainObjLock(vm);
2511
    VIR_DEBUG("Reconnect %d %d %d\n", vm->def->id, vm->pid, vm->state.state);
2512 2513

    priv = vm->privateData;
2514 2515 2516

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

2520 2521 2522
        if ((priv->monitor = lxcMonitorClient(driver, vm)) < 0)
            goto error;

2523 2524 2525 2526
        if ((priv->monitorWatch = virEventAddHandle(
                 priv->monitor,
                 VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
                 lxcMonitorEvent,
2527 2528
                 vm, NULL)) < 0)
            goto error;
2529 2530 2531 2532

        if (virSecurityManagerReserveLabel(driver->securityManager,
                                           vm->def, vm->pid) < 0)
            goto error;
2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547

        /* now that we know it's reconnected call the hook if present */
        if (virHookPresent(VIR_HOOK_DRIVER_LXC)) {
            char *xml = virDomainDefFormat(vm->def, 0);
            int hookret;

            /* we can't stop the operation even if the script raised an error */
            hookret = virHookCall(VIR_HOOK_DRIVER_LXC, vm->def->name,
                                  VIR_HOOK_LXC_OP_RECONNECT, VIR_HOOK_SUBOP_BEGIN,
                                  NULL, xml, NULL);
            VIR_FREE(xml);
            if (hookret < 0)
                goto error;
        }

2548 2549
    } else {
        vm->def->id = -1;
2550
        VIR_FORCE_CLOSE(priv->monitor);
2551 2552 2553 2554
    }

cleanup:
    virDomainObjUnlock(vm);
2555 2556 2557 2558 2559 2560
    return;

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

2563

2564 2565 2566
static int
lxcSecurityInit(lxc_driver_t *driver)
{
2567
    VIR_INFO("lxcSecurityInit %s", driver->securityDriverName);
2568
    virSecurityManagerPtr mgr = virSecurityManagerNew(driver->securityDriverName,
2569
                                                      LXC_DRIVER_NAME,
2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586
                                                      false,
                                                      driver->securityDefaultConfined,
                                                      driver->securityRequireConfined);
    if (!mgr)
        goto error;

    driver->securityManager = mgr;

    return 0;

error:
    VIR_ERROR(_("Failed to initialize security drivers"));
    virSecurityManagerFree(mgr);
    return -1;
}


2587
static int lxcStartup(int privileged)
D
Daniel Veillard 已提交
2588
{
2589
    char *ld;
2590
    int rc;
2591 2592 2593 2594 2595 2596

    /* 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");
2597
    if (ld && strstr(ld, "vgpreload")) {
2598
        VIR_INFO("Running under valgrind, disabling driver");
2599 2600
        return 0;
    }
2601

2602
    /* Check that the user is root, silently disable if not */
2603
    if (!privileged) {
2604
        VIR_INFO("Not running privileged, disabling driver");
2605 2606 2607 2608 2609
        return 0;
    }

    /* Check that this is a container enabled kernel */
    if (lxcContainerAvailable(0) < 0) {
2610
        VIR_INFO("LXC support not available in this kernel, disabling driver");
2611
        return 0;
2612 2613
    }

2614
    if (VIR_ALLOC(lxc_driver) < 0) {
2615 2616
        return -1;
    }
2617 2618 2619 2620
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
2621
    lxcDriverLock(lxc_driver);
D
Daniel Veillard 已提交
2622

2623 2624 2625
    if (virDomainObjListInit(&lxc_driver->domains) < 0)
        goto cleanup;

2626
    lxc_driver->domainEventState = virDomainEventStateNew();
2627
    if (!lxc_driver->domainEventState)
2628 2629
        goto cleanup;

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

2633 2634
    rc = virCgroupForDriver("lxc", &lxc_driver->cgroup, privileged, 1);
    if (rc < 0) {
2635
        char buf[1024] ATTRIBUTE_UNUSED;
2636 2637 2638 2639 2640
        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
         */
2641 2642
    }

D
Daniel Veillard 已提交
2643
    /* Call function to load lxc driver configuration information */
2644 2645
    if (lxcLoadDriverConfig(lxc_driver) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
2646

2647 2648 2649 2650
    if (lxcSecurityInit(lxc_driver) < 0)
        goto cleanup;

    if ((lxc_driver->caps = lxcCapsInit(lxc_driver)) == NULL)
2651
        goto cleanup;
D
Daniel Veillard 已提交
2652

2653
    lxcDomainSetPrivateDataHooks(lxc_driver->caps);
2654

2655 2656 2657
    if (lxcProcessAutoDestroyInit(lxc_driver) < 0)
        goto cleanup;

O
Osier Yang 已提交
2658 2659 2660 2661 2662
    /* Get all the running persistent or transient configs first */
    if (virDomainLoadAllConfigs(lxc_driver->caps,
                                &lxc_driver->domains,
                                lxc_driver->stateDir,
                                NULL,
M
Matthias Bolte 已提交
2663 2664
                                1, 1 << VIR_DOMAIN_VIRT_LXC,
                                NULL, NULL) < 0)
O
Osier Yang 已提交
2665 2666 2667 2668 2669
        goto cleanup;

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

    /* Then inactive persistent configs */
2670
    if (virDomainLoadAllConfigs(lxc_driver->caps,
2671 2672
                                &lxc_driver->domains,
                                lxc_driver->configDir,
2673
                                lxc_driver->autostartDir,
M
Matthias Bolte 已提交
2674 2675
                                0, 1 << VIR_DOMAIN_VIRT_LXC,
                                NULL, NULL) < 0)
2676
        goto cleanup;
2677

2678
    lxcDriverUnlock(lxc_driver);
2679 2680 2681

    lxcAutostartConfigs(lxc_driver);

D
Daniel Veillard 已提交
2682 2683
    return 0;

2684 2685 2686 2687
cleanup:
    lxcDriverUnlock(lxc_driver);
    lxcShutdown();
    return -1;
D
Daniel Veillard 已提交
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
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);
2716
    virDomainLoadAllConfigs(lxc_driver->caps,
2717 2718 2719
                            &lxc_driver->domains,
                            lxc_driver->configDir,
                            lxc_driver->autostartDir,
M
Matthias Bolte 已提交
2720 2721
                            0, 1 << VIR_DOMAIN_VIRT_LXC,
                            lxcNotifyLoadDomain, lxc_driver);
2722 2723 2724 2725 2726
    lxcDriverUnlock(lxc_driver);

    return 0;
}

2727
static int lxcShutdown(void)
D
Daniel Veillard 已提交
2728
{
2729
    if (lxc_driver == NULL)
2730
        return -1;
2731

2732
    lxcDriverLock(lxc_driver);
2733
    virDomainObjListDeinit(&lxc_driver->domains);
2734
    virDomainEventStateFree(lxc_driver->domainEventState);
2735

2736 2737
    lxcProcessAutoDestroyShutdown(lxc_driver);

2738
    virCapabilitiesFree(lxc_driver->caps);
2739
    virSecurityManagerFree(lxc_driver->securityManager);
2740 2741 2742 2743 2744
    VIR_FREE(lxc_driver->configDir);
    VIR_FREE(lxc_driver->autostartDir);
    VIR_FREE(lxc_driver->stateDir);
    VIR_FREE(lxc_driver->logDir);
    lxcDriverUnlock(lxc_driver);
2745
    virMutexDestroy(&lxc_driver->lock);
2746
    VIR_FREE(lxc_driver);
2747 2748 2749

    return 0;
}
D
Daniel Veillard 已提交
2750

2751 2752 2753 2754 2755 2756 2757 2758 2759
/**
 * lxcActive:
 *
 * Checks if the LXC daemon is active, i.e. has an active domain
 *
 * Returns 1 if active, 0 otherwise
 */
static int
lxcActive(void) {
2760
    int active;
2761

2762
    if (lxc_driver == NULL)
2763
        return 0;
2764

2765
    lxcDriverLock(lxc_driver);
2766
    active = virDomainObjListNumOfDomains(&lxc_driver->domains, 1);
2767
    lxcDriverUnlock(lxc_driver);
2768

2769
    return active;
D
Daniel Veillard 已提交
2770 2771
}

2772
static int lxcVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *version)
D
Dan Smith 已提交
2773 2774 2775
{
    struct utsname ver;

2776
    uname(&ver);
D
Dan Smith 已提交
2777

2778
    if (virParseVersionString(ver.release, version, true) < 0) {
2779
        lxcError(VIR_ERR_INTERNAL_ERROR, _("Unknown release: %s"), ver.release);
D
Dan Smith 已提交
2780 2781 2782 2783 2784
        return -1;
    }

    return 0;
}
2785

2786 2787 2788 2789 2790 2791 2792 2793 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

/*
 * 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,
2839
                                 int *nparams)
2840
{
2841 2842 2843
    lxc_driver_t *driver = domain->conn->privateData;
    char *ret = NULL;
    int rc;
2844

2845 2846 2847 2848 2849 2850
    lxcDriverLock(driver);
    if (!lxcCgroupControllerActive(driver, VIR_CGROUP_CONTROLLER_CPU)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("cgroup CPU controller is not mounted"));
        goto cleanup;
    }
2851

2852 2853 2854 2855 2856 2857 2858 2859 2860
    if (nparams) {
        rc = lxcGetCpuBWStatus(driver->cgroup);
        if (rc < 0)
            goto cleanup;
        else if (rc == 0)
            *nparams = 1;
        else
            *nparams = 3;
    }
2861

2862 2863
    ret = strdup("posix");
    if (!ret)
2864
        virReportOOMError();
2865

2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936
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)
2937 2938
            virReportSystemError(-rc, "%s",
                                 _("Unable to rollback cpu bandwidth period"));
2939 2940 2941
    }

    return -1;
2942 2943
}

2944

2945
static int
2946
lxcSetSchedulerParametersFlags(virDomainPtr dom,
2947 2948 2949
                               virTypedParameterPtr params,
                               int nparams,
                               unsigned int flags)
2950
{
2951
    lxc_driver_t *driver = dom->conn->privateData;
2952
    int i;
2953 2954
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
2955
    virDomainDefPtr vmdef = NULL;
2956
    int ret = -1;
2957
    int rc;
2958

2959 2960
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
2961 2962 2963 2964 2965 2966 2967 2968 2969
    if (virTypedParameterArrayValidate(params, nparams,
                                       VIR_DOMAIN_SCHEDULER_CPU_SHARES,
                                       VIR_TYPED_PARAM_ULLONG,
                                       VIR_DOMAIN_SCHEDULER_VCPU_PERIOD,
                                       VIR_TYPED_PARAM_ULLONG,
                                       VIR_DOMAIN_SCHEDULER_VCPU_QUOTA,
                                       VIR_TYPED_PARAM_LLONG,
                                       NULL) < 0)
        return -1;
2970 2971

    lxcDriverLock(driver);
2972 2973

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

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

E
Eric Blake 已提交
2981 2982 2983
    if (virDomainLiveConfigHelperMethod(driver->caps, vm, &flags,
                                        &vmdef) < 0)
        goto cleanup;
2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004

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

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

3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049
        if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_CPU_SHARES)) {
            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 (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 (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;
            }
3050
        }
3051
    }
3052

3053 3054
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
        goto cleanup;
3055

3056 3057 3058 3059

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

3062 3063
        virDomainObjAssignDef(vm, vmdef, false);
        vmdef = NULL;
3064
    }
3065

3066
    ret = 0;
3067

3068
cleanup:
3069
    virDomainDefFree(vmdef);
3070
    virCgroupFree(&group);
3071 3072
    if (vm)
        virDomainObjUnlock(vm);
3073
    lxcDriverUnlock(driver);
3074
    return ret;
3075 3076
}

3077 3078 3079 3080 3081 3082 3083 3084 3085
static int
lxcSetSchedulerParameters(virDomainPtr domain,
                          virTypedParameterPtr params,
                          int nparams)
{
    return lxcSetSchedulerParametersFlags(domain, params, nparams, 0);
}

static int
3086
lxcGetSchedulerParametersFlags(virDomainPtr dom,
3087 3088 3089
                               virTypedParameterPtr params,
                               int *nparams,
                               unsigned int flags)
3090
{
3091
    lxc_driver_t *driver = dom->conn->privateData;
3092 3093
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
E
Eric Blake 已提交
3094
    virDomainDefPtr persistentDef;
3095 3096 3097
    unsigned long long shares = 0;
    unsigned long long period = 0;
    long long quota = 0;
3098
    int ret = -1;
3099 3100 3101
    int rc;
    bool cpu_bw_status = false;
    int saved_nparams = 0;
3102

3103 3104
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
3105

3106
    lxcDriverLock(driver);
3107 3108 3109 3110 3111 3112 3113 3114 3115

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

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

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

E
Eric Blake 已提交
3123 3124 3125
    if (virDomainLiveConfigHelperMethod(driver->caps, vm, &flags,
                                        &persistentDef) < 0)
        goto cleanup;
3126 3127

    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
E
Eric Blake 已提交
3128 3129 3130 3131
        shares = persistentDef->cputune.shares;
        if (*nparams > 1 && cpu_bw_status) {
            period = persistentDef->cputune.period;
            quota = persistentDef->cputune.quota;
3132 3133 3134 3135 3136 3137 3138
        }
        goto out;
    }

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

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

3148 3149 3150 3151
    rc = virCgroupGetCpuShares(group, &shares);
    if (rc != 0) {
        virReportSystemError(-rc, "%s",
                             _("unable to get cpu shares tunable"));
3152
        goto cleanup;
3153 3154 3155 3156 3157 3158 3159 3160
    }

    if (*nparams > 1 && cpu_bw_status) {
        rc = lxcGetVcpuBWLive(group, &period, &quota);
        if (rc != 0)
            goto cleanup;
    }
out:
3161 3162
    if (virTypedParameterAssign(&params[0], VIR_DOMAIN_SCHEDULER_CPU_SHARES,
                                VIR_TYPED_PARAM_ULLONG, shares) < 0)
C
Chris Lalancette 已提交
3163
        goto cleanup;
3164 3165 3166 3167
    saved_nparams++;

    if (cpu_bw_status) {
        if (*nparams > saved_nparams) {
3168 3169 3170
            if (virTypedParameterAssign(&params[1],
                                        VIR_DOMAIN_SCHEDULER_VCPU_PERIOD,
                                        VIR_TYPED_PARAM_ULLONG, period) < 0)
3171 3172 3173 3174 3175
                goto cleanup;
            saved_nparams++;
        }

        if (*nparams > saved_nparams) {
3176 3177 3178
            if (virTypedParameterAssign(&params[2],
                                        VIR_DOMAIN_SCHEDULER_VCPU_QUOTA,
                                        VIR_TYPED_PARAM_LLONG, quota) < 0)
3179 3180 3181 3182 3183 3184 3185
                goto cleanup;
            saved_nparams++;
        }
    }

    *nparams = saved_nparams;

3186
    ret = 0;
3187

3188 3189
cleanup:
    virCgroupFree(&group);
3190 3191
    if (vm)
        virDomainObjUnlock(vm);
3192
    lxcDriverUnlock(driver);
3193
    return ret;
3194 3195
}

3196 3197 3198 3199 3200 3201 3202 3203
static int
lxcGetSchedulerParameters(virDomainPtr domain,
                          virTypedParameterPtr params,
                          int *nparams)
{
    return lxcGetSchedulerParametersFlags(domain, params, nparams, 0);
}

3204

3205 3206 3207 3208 3209
static int
lxcDomainSetBlkioParameters(virDomainPtr dom,
                            virTypedParameterPtr params,
                            int nparams,
                            unsigned int flags)
3210 3211 3212 3213 3214 3215 3216 3217 3218 3219
{
    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);
3220 3221 3222 3223 3224 3225
    if (virTypedParameterArrayValidate(params, nparams,
                                       VIR_DOMAIN_BLKIO_WEIGHT,
                                       VIR_TYPED_PARAM_UINT,
                                       NULL) < 0)
        return -1;

3226 3227 3228 3229 3230 3231 3232 3233 3234 3235
    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 已提交
3236 3237 3238
    if (virDomainLiveConfigHelperMethod(driver->caps, vm, &flags,
                                        &persistentDef) < 0)
        goto cleanup;
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++) {
            virTypedParameterPtr param = &params[i];

            if (STREQ(param->field, VIR_DOMAIN_BLKIO_WEIGHT)) {
                int rc;

                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 已提交
3261
                    goto cleanup;
3262 3263 3264 3265 3266 3267
                }

                rc = virCgroupSetBlkioWeight(group, params[i].value.ui);
                if (rc != 0) {
                    virReportSystemError(-rc, "%s",
                                         _("unable to set blkio weight tunable"));
E
Eric Blake 已提交
3268
                    goto cleanup;
3269 3270 3271
                }
            }
        }
E
Eric Blake 已提交
3272 3273
    }
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
3274 3275 3276 3277 3278 3279 3280 3281 3282 3283
        /* 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 (params[i].value.ui > 1000 || params[i].value.ui < 100) {
                    lxcError(VIR_ERR_INVALID_ARG, "%s",
                             _("out of blkio weight range."));
E
Eric Blake 已提交
3284
                    goto cleanup;
3285 3286 3287 3288 3289 3290 3291
                }

                persistentDef->blkio.weight = params[i].value.ui;
            }
        }

        if (virDomainSaveConfig(driver->configDir, persistentDef) < 0)
E
Eric Blake 已提交
3292
            goto cleanup;
3293 3294
    }

E
Eric Blake 已提交
3295
    ret = 0;
3296 3297 3298 3299 3300 3301 3302 3303 3304 3305
cleanup:
    virCgroupFree(&group);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}


#define LXC_NB_BLKIO_PARAM  1
3306 3307 3308 3309 3310
static int
lxcDomainGetBlkioParameters(virDomainPtr dom,
                            virTypedParameterPtr params,
                            int *nparams,
                            unsigned int flags)
3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339
{
    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 已提交
3340 3341 3342
    if (virDomainLiveConfigHelperMethod(driver->caps, vm, &flags,
                                        &persistentDef) < 0)
        goto cleanup;
3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367

    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;

            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;
                }
3368 3369
                if (virTypedParameterAssign(param, VIR_DOMAIN_BLKIO_WEIGHT,
                                            VIR_TYPED_PARAM_UINT, val) < 0)
3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383
                    goto cleanup;
                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];

            switch (i) {
            case 0: /* fill blkio weight here */
3384 3385 3386
                if (virTypedParameterAssign(param, VIR_DOMAIN_BLKIO_WEIGHT,
                                            VIR_TYPED_PARAM_UINT,
                                            persistentDef->blkio.weight) < 0)
3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410
                    goto cleanup;
                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;
}


3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428
#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);
3429
        lxcError(VIR_ERR_NO_DOMAIN,
3430 3431 3432 3433 3434
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
3435
        lxcError(VIR_ERR_OPERATION_INVALID,
3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449
                 "%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)
3450
        ret = linuxDomainInterfaceStats(path, stats);
3451
    else
3452
        lxcError(VIR_ERR_INVALID_ARG,
3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464
                 _("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 已提交
3465
{
3466
    lxcError(VIR_ERR_NO_SUPPORT, "%s", __FUNCTION__);
3467 3468 3469 3470
    return -1;
}
#endif

3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483
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);
3484
        lxcError(VIR_ERR_NO_DOMAIN,
3485
                 _("No domain with matching uuid '%s'"), uuidstr);
3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510
        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);
3511
        lxcError(VIR_ERR_NO_DOMAIN,
3512
                 _("No domain with matching uuid '%s'"), uuidstr);
3513 3514 3515 3516
        goto cleanup;
    }

    if (!vm->persistent) {
3517
        lxcError(VIR_ERR_OPERATION_INVALID,
3518
                 "%s", _("Cannot set autostart for transient domain"));
3519 3520 3521 3522 3523
        goto cleanup;
    }

    autostart = (autostart != 0);

3524 3525 3526 3527
    if (vm->autostart == autostart) {
        ret = 0;
        goto cleanup;
    }
3528

3529
    configFile = virDomainConfigFile(driver->configDir,
3530 3531 3532
                                     vm->def->name);
    if (configFile == NULL)
        goto cleanup;
3533
    autostartLink = virDomainConfigFile(driver->autostartDir,
3534 3535 3536
                                        vm->def->name);
    if (autostartLink == NULL)
        goto cleanup;
3537

3538
    if (autostart) {
3539 3540
        if (virFileMakePath(driver->autostartDir) < 0) {
            virReportSystemError(errno,
3541 3542 3543
                                 _("Cannot create autostart directory %s"),
                                 driver->autostartDir);
            goto cleanup;
3544 3545
        }

3546
        if (symlink(configFile, autostartLink) < 0) {
3547
            virReportSystemError(errno,
3548 3549 3550 3551 3552 3553
                                 _("Failed to create symlink '%s to '%s'"),
                                 autostartLink, configFile);
            goto cleanup;
        }
    } else {
        if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
3554
            virReportSystemError(errno,
3555 3556 3557 3558
                                 _("Failed to delete symlink '%s'"),
                                 autostartLink);
            goto cleanup;
        }
3559
    }
3560 3561

    vm->autostart = autostart;
3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572
    ret = 0;

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

R
Ryota Ozaki 已提交
3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583
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 &&
3584
          virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
R
Ryota Ozaki 已提交
3585 3586
        return -1;

3587 3588
    /* From here on, we know that cgroup != NULL.  */

R
Ryota Ozaki 已提交
3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609
    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)
3610
            VIR_DEBUG("Writing freezer.state gets EBUSY");
R
Ryota Ozaki 已提交
3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649

        /*
         * 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);
    }
3650
    VIR_DEBUG("lxcFreezeContainer timeout");
R
Ryota Ozaki 已提交
3651 3652 3653 3654 3655 3656 3657 3658 3659 3660
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:
3661
    virCgroupFree(&cgroup);
R
Ryota Ozaki 已提交
3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678
    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);
3679
        lxcError(VIR_ERR_NO_DOMAIN,
3680
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
3681 3682 3683
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
3684
    if (!virDomainObjIsActive(vm)) {
3685
        lxcError(VIR_ERR_OPERATION_INVALID,
3686
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
3687 3688 3689
        goto cleanup;
    }

J
Jiri Denemark 已提交
3690
    if (virDomainObjGetState(vm, NULL) != VIR_DOMAIN_PAUSED) {
R
Ryota Ozaki 已提交
3691
        if (lxcFreezeContainer(driver, vm) < 0) {
3692
            lxcError(VIR_ERR_OPERATION_FAILED,
3693
                     "%s", _("Suspend operation failed"));
R
Ryota Ozaki 已提交
3694 3695
            goto cleanup;
        }
J
Jiri Denemark 已提交
3696
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
R
Ryota Ozaki 已提交
3697 3698 3699 3700 3701 3702

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

3703
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
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 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743
        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);
3744
        lxcError(VIR_ERR_NO_DOMAIN,
3745
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
3746 3747 3748
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
3749
    if (!virDomainObjIsActive(vm)) {
3750
        lxcError(VIR_ERR_OPERATION_INVALID,
3751
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
3752 3753 3754
        goto cleanup;
    }

J
Jiri Denemark 已提交
3755
    if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED) {
R
Ryota Ozaki 已提交
3756
        if (lxcUnfreezeContainer(driver, vm) < 0) {
3757
            lxcError(VIR_ERR_OPERATION_FAILED,
3758
                     "%s", _("Resume operation failed"));
R
Ryota Ozaki 已提交
3759 3760
            goto cleanup;
        }
J
Jiri Denemark 已提交
3761 3762
        virDomainObjSetState(vm, VIR_DOMAIN_RUNNING,
                             VIR_DOMAIN_RUNNING_UNPAUSED);
R
Ryota Ozaki 已提交
3763 3764 3765 3766 3767 3768

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

3769
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781
        goto cleanup;
    ret = 0;

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

3782 3783
static int
lxcDomainOpenConsole(virDomainPtr dom,
3784
                      const char *dev_name,
3785 3786 3787 3788 3789 3790 3791 3792
                      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;
3793
    size_t i;
3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811

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

3812
    if (dev_name) {
3813 3814 3815 3816 3817 3818 3819
        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;
            }
        }
3820
    } else {
3821 3822
        if (vm->def->nconsoles)
            chr = vm->def->consoles[0];
3823 3824 3825 3826 3827
        else if (vm->def->nserials)
            chr = vm->def->serials[0];
    }

    if (!chr) {
3828 3829 3830
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("cannot find console device '%s'"),
                 dev_name ? dev_name : _("default"));
3831 3832 3833
        goto cleanup;
    }

3834
    if (chr->source.type != VIR_DOMAIN_CHR_TYPE_PTY) {
3835
        lxcError(VIR_ERR_INTERNAL_ERROR,
3836
                 _("character device %s is not using a PTY"), dev_name);
3837 3838 3839
        goto cleanup;
    }

3840
    if (virFDStreamOpenFile(st, chr->source.data.file.path,
E
Eric Blake 已提交
3841
                            0, 0, O_RDWR) < 0)
3842 3843 3844 3845 3846 3847 3848 3849 3850 3851
        goto cleanup;

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

3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868
static int
lxcListAllDomains(virConnectPtr conn,
                  virDomainPtr **domains,
                  unsigned int flags)
{
    lxc_driver_t *driver = conn->privateData;
    int ret = -1;

    virCheckFlags(VIR_CONNECT_LIST_FILTERS_ALL, -1);

    lxcDriverLock(driver);
    ret = virDomainList(conn, driver->domains.objs, domains, flags);
    lxcDriverUnlock(driver);

    return ret;
}

3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895
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 已提交
3896

D
Daniel Veillard 已提交
3897 3898
/* Function Tables */
static virDriver lxcDriver = {
3899
    .no = VIR_DRV_LXC,
3900
    .name = LXC_DRIVER_NAME,
3901 3902 3903 3904 3905 3906 3907 3908
    .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 */
3909
    .listAllDomains = lxcListAllDomains, /* 0.9.13 */
3910 3911 3912 3913 3914 3915 3916
    .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 */
3917
    .domainDestroyFlags = lxcDomainDestroyFlags, /* 0.9.4 */
3918 3919 3920 3921 3922 3923
    .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 */
3924 3925
    .domainSetBlkioParameters = lxcDomainSetBlkioParameters, /* 0.9.8 */
    .domainGetBlkioParameters = lxcDomainGetBlkioParameters, /* 0.9.8 */
3926 3927
    .domainGetInfo = lxcDomainGetInfo, /* 0.4.2 */
    .domainGetState = lxcDomainGetState, /* 0.9.2 */
3928 3929
    .domainGetSecurityLabel = lxcDomainGetSecurityLabel, /* 0.9.10 */
    .nodeGetSecurityModel = lxcNodeGetSecurityModel, /* 0.9.10 */
3930 3931 3932 3933 3934 3935 3936
    .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 */
3937
    .domainUndefineFlags = lxcDomainUndefineFlags, /* 0.9.4 */
3938 3939 3940 3941
    .domainGetAutostart = lxcDomainGetAutostart, /* 0.7.0 */
    .domainSetAutostart = lxcDomainSetAutostart, /* 0.7.0 */
    .domainGetSchedulerType = lxcGetSchedulerType, /* 0.5.0 */
    .domainGetSchedulerParameters = lxcGetSchedulerParameters, /* 0.5.0 */
3942
    .domainGetSchedulerParametersFlags = lxcGetSchedulerParametersFlags, /* 0.9.2 */
3943
    .domainSetSchedulerParameters = lxcSetSchedulerParameters, /* 0.5.0 */
3944
    .domainSetSchedulerParametersFlags = lxcSetSchedulerParametersFlags, /* 0.9.2 */
3945
    .domainInterfaceStats = lxcDomainInterfaceStats, /* 0.7.3 */
3946
    .nodeGetCPUStats = nodeGetCPUStats, /* 0.9.3 */
3947
    .nodeGetMemoryStats = nodeGetMemoryStats, /* 0.9.3 */
3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959
    .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 */
3960
    .isAlive = lxcIsAlive, /* 0.9.8 */
3961
    .nodeSuspendForDuration = nodeSuspendForDuration, /* 0.9.8 */
D
Daniel Veillard 已提交
3962 3963
};

3964
static virStateDriver lxcStateDriver = {
3965
    .name = LXC_DRIVER_NAME,
3966 3967 3968
    .initialize = lxcStartup,
    .cleanup = lxcShutdown,
    .active = lxcActive,
3969
    .reload = lxcReload,
3970 3971
};

D
Daniel Veillard 已提交
3972 3973 3974
int lxcRegister(void)
{
    virRegisterDriver(&lxcDriver);
3975
    virRegisterStateDriver(&lxcStateDriver);
3976
    virNWFilterRegisterCallbackDriver(&lxcCallbackDriver);
D
Daniel Veillard 已提交
3977 3978
    return 0;
}