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

#include <config.h>

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

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

D
Daniel Veillard 已提交
56

57 58
#define VIR_FROM_THIS VIR_FROM_LXC

59 60
#define START_POSTFIX ": starting up\n"

61 62
#define LXC_NB_MEM_PARAM  3

63 64 65 66 67 68 69 70
typedef struct _lxcDomainObjPrivate lxcDomainObjPrivate;
typedef lxcDomainObjPrivate *lxcDomainObjPrivatePtr;
struct _lxcDomainObjPrivate {
    int monitor;
    int monitorWatch;
};


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

/* Functions */

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

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
static void *lxcDomainObjPrivateAlloc(void)
{
    lxcDomainObjPrivatePtr priv;

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

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

    return priv;
}

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

    VIR_FREE(priv);
}


107 108 109 110
static void lxcDomainEventFlush(int timer, void *opaque);
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                virDomainEventPtr event);

111

D
Daniel Veillard 已提交
112 113 114 115 116
static virDrvOpenStatus lxcOpen(virConnectPtr conn,
                                virConnectAuthPtr auth ATTRIBUTE_UNUSED,
                                int flags ATTRIBUTE_UNUSED)
{
    /* Verify uri was specified */
117
    if (conn->uri == NULL) {
118 119
        if (lxc_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
120

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

144 145
        /* URI was good, but driver isn't active */
        if (lxc_driver == NULL) {
146
            lxcError(VIR_ERR_INTERNAL_ERROR,
147
                     "%s", _("lxc state driver is not active"));
148 149 150
            return VIR_DRV_OPEN_ERROR;
        }
    }
151

152
    conn->privateData = lxc_driver;
D
Daniel Veillard 已提交
153 154 155 156 157 158

    return VIR_DRV_OPEN_SUCCESS;
}

static int lxcClose(virConnectPtr conn)
{
159 160 161
    lxc_driver_t *driver = conn->privateData;

    lxcDriverLock(driver);
162 163
    virDomainEventCallbackListRemoveConn(conn,
                                         driver->domainEventState->callbacks);
164 165
    lxcDriverUnlock(driver);

166 167
    conn->privateData = NULL;
    return 0;
D
Daniel Veillard 已提交
168 169
}

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

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


185 186 187 188 189 190
static char *lxcGetCapabilities(virConnectPtr conn) {
    lxc_driver_t *driver = conn->privateData;
    char *xml;

    lxcDriverLock(driver);
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
191
        virReportOOMError();
192 193 194 195 196 197
    lxcDriverUnlock(driver);

    return xml;
}


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

205
    lxcDriverLock(driver);
206
    vm = virDomainFindByID(&driver->domains, id);
207 208
    lxcDriverUnlock(driver);

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

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
216
    if (dom)
D
Daniel Veillard 已提交
217 218
        dom->id = vm->def->id;

219
cleanup:
220 221
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
222 223 224 225 226 227
    return dom;
}

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

232
    lxcDriverLock(driver);
233
    vm = virDomainFindByUUID(&driver->domains, uuid);
234 235
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
236
    if (!vm) {
237 238 239 240
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
241
        goto cleanup;
D
Daniel Veillard 已提交
242 243 244
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
245
    if (dom)
D
Daniel Veillard 已提交
246 247
        dom->id = vm->def->id;

248
cleanup:
249 250
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
251 252 253 254 255 256
    return dom;
}

static virDomainPtr lxcDomainLookupByName(virConnectPtr conn,
                                          const char *name)
{
257 258 259
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
260

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

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

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

280 281 282 283 284 285 286 287 288 289 290

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

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

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

354
static int lxcListDomains(virConnectPtr conn, int *ids, int nids) {
355
    lxc_driver_t *driver = conn->privateData;
356
    int n;
357

358
    lxcDriverLock(driver);
359
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
360
    lxcDriverUnlock(driver);
361

362
    return n;
D
Daniel Veillard 已提交
363
}
364

365
static int lxcNumDomains(virConnectPtr conn) {
366
    lxc_driver_t *driver = conn->privateData;
367
    int n;
368

369
    lxcDriverLock(driver);
370
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
371
    lxcDriverUnlock(driver);
372

373
    return n;
D
Daniel Veillard 已提交
374 375 376
}

static int lxcListDefinedDomains(virConnectPtr conn,
377
                                 char **const names, int nnames) {
378
    lxc_driver_t *driver = conn->privateData;
379
    int n;
380

381
    lxcDriverLock(driver);
382
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
383
    lxcDriverUnlock(driver);
384

385
    return n;
D
Daniel Veillard 已提交
386 387 388
}


389
static int lxcNumDefinedDomains(virConnectPtr conn) {
390
    lxc_driver_t *driver = conn->privateData;
391
    int n;
392

393
    lxcDriverLock(driver);
394
    n = virDomainObjListNumOfDomains(&driver->domains, 0);
395
    lxcDriverUnlock(driver);
396

397
    return n;
D
Daniel Veillard 已提交
398 399
}

400 401


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

411
    lxcDriverLock(driver);
412
    if (!(def = virDomainDefParseString(driver->caps, xml,
413
                                        VIR_DOMAIN_XML_INACTIVE)))
414
        goto cleanup;
D
Daniel Veillard 已提交
415

416 417
   if ((dupVM = virDomainObjIsDuplicate(&driver->domains, def, 0)) < 0)
        goto cleanup;
418

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

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

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

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

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

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

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

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

D
Daniel P. Berrange 已提交
475
    if (virDomainObjIsActive(vm)) {
476
        lxcError(VIR_ERR_OPERATION_INVALID,
477
                 "%s", _("Cannot delete active domain"));
478
        goto cleanup;
D
Daniel Veillard 已提交
479 480
    }

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

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

492 493 494 495
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

496
    virDomainRemoveInactive(&driver->domains, vm);
497
    vm = NULL;
498
    ret = 0;
D
Daniel Veillard 已提交
499

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

static int lxcDomainGetInfo(virDomainPtr dom,
                            virDomainInfoPtr info)
{
512 513
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
514
    virCgroupPtr cgroup = NULL;
515
    int ret = -1, rc;
D
Daniel Veillard 已提交
516

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

D
Daniel Veillard 已提交
520
    if (!vm) {
521 522 523 524
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
525
        goto cleanup;
D
Daniel Veillard 已提交
526 527
    }

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

D
Daniel P. Berrange 已提交
530
    if (!virDomainObjIsActive(vm) || driver->cgroup == NULL) {
D
Daniel Veillard 已提交
531
        info->cpuTime = 0;
532
        info->memory = vm->def->mem.cur_balloon;
D
Daniel Veillard 已提交
533
    } else {
534
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
535
            lxcError(VIR_ERR_INTERNAL_ERROR,
536
                     _("Unable to get cgroup for %s"), vm->def->name);
537 538 539 540
            goto cleanup;
        }

        if (virCgroupGetCpuacctUsage(cgroup, &(info->cpuTime)) < 0) {
541
            lxcError(VIR_ERR_OPERATION_FAILED,
542
                     "%s", _("Cannot read cputime for domain"));
R
Ryota Ozaki 已提交
543 544
            goto cleanup;
        }
545
        if ((rc = virCgroupGetMemoryUsage(cgroup, &(info->memory))) < 0) {
546
            lxcError(VIR_ERR_OPERATION_FAILED,
547
                     "%s", _("Cannot read memory usage for domain"));
548 549 550 551 552 553
            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;
554
        }
D
Daniel Veillard 已提交
555 556
    }

557
    info->maxMem = vm->def->mem.max_balloon;
D
Daniel Veillard 已提交
558
    info->nrVirtCpu = 1;
559
    ret = 0;
D
Daniel Veillard 已提交
560

561
cleanup:
562
    lxcDriverUnlock(driver);
563 564
    if (cgroup)
        virCgroupFree(&cgroup);
565 566
    if (vm)
        virDomainObjUnlock(vm);
567
    return ret;
D
Daniel Veillard 已提交
568 569
}

570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
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 已提交
594
    *state = virDomainObjGetState(vm, reason);
595 596 597 598 599 600 601 602
    ret = 0;

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

603
static char *lxcGetOSType(virDomainPtr dom)
D
Daniel Veillard 已提交
604
{
605 606 607
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
608

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

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

621 622
    ret = strdup(vm->def->os.type);

623
    if (ret == NULL)
624
        virReportOOMError();
625

626
cleanup:
627 628
    if (vm)
        virDomainObjUnlock(vm);
629
    return ret;
D
Daniel Veillard 已提交
630 631
}

R
Ryota Ozaki 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644
/* Returns max memory in kb, 0 if error */
static unsigned long lxcDomainGetMaxMemory(virDomainPtr dom) {
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    unsigned long ret = 0;

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

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
645
        lxcError(VIR_ERR_NO_DOMAIN,
646
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
647 648 649
        goto cleanup;
    }

650
    ret = vm->def->mem.max_balloon;
R
Ryota Ozaki 已提交
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669

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);
670
        lxcError(VIR_ERR_NO_DOMAIN,
671
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
672 673 674
        goto cleanup;
    }

675
    if (newmax < vm->def->mem.cur_balloon) {
676
        lxcError(VIR_ERR_INVALID_ARG,
677
                         "%s", _("Cannot set max memory lower than current memory"));
R
Ryota Ozaki 已提交
678 679 680
        goto cleanup;
    }

681
    vm->def->mem.max_balloon = newmax;
R
Ryota Ozaki 已提交
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
    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);
702
        lxcError(VIR_ERR_NO_DOMAIN,
703
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
704 705 706
        goto cleanup;
    }

707
    if (newmem > vm->def->mem.max_balloon) {
708
        lxcError(VIR_ERR_INVALID_ARG,
709
                 "%s", _("Cannot set memory higher than max memory"));
R
Ryota Ozaki 已提交
710 711 712
        goto cleanup;
    }

713 714 715 716 717
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }
718

719 720 721 722 723
    if (driver->cgroup == NULL) {
        lxcError(VIR_ERR_NO_SUPPORT,
                 "%s", _("cgroups must be configured on the host"));
        goto cleanup;
    }
R
Ryota Ozaki 已提交
724

725 726 727 728
    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 已提交
729
    }
730 731 732 733 734 735 736

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

R
Ryota Ozaki 已提交
737 738 739 740 741 742 743 744 745 746
    ret = 0;

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

747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
static int lxcDomainSetMemoryParameters(virDomainPtr dom,
                                        virMemoryParameterPtr params,
                                        int nparams,
                                        unsigned int flags ATTRIBUTE_UNUSED)
{
    lxc_driver_t *driver = dom->conn->privateData;
    int i;
    virCgroupPtr cgroup = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;

    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++) {
        virMemoryParameterPtr param = &params[i];

        if (STREQ(param->field, VIR_DOMAIN_MEMORY_HARD_LIMIT)) {
            int rc;
            if (param->type != VIR_DOMAIN_MEMORY_PARAM_ULLONG) {
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for memory hard_limit tunable, expected a 'ullong'"));
                ret = -1;
                continue;
            }

            rc = virCgroupSetMemoryHardLimit(cgroup, params[i].value.ul);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to set memory hard_limit tunable"));
                ret = -1;
            }
        } else if (STREQ(param->field, VIR_DOMAIN_MEMORY_SOFT_LIMIT)) {
            int rc;
            if (param->type != VIR_DOMAIN_MEMORY_PARAM_ULLONG) {
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for memory soft_limit tunable, expected a 'ullong'"));
                ret = -1;
                continue;
            }

            rc = virCgroupSetMemorySoftLimit(cgroup, params[i].value.ul);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to set memory soft_limit tunable"));
                ret = -1;
            }
809
        } else if (STREQ(param->field, VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT)) {
810 811 812 813 814 815 816 817
            int rc;
            if (param->type != VIR_DOMAIN_MEMORY_PARAM_ULLONG) {
                lxcError(VIR_ERR_INVALID_ARG, "%s",
                         _("invalid type for swap_hard_limit tunable, expected a 'ullong'"));
                ret = -1;
                continue;
            }

818
            rc = virCgroupSetMemSwapHardLimit(cgroup, params[i].value.ul);
819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to set swap_hard_limit tunable"));
                ret = -1;
            }
        } else if (STREQ(param->field, VIR_DOMAIN_MEMORY_MIN_GUARANTEE)) {
            lxcError(VIR_ERR_INVALID_ARG,
                     _("Memory tunable `%s' not implemented"), param->field);
            ret = -1;
        } else {
            lxcError(VIR_ERR_INVALID_ARG,
                     _("Parameter `%s' not supported"), param->field);
            ret = -1;
        }
    }

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

844 845 846 847 848 849 850 851 852
static int lxcDomainGetMemoryParameters(virDomainPtr dom,
                                        virMemoryParameterPtr params,
                                        int *nparams,
                                        unsigned int flags ATTRIBUTE_UNUSED)
{
    lxc_driver_t *driver = dom->conn->privateData;
    int i;
    virCgroupPtr cgroup = NULL;
    virDomainObjPtr vm = NULL;
853
    unsigned long long val;
854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
    int ret = -1;
    int rc;

    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 ((*nparams) != LXC_NB_MEM_PARAM) {
        lxcError(VIR_ERR_INVALID_ARG,
                 "%s", _("Invalid parameter count"));
        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;
    }

    for (i = 0; i < *nparams; i++) {
        virMemoryParameterPtr param = &params[i];
        val = 0;
        param->value.ul = 0;
        param->type = VIR_DOMAIN_MEMORY_PARAM_ULLONG;

        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"));
898
                goto cleanup;
899 900 901 902
            }
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_HARD_LIMIT) == NULL) {
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field memory hard limit too long for destination"));
903
                goto cleanup;
904 905 906 907 908 909 910 911 912
            }
            param->value.ul = val;
            break;

        case 1: /* fill memory soft limit here */
            rc = virCgroupGetMemorySoftLimit(cgroup, &val);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to get memory soft limit"));
913
                goto cleanup;
914 915 916 917
            }
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_SOFT_LIMIT) == NULL) {
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field memory soft limit too long for destination"));
918
                goto cleanup;
919 920 921 922 923
            }
            param->value.ul = val;
            break;

        case 2: /* fill swap hard limit here */
924
            rc = virCgroupGetMemSwapHardLimit(cgroup, &val);
925 926 927
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to get swap hard limit"));
928
                goto cleanup;
929
            }
930
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT) == NULL) {
931 932
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field swap hard limit too long for destination"));
933
                goto cleanup;
934 935 936 937 938 939 940 941 942 943
            }
            param->value.ul = val;
            break;

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

944 945
    ret = 0;

946 947 948 949 950 951 952 953 954
cleanup:
    if (cgroup)
        virCgroupFree(&cgroup);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}

955 956
static char *lxcDomainGetXMLDesc(virDomainPtr dom,
                                 int flags)
D
Daniel Veillard 已提交
957
{
958 959 960
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
D
Daniel Veillard 已提交
961

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

D
Daniel Veillard 已提交
966
    if (!vm) {
967 968 969 970
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
971
        goto cleanup;
D
Daniel Veillard 已提交
972 973
    }

974
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) &&
975 976 977 978
                             vm->newDef ? vm->newDef : vm->def,
                             flags);

cleanup:
979 980
    if (vm)
        virDomainObjUnlock(vm);
981
    return ret;
D
Daniel Veillard 已提交
982 983
}

984 985 986

/**
 * lxcVmCleanup:
987 988
 * @driver: pointer to driver structure
 * @vm: pointer to VM to clean up
J
Jiri Denemark 已提交
989
 * @reason: reason for switching the VM to shutoff state
990
 *
991
 * Cleanout resources associated with the now dead VM
992 993
 *
 */
994
static void lxcVmCleanup(lxc_driver_t *driver,
J
Jiri Denemark 已提交
995 996
                         virDomainObjPtr vm,
                         virDomainShutoffReason reason)
997
{
D
Dan Smith 已提交
998
    virCgroupPtr cgroup;
999
    int i;
1000
    lxcDomainObjPrivatePtr priv = vm->privateData;
1001

1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
    /* now that we know it's stopped call the hook if present */
    if (virHookPresent(VIR_HOOK_DRIVER_LXC)) {
        char *xml = virDomainDefFormat(vm->def, 0);

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

1012
    virEventRemoveHandle(priv->monitorWatch);
1013
    VIR_FORCE_CLOSE(priv->monitor);
1014 1015

    virFileDeletePid(driver->stateDir, vm->def->name);
1016
    virDomainDeleteConfig(driver->stateDir, NULL, vm);
1017

J
Jiri Denemark 已提交
1018
    virDomainObjSetState(vm, VIR_DOMAIN_SHUTOFF, reason);
1019 1020
    vm->pid = -1;
    vm->def->id = -1;
1021 1022
    priv->monitor = -1;
    priv->monitorWatch = -1;
1023

1024 1025 1026
    for (i = 0 ; i < vm->def->nnets ; i++) {
        vethInterfaceUpOrDown(vm->def->nets[i]->ifname, 0);
        vethDelete(vm->def->nets[i]->ifname);
1027 1028
    }

1029 1030
    if (driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0) {
D
Dan Smith 已提交
1031 1032 1033 1034
        virCgroupRemove(cgroup);
        virCgroupFree(&cgroup);
    }

1035 1036 1037 1038 1039 1040
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }
1041 1042
}

1043 1044
/**
 * lxcSetupInterfaces:
1045
 * @conn: pointer to connection
1046
 * @def: pointer to virtual machine structure
1047 1048
 * @nveths: number of interfaces
 * @veths: interface names
1049 1050 1051 1052 1053 1054 1055 1056
 *
 * 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,
1057
                              virDomainDefPtr def,
1058 1059
                              unsigned int *nveths,
                              char ***veths)
1060
{
1061
    int rc = -1, i;
1062 1063
    char *bridge = NULL;
    brControl *brctl = NULL;
1064
    int ret;
1065

1066 1067 1068
    if ((ret = brInit(&brctl)) != 0) {
        virReportSystemError(ret, "%s",
                             _("Unable to initialize bridging"));
1069
        return -1;
1070
    }
1071

1072
    for (i = 0 ; i < def->nnets ; i++) {
1073 1074
        char *parentVeth;
        char *containerVeth = NULL;
1075

1076
        switch (def->nets[i]->type) {
1077 1078
        case VIR_DOMAIN_NET_TYPE_NETWORK:
        {
1079 1080 1081 1082
            virNetworkPtr network;

            network = virNetworkLookupByName(conn,
                                             def->nets[i]->data.network.name);
1083 1084 1085 1086 1087 1088 1089
            if (!network) {
                goto error_exit;
            }

            bridge = virNetworkGetBridgeName(network);

            virNetworkFree(network);
1090 1091 1092
            break;
        }
        case VIR_DOMAIN_NET_TYPE_BRIDGE:
1093
            bridge = def->nets[i]->data.bridge.brname;
1094
            break;
S
Stefan Berger 已提交
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104

        case VIR_DOMAIN_NET_TYPE_USER:
        case VIR_DOMAIN_NET_TYPE_ETHERNET:
        case VIR_DOMAIN_NET_TYPE_SERVER:
        case VIR_DOMAIN_NET_TYPE_CLIENT:
        case VIR_DOMAIN_NET_TYPE_MCAST:
        case VIR_DOMAIN_NET_TYPE_INTERNAL:
        case VIR_DOMAIN_NET_TYPE_DIRECT:
        case VIR_DOMAIN_NET_TYPE_LAST:
            break;
1105 1106
        }

1107
        VIR_DEBUG("bridge: %s", bridge);
1108
        if (NULL == bridge) {
1109
            lxcError(VIR_ERR_INTERNAL_ERROR,
1110
                     "%s", _("Failed to get bridge for interface"));
1111 1112 1113
            goto error_exit;
        }

1114
        VIR_DEBUG("calling vethCreate()");
1115 1116
        parentVeth = def->nets[i]->ifname;
        if (vethCreate(&parentVeth, &containerVeth) < 0)
1117
            goto error_exit;
1118
        VIR_DEBUG("parentVeth: %s, containerVeth: %s", parentVeth, containerVeth);
1119

1120
        if (NULL == def->nets[i]->ifname) {
1121
            def->nets[i]->ifname = parentVeth;
1122
        }
1123

1124
        if (VIR_REALLOC_N(*veths, (*nveths)+1) < 0) {
1125
            virReportOOMError();
1126
            VIR_FREE(containerVeth);
1127
            goto error_exit;
1128
        }
1129
        (*veths)[(*nveths)] = containerVeth;
1130
        (*nveths)++;
1131

1132
        {
1133 1134
            char macaddr[VIR_MAC_STRING_BUFLEN];
            virFormatMacAddr(def->nets[i]->mac, macaddr);
1135
            if (setMacAddr(containerVeth, macaddr) < 0)
1136 1137 1138
                goto error_exit;
        }

1139
        if ((ret = brAddInterface(brctl, bridge, parentVeth)) != 0) {
E
Eric Blake 已提交
1140
            virReportSystemError(ret,
1141
                                 _("Failed to add %s device to %s"),
1142
                                 parentVeth, bridge);
1143 1144 1145
            goto error_exit;
        }

1146
        if (vethInterfaceUpOrDown(parentVeth, 1) < 0)
1147 1148 1149 1150 1151 1152
            goto error_exit;
    }

    rc = 0;

error_exit:
1153
    brShutdown(brctl);
1154 1155 1156
    return rc;
}

1157

1158
static int lxcMonitorClient(lxc_driver_t * driver,
1159
                            virDomainObjPtr vm)
1160
{
1161 1162 1163
    char *sockpath = NULL;
    int fd;
    struct sockaddr_un addr;
1164

1165 1166
    if (virAsprintf(&sockpath, "%s/%s.sock",
                    driver->stateDir, vm->def->name) < 0) {
1167
        virReportOOMError();
1168 1169 1170 1171
        return -1;
    }

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
1172
        virReportSystemError(errno, "%s",
1173
                             _("Failed to create client socket"));
1174
        goto error;
1175 1176
    }

1177 1178
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
1179
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
1180
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
1181 1182 1183
                 _("Socket path %s too big for destination"), sockpath);
        goto error;
    }
1184 1185

    if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
1186
        virReportSystemError(errno, "%s",
1187
                             _("Failed to connect to client socket"));
1188
        goto error;
1189 1190
    }

1191 1192
    VIR_FREE(sockpath);
    return fd;
1193

1194 1195
error:
    VIR_FREE(sockpath);
1196
    VIR_FORCE_CLOSE(fd);
1197 1198 1199 1200
    return -1;
}


1201
static int lxcVmTerminate(lxc_driver_t *driver,
J
Jiri Denemark 已提交
1202 1203
                          virDomainObjPtr vm,
                          virDomainShutoffReason reason)
1204
{
1205 1206
    virCgroupPtr group = NULL;
    int rc;
1207

1208
    if (vm->pid <= 0) {
1209
        lxcError(VIR_ERR_INTERNAL_ERROR,
1210
                 _("Invalid PID %d for container"), vm->pid);
1211 1212 1213
        return -1;
    }

1214 1215 1216 1217 1218 1219 1220 1221 1222
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
        return -1;

    rc = virCgroupKillPainfully(group);
    if (rc < 0) {
        virReportSystemError(-rc, "%s",
                             _("Failed to kill container PIDs"));
        rc = -1;
        goto cleanup;
1223
    }
1224 1225 1226 1227 1228 1229
    if (rc == 1) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("Some container PIDs refused to die"));
        rc = -1;
        goto cleanup;
    }
J
Jiri Denemark 已提交
1230
    lxcVmCleanup(driver, vm, reason);
1231

1232
    rc = 0;
1233

1234 1235 1236
cleanup:
    virCgroupFree(&group);
    return rc;
1237
}
1238

1239 1240
static void lxcMonitorEvent(int watch,
                            int fd,
1241 1242 1243
                            int events ATTRIBUTE_UNUSED,
                            void *data)
{
1244 1245
    lxc_driver_t *driver = lxc_driver;
    virDomainObjPtr vm = data;
1246
    virDomainEventPtr event = NULL;
1247
    lxcDomainObjPrivatePtr priv;
1248

1249
    lxcDriverLock(driver);
1250 1251
    virDomainObjLock(vm);
    lxcDriverUnlock(driver);
1252

1253 1254 1255
    priv = vm->privateData;

    if (priv->monitor != fd || priv->monitorWatch != watch) {
1256
        virEventRemoveHandle(watch);
1257
        goto cleanup;
1258 1259
    }

J
Jiri Denemark 已提交
1260
    if (lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_SHUTDOWN) < 0) {
1261
        virEventRemoveHandle(watch);
1262 1263 1264 1265 1266
    } else {
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
    }
1267 1268 1269 1270
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1271 1272

cleanup:
1273 1274
    if (vm)
        virDomainObjUnlock(vm);
1275 1276
    if (event) {
        lxcDriverLock(driver);
1277
        lxcDomainEventQueue(driver, event);
1278 1279
        lxcDriverUnlock(driver);
    }
1280 1281 1282
}


1283
static int lxcControllerStart(lxc_driver_t *driver,
1284 1285 1286 1287
                              virDomainObjPtr vm,
                              int nveths,
                              char **veths,
                              int appPty,
1288
                              int logfile)
1289 1290
{
    int i;
1291
    int ret = -1;
A
Amy Griffis 已提交
1292 1293
    char *filterstr;
    char *outputstr;
1294
    virCommandPtr cmd;
1295 1296 1297
    off_t pos = -1;
    char ebuf[1024];
    char *timestamp;
1298 1299 1300 1301 1302 1303 1304 1305

    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 已提交
1306 1307 1308

    if (virLogGetNbFilters() > 0) {
        filterstr = virLogGetFilters();
1309 1310 1311 1312 1313 1314
        if (!filterstr) {
            virReportOOMError();
            goto cleanup;
        }

        virCommandAddEnvPair(cmd, "LIBVIRT_LOG_FILTERS", filterstr);
A
Amy Griffis 已提交
1315 1316 1317
        VIR_FREE(filterstr);
    }

A
Amy Griffis 已提交
1318 1319 1320
    if (driver->log_libvirtd) {
        if (virLogGetNbOutputs() > 0) {
            outputstr = virLogGetOutputs();
1321 1322 1323 1324 1325 1326
            if (!outputstr) {
                virReportOOMError();
                goto cleanup;
            }

            virCommandAddEnvPair(cmd, "LIBVIRT_LOG_OUTPUTS", outputstr);
A
Amy Griffis 已提交
1327 1328 1329
            VIR_FREE(outputstr);
        }
    } else {
1330 1331 1332
        virCommandAddEnvFormat(cmd,
                               "LIBVIRT_LOG_OUTPUTS=%d:stderr",
                               virLogGetDefaultPriority());
A
Amy Griffis 已提交
1333 1334
    }

1335 1336 1337
    virCommandAddArgList(cmd, "--name", vm->def->name, "--console", NULL);
    virCommandAddArgFormat(cmd, "%d", appPty);
    virCommandAddArg(cmd, "--background");
1338 1339

    for (i = 0 ; i < nveths ; i++) {
1340
        virCommandAddArgList(cmd, "--veth", veths[i], NULL);
1341 1342
    }

1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
    /* now that we know it is about to start call the hook if present */
    if (virHookPresent(VIR_HOOK_DRIVER_LXC)) {
        char *xml = virDomainDefFormat(vm->def, 0);
        int hookret;

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

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

1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
    /* Log timestamp */
    if ((timestamp = virTimestamp()) == NULL) {
        virReportOOMError();
        goto cleanup;
    }
    if (safewrite(logfile, timestamp, strlen(timestamp)) < 0 ||
        safewrite(logfile, START_POSTFIX, strlen(START_POSTFIX)) < 0) {
        VIR_WARN("Unable to write timestamp to logfile: %s",
                 virStrerror(errno, ebuf, sizeof ebuf));
    }
    VIR_FREE(timestamp);

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

1377 1378 1379
    virCommandPreserveFD(cmd, appPty);
    virCommandSetOutputFD(cmd, &logfile);
    virCommandSetErrorFD(cmd, &logfile);
1380

1381
    ret = virCommandRun(cmd, NULL);
1382

A
Amy Griffis 已提交
1383
cleanup:
1384 1385
    virCommandFree(cmd);
    return ret;
1386 1387 1388
}


1389 1390 1391 1392 1393
/**
 * lxcVmStart:
 * @conn: pointer to connection
 * @driver: pointer to driver structure
 * @vm: pointer to virtual machine structure
J
Jiri Denemark 已提交
1394
 * @reason: reason for switching vm to running state
1395 1396 1397 1398 1399 1400 1401
 *
 * 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 已提交
1402 1403
                      virDomainObjPtr vm,
                      virDomainRunningReason reason)
1404
{
1405
    int rc = -1, r;
1406 1407
    unsigned int i;
    int parentTty;
1408
    char *parentTtyPath = NULL;
1409 1410 1411 1412
    char *logfile = NULL;
    int logfd = -1;
    unsigned int nveths = 0;
    char **veths = NULL;
1413
    lxcDomainObjPrivatePtr priv = vm->privateData;
1414

1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439
    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;
    }

L
Laine Stump 已提交
1440
    if ((r = virFileMakePath(driver->logDir)) != 0) {
1441
        virReportSystemError(r,
1442
                             _("Cannot create log directory '%s'"),
1443
                             driver->logDir);
1444 1445
        return -1;
    }
1446

1447 1448
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1449
        virReportOOMError();
1450
        return -1;
1451 1452
    }

1453
    /* open parent tty */
1454
    if (virFileOpenTty(&parentTty, &parentTtyPath, 1) < 0) {
1455
        virReportSystemError(errno, "%s",
1456
                             _("Failed to allocate tty"));
1457 1458
        goto cleanup;
    }
1459
    if (vm->def->console &&
1460 1461 1462
        vm->def->console->source.type == VIR_DOMAIN_CHR_TYPE_PTY) {
        VIR_FREE(vm->def->console->source.data.file.path);
        vm->def->console->source.data.file.path = parentTtyPath;
1463 1464 1465
    } else {
        VIR_FREE(parentTtyPath);
    }
1466

1467
    if (lxcSetupInterfaces(conn, vm->def, &nveths, &veths) != 0)
1468
        goto cleanup;
1469

1470
    /* Save the configuration for the controller */
1471
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
1472 1473
        goto cleanup;

1474
    if ((logfd = open(logfile, O_WRONLY | O_APPEND | O_CREAT,
1475
             S_IRUSR|S_IWUSR)) < 0) {
1476
        virReportSystemError(errno,
1477
                             _("Failed to open '%s'"),
1478
                             logfile);
1479
        goto cleanup;
1480 1481
    }

1482
    if (lxcControllerStart(driver,
1483 1484 1485
                           vm,
                           nveths, veths,
                           parentTty, logfd) < 0)
1486
        goto cleanup;
1487 1488 1489 1490

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

1494
    /* And get its pid */
1495
    if ((r = virFileReadPid(driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1496
        virReportSystemError(r,
1497 1498
                             _("Failed to read pid file %s/%s.pid"),
                             driver->stateDir, vm->def->name);
1499
        goto cleanup;
1500
    }
1501

1502
    vm->def->id = vm->pid;
J
Jiri Denemark 已提交
1503
    virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, reason);
1504

1505 1506
    if ((priv->monitorWatch = virEventAddHandle(
             priv->monitor,
1507 1508
             VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
             lxcMonitorEvent,
1509
             vm, NULL)) < 0) {
J
Jiri Denemark 已提交
1510
        lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED);
1511 1512
        goto cleanup;
    }
1513

1514 1515 1516 1517 1518 1519 1520
    /*
     * Again, need to save the live configuration, because the function
     * requires vm->def->id != -1 to save tty info surely.
     */
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
        goto cleanup;

1521
    if (virDomainObjSetDefTransient(driver->caps, vm, false) < 0)
1522 1523
        goto cleanup;

1524 1525 1526
    rc = 0;

cleanup:
1527 1528 1529 1530
    if (VIR_CLOSE(logfd) < 0) {
        virReportSystemError(errno, "%s", _("could not close logfile"));
        rc = -1;
    }
1531 1532 1533 1534 1535
    for (i = 0 ; i < nveths ; i++) {
        if (rc != 0)
            vethDelete(veths[i]);
        VIR_FREE(veths[i]);
    }
1536 1537 1538
    if (rc != 0)
        VIR_FORCE_CLOSE(priv->monitor);
    VIR_FORCE_CLOSE(parentTty);
1539
    VIR_FREE(logfile);
1540 1541 1542 1543
    return rc;
}

/**
1544
 * lxcDomainStartWithFlags:
1545
 * @dom: domain to start
1546
 * @flags: Must be 0 for now
1547 1548 1549 1550 1551
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
1552
static int lxcDomainStartWithFlags(virDomainPtr dom, unsigned int flags)
1553
{
1554 1555
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1556
    virDomainEventPtr event = NULL;
1557
    int ret = -1;
1558

1559 1560
    virCheckFlags(0, -1);

1561
    lxcDriverLock(driver);
1562
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1563
    if (!vm) {
1564 1565 1566 1567
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1568 1569 1570
        goto cleanup;
    }

1571
    if ((vm->def->nets != NULL) && !(driver->have_netns)) {
1572
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1573
                 "%s", _("System lacks NETNS support"));
1574 1575 1576
        goto cleanup;
    }

1577 1578 1579 1580 1581 1582
    if (virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is already running"));
        goto cleanup;
    }

J
Jiri Denemark 已提交
1583
    ret = lxcVmStart(dom->conn, driver, vm, VIR_DOMAIN_RUNNING_BOOTED);
1584

1585 1586 1587 1588 1589
    if (ret == 0)
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);

1590
cleanup:
1591 1592
    if (vm)
        virDomainObjUnlock(vm);
1593 1594
    if (event)
        lxcDomainEventQueue(driver, event);
1595
    lxcDriverUnlock(driver);
1596
    return ret;
1597 1598
}

1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611
/**
 * 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);
}

1612 1613 1614 1615
/**
 * lxcDomainCreateAndStart:
 * @conn: pointer to connection
 * @xml: XML definition of domain
1616
 * @flags: Must be 0 for now
1617 1618 1619 1620 1621 1622 1623 1624
 *
 * 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,
1625
                        unsigned int flags) {
1626
    lxc_driver_t *driver = conn->privateData;
1627
    virDomainObjPtr vm = NULL;
1628
    virDomainDefPtr def;
1629
    virDomainPtr dom = NULL;
1630
    virDomainEventPtr event = NULL;
1631

1632 1633
    virCheckFlags(0, NULL);

1634
    lxcDriverLock(driver);
1635
    if (!(def = virDomainDefParseString(driver->caps, xml,
1636
                                        VIR_DOMAIN_XML_INACTIVE)))
1637
        goto cleanup;
1638

1639 1640
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
        goto cleanup;
1641

1642
    if ((def->nets != NULL) && !(driver->have_netns)) {
1643
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1644
                 "%s", _("System lacks NETNS support"));
1645
        goto cleanup;
1646 1647
    }

1648

1649
    if (!(vm = virDomainAssignDef(driver->caps,
1650
                                  &driver->domains, def, false)))
1651 1652
        goto cleanup;
    def = NULL;
1653

J
Jiri Denemark 已提交
1654
    if (lxcVmStart(conn, driver, vm, VIR_DOMAIN_RUNNING_BOOTED) < 0) {
1655
        virDomainRemoveInactive(&driver->domains, vm);
1656
        vm = NULL;
1657
        goto cleanup;
1658 1659
    }

1660 1661 1662 1663
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);

1664
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
1665
    if (dom)
1666 1667
        dom->id = vm->def->id;

1668 1669
cleanup:
    virDomainDefFree(def);
1670 1671
    if (vm)
        virDomainObjUnlock(vm);
1672 1673
    if (event)
        lxcDomainEventQueue(driver, event);
1674
    lxcDriverUnlock(driver);
1675 1676 1677
    return dom;
}

1678 1679

static int
1680 1681 1682 1683
lxcDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
1684 1685 1686 1687 1688
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
1689 1690
    ret = virDomainEventCallbackListAdd(conn,
                                        driver->domainEventState->callbacks,
1691
                                        callback, opaque, freecb);
1692
    lxcDriverUnlock(driver);
1693

1694
    return ret;
1695 1696
}

1697

1698
static int
1699 1700
lxcDomainEventDeregister(virConnectPtr conn,
                         virConnectDomainEventCallback callback)
1701 1702 1703 1704 1705
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
1706 1707 1708
    ret = virDomainEventStateDeregister(conn,
                                        driver->domainEventState,
                                        callback);
1709 1710 1711 1712 1713
    lxcDriverUnlock(driver);

    return ret;
}

1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727

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

    lxcDriverLock(driver);
    ret = virDomainEventCallbackListAddID(conn,
1728
                                          driver->domainEventState->callbacks,
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744
                                          dom, eventID,
                                          callback, opaque, freecb);
    lxcDriverUnlock(driver);

    return ret;
}


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

    lxcDriverLock(driver);
1745 1746 1747
    ret = virDomainEventStateDeregisterAny(conn,
                                           driver->domainEventState,
                                           callbackID);
1748 1749 1750 1751 1752 1753
    lxcDriverUnlock(driver);

    return ret;
}


1754 1755
static void lxcDomainEventDispatchFunc(virConnectPtr conn,
                                       virDomainEventPtr event,
1756
                                       virConnectDomainEventGenericCallback cb,
1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
                                       void *cbopaque,
                                       void *opaque)
{
    lxc_driver_t *driver = opaque;

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


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

    lxcDriverLock(driver);
1774 1775 1776
    virDomainEventStateFlush(driver->domainEventState,
                             lxcDomainEventDispatchFunc,
                             driver);
1777 1778 1779 1780 1781 1782 1783 1784
    lxcDriverUnlock(driver);
}


/* driver must be locked before calling */
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                 virDomainEventPtr event)
{
1785
    virDomainEventStateQueue(driver->domainEventState, event);
1786
}
1787 1788 1789

/**
 * lxcDomainDestroy:
1790
 * @dom: pointer to domain to destroy
1791 1792 1793 1794 1795 1796 1797
 *
 * 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)
{
1798 1799
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1800
    virDomainEventPtr event = NULL;
1801
    int ret = -1;
1802

1803
    lxcDriverLock(driver);
1804
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1805
    if (!vm) {
1806 1807 1808 1809
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1810
        goto cleanup;
1811 1812
    }

1813 1814 1815 1816 1817 1818
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

J
Jiri Denemark 已提交
1819
    ret = lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
1820 1821 1822
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1823 1824 1825 1826
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1827 1828

cleanup:
1829 1830
    if (vm)
        virDomainObjUnlock(vm);
1831 1832
    if (event)
        lxcDomainEventQueue(driver, event);
1833
    lxcDriverUnlock(driver);
1834
    return ret;
1835
}
1836

1837 1838 1839 1840 1841
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

1842
    if (virRun(argv, &ip_rc) < 0 ||
1843 1844
        !(WIFEXITED(ip_rc) && (WEXITSTATUS(ip_rc) != 255)))
        return 0;
1845

1846 1847
    if (lxcContainerAvailable(LXC_CONTAINER_FEATURE_NET) < 0)
        return 0;
1848

1849
    return 1;
1850 1851
}

1852

1853 1854 1855 1856 1857 1858
struct lxcAutostartData {
    lxc_driver_t *driver;
    virConnectPtr conn;
};

static void
1859
lxcAutostartDomain(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
1860 1861 1862 1863 1864 1865
{
    virDomainObjPtr vm = payload;
    const struct lxcAutostartData *data = opaque;

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
1866
        !virDomainObjIsActive(vm)) {
J
Jiri Denemark 已提交
1867 1868
        int ret = lxcVmStart(data->conn, data->driver, vm,
                             VIR_DOMAIN_RUNNING_BOOTED);
1869 1870
        if (ret < 0) {
            virErrorPtr err = virGetLastError();
1871
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
                      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);
}

1886 1887 1888 1889 1890 1891 1892 1893 1894 1895
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 */

1896 1897
    struct lxcAutostartData data = { driver, conn };

1898
    lxcDriverLock(driver);
1899
    virHashForEach(driver->domains.objs, lxcAutostartDomain, &data);
1900 1901 1902 1903 1904 1905
    lxcDriverUnlock(driver);

    if (conn)
        virConnectClose(conn);
}

1906
static void
1907
lxcReconnectVM(void *payload, const void *name ATTRIBUTE_UNUSED, void *opaque)
1908 1909 1910 1911 1912
{
    virDomainObjPtr vm = payload;
    lxc_driver_t *driver = opaque;
    char *config = NULL;
    virDomainDefPtr tmp;
1913
    lxcDomainObjPrivatePtr priv;
1914 1915

    virDomainObjLock(vm);
1916 1917

    priv = vm->privateData;
1918
    if ((priv->monitor = lxcMonitorClient(driver, vm)) < 0) {
1919 1920 1921 1922 1923
        goto cleanup;
    }

    /* Read pid from controller */
    if ((virFileReadPid(lxc_driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1924
        VIR_FORCE_CLOSE(priv->monitor);
1925 1926 1927
        goto cleanup;
    }

1928
    if ((config = virDomainConfigFile(driver->stateDir,
1929 1930 1931 1932
                                      vm->def->name)) == NULL)
        goto cleanup;

    /* Try and load the live config */
1933
    tmp = virDomainDefParseFile(driver->caps, config, 0);
1934 1935 1936 1937 1938 1939 1940 1941
    VIR_FREE(config);
    if (tmp) {
        vm->newDef = vm->def;
        vm->def = tmp;
    }

    if (vm->pid != 0) {
        vm->def->id = vm->pid;
J
Jiri Denemark 已提交
1942 1943
        virDomainObjSetState(vm, VIR_DOMAIN_RUNNING,
                             VIR_DOMAIN_RUNNING_UNKNOWN);
1944 1945 1946 1947 1948 1949

        if ((priv->monitorWatch = virEventAddHandle(
                 priv->monitor,
                 VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
                 lxcMonitorEvent,
                 vm, NULL)) < 0) {
J
Jiri Denemark 已提交
1950
            lxcVmTerminate(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED);
1951 1952
            goto cleanup;
        }
1953 1954
    } else {
        vm->def->id = -1;
1955
        VIR_FORCE_CLOSE(priv->monitor);
1956 1957 1958 1959 1960 1961
    }

cleanup:
    virDomainObjUnlock(vm);
}

1962

1963
static int lxcStartup(int privileged)
D
Daniel Veillard 已提交
1964
{
1965
    char *ld;
1966
    int rc;
1967 1968 1969 1970 1971 1972

    /* 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");
1973
    if (ld && strstr(ld, "vgpreload")) {
1974
        VIR_INFO("Running under valgrind, disabling driver");
1975 1976
        return 0;
    }
1977

1978
    /* Check that the user is root, silently disable if not */
1979
    if (!privileged) {
1980
        VIR_INFO("Not running privileged, disabling driver");
1981 1982 1983 1984 1985
        return 0;
    }

    /* Check that this is a container enabled kernel */
    if (lxcContainerAvailable(0) < 0) {
1986
        VIR_INFO("LXC support not available in this kernel, disabling driver");
1987
        return 0;
1988 1989
    }

1990
    if (VIR_ALLOC(lxc_driver) < 0) {
1991 1992
        return -1;
    }
1993 1994 1995 1996
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
1997
    lxcDriverLock(lxc_driver);
D
Daniel Veillard 已提交
1998

1999 2000 2001
    if (virDomainObjListInit(&lxc_driver->domains) < 0)
        goto cleanup;

2002 2003 2004 2005 2006
    lxc_driver->domainEventState = virDomainEventStateNew(lxcDomainEventFlush,
                                                          lxc_driver,
                                                          NULL,
                                                          true);
    if (!lxc_driver->domainEventState)
2007 2008
        goto cleanup;

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

2012 2013 2014
    rc = virCgroupForDriver("lxc", &lxc_driver->cgroup, privileged, 1);
    if (rc < 0) {
        char buf[1024];
2015 2016 2017 2018 2019
        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
         */
2020 2021
    }

D
Daniel Veillard 已提交
2022
    /* Call function to load lxc driver configuration information */
2023 2024
    if (lxcLoadDriverConfig(lxc_driver) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
2025

2026 2027
    if ((lxc_driver->caps = lxcCapsInit()) == NULL)
        goto cleanup;
D
Daniel Veillard 已提交
2028

2029 2030 2031
    lxc_driver->caps->privateDataAllocFunc = lxcDomainObjPrivateAlloc;
    lxc_driver->caps->privateDataFreeFunc = lxcDomainObjPrivateFree;

2032
    if (virDomainLoadAllConfigs(lxc_driver->caps,
2033 2034
                                &lxc_driver->domains,
                                lxc_driver->configDir,
2035
                                lxc_driver->autostartDir,
2036
                                0, NULL, NULL) < 0)
2037
        goto cleanup;
2038

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

2041
    lxcDriverUnlock(lxc_driver);
2042 2043 2044

    lxcAutostartConfigs(lxc_driver);

D
Daniel Veillard 已提交
2045 2046
    return 0;

2047 2048 2049 2050
cleanup:
    lxcDriverUnlock(lxc_driver);
    lxcShutdown();
    return -1;
D
Daniel Veillard 已提交
2051 2052
}

2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078
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);
2079
    virDomainLoadAllConfigs(lxc_driver->caps,
2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090
                            &lxc_driver->domains,
                            lxc_driver->configDir,
                            lxc_driver->autostartDir,
                            0, lxcNotifyLoadDomain, lxc_driver);
    lxcDriverUnlock(lxc_driver);

    lxcAutostartConfigs(lxc_driver);

    return 0;
}

2091
static int lxcShutdown(void)
D
Daniel Veillard 已提交
2092
{
2093
    if (lxc_driver == NULL)
2094
        return(-1);
2095

2096
    lxcDriverLock(lxc_driver);
2097
    virDomainObjListDeinit(&lxc_driver->domains);
2098
    virDomainEventStateFree(lxc_driver->domainEventState);
2099

2100 2101 2102 2103 2104 2105
    virCapabilitiesFree(lxc_driver->caps);
    VIR_FREE(lxc_driver->configDir);
    VIR_FREE(lxc_driver->autostartDir);
    VIR_FREE(lxc_driver->stateDir);
    VIR_FREE(lxc_driver->logDir);
    lxcDriverUnlock(lxc_driver);
2106
    virMutexDestroy(&lxc_driver->lock);
2107
    VIR_FREE(lxc_driver);
2108 2109 2110

    return 0;
}
D
Daniel Veillard 已提交
2111

2112 2113 2114 2115 2116 2117 2118 2119 2120
/**
 * lxcActive:
 *
 * Checks if the LXC daemon is active, i.e. has an active domain
 *
 * Returns 1 if active, 0 otherwise
 */
static int
lxcActive(void) {
2121
    int active;
2122

2123 2124
    if (lxc_driver == NULL)
        return(0);
2125

2126
    lxcDriverLock(lxc_driver);
2127
    active = virDomainObjListNumOfDomains(&lxc_driver->domains, 1);
2128
    lxcDriverUnlock(lxc_driver);
2129

2130
    return active;
D
Daniel Veillard 已提交
2131 2132
}

2133
static int lxcVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *version)
D
Dan Smith 已提交
2134 2135 2136
{
    struct utsname ver;

2137
    uname(&ver);
D
Dan Smith 已提交
2138

2139 2140
    if (virParseVersionString(ver.release, version) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, _("Unknown release: %s"), ver.release);
D
Dan Smith 已提交
2141 2142 2143 2144 2145
        return -1;
    }

    return 0;
}
2146

2147 2148
static char *lxcGetSchedulerType(virDomainPtr domain ATTRIBUTE_UNUSED,
                                 int *nparams)
2149
{
2150 2151
    char *schedulerType = NULL;

2152 2153 2154
    if (nparams)
        *nparams = 1;

2155 2156 2157
    schedulerType = strdup("posix");

    if (schedulerType == NULL)
2158
        virReportOOMError();
2159 2160

    return schedulerType;
2161 2162
}

2163
static int lxcSetSchedulerParameters(virDomainPtr domain,
2164 2165 2166
                                     virSchedParameterPtr params,
                                     int nparams)
{
2167
    lxc_driver_t *driver = domain->conn->privateData;
2168
    int i;
2169 2170 2171
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;
2172

2173
    if (driver->cgroup == NULL)
2174 2175 2176 2177
        return -1;

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

2179
    if (vm == NULL) {
2180 2181 2182 2183
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(domain->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2184
        goto cleanup;
2185 2186
    }

2187
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2188
        goto cleanup;
2189 2190 2191

    for (i = 0; i < nparams; i++) {
        virSchedParameterPtr param = &params[i];
2192 2193 2194 2195 2196 2197 2198

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

2199
        if (param->type != VIR_DOMAIN_SCHED_FIELD_ULLONG) {
2200
            lxcError(VIR_ERR_INVALID_ARG, "%s",
2201
                 _("Invalid type for cpu_shares tunable, expected a 'ullong'"));
2202 2203
            goto cleanup;
        }
2204

2205 2206 2207 2208
        int rc = virCgroupSetCpuShares(group, params[i].value.ul);
        if (rc != 0) {
            virReportSystemError(-rc, _("failed to set cpu_shares=%llu"),
                                 params[i].value.ul);
2209
            goto cleanup;
2210
        }
2211 2212

        vm->def->cputune.shares = params[i].value.ul;
2213
    }
2214
    ret = 0;
2215

2216
cleanup:
2217
    lxcDriverUnlock(driver);
2218
    virCgroupFree(&group);
2219 2220
    if (vm)
        virDomainObjUnlock(vm);
2221
    return ret;
2222 2223
}

2224
static int lxcGetSchedulerParameters(virDomainPtr domain,
2225 2226 2227
                                     virSchedParameterPtr params,
                                     int *nparams)
{
2228
    lxc_driver_t *driver = domain->conn->privateData;
2229 2230
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
2231
    unsigned long long val;
2232
    int ret = -1;
2233

2234
    if (driver->cgroup == NULL)
2235
        return -1;
2236 2237

    if ((*nparams) != 1) {
2238
        lxcError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
2239
                 "%s", _("Invalid parameter count"));
2240
        return -1;
2241 2242
    }

2243 2244 2245
    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, domain->uuid);

2246
    if (vm == NULL) {
2247 2248 2249 2250
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(domain->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2251
        goto cleanup;
2252 2253
    }

2254
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2255
        goto cleanup;
2256

2257 2258
    if (virCgroupGetCpuShares(group, &val) != 0)
        goto cleanup;
2259
    params[0].value.ul = val;
C
Chris Lalancette 已提交
2260
    if (virStrcpyStatic(params[0].field, "cpu_shares") == NULL) {
2261
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
2262 2263 2264
                 "%s", _("Field cpu_shares too big for destination"));
        goto cleanup;
    }
2265 2266
    params[0].type = VIR_DOMAIN_SCHED_FIELD_ULLONG;

2267
    ret = 0;
2268

2269
cleanup:
2270
    lxcDriverUnlock(driver);
2271
    virCgroupFree(&group);
2272 2273
    if (vm)
        virDomainObjUnlock(vm);
2274
    return ret;
2275 2276
}

2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294
#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);
2295
        lxcError(VIR_ERR_NO_DOMAIN,
2296 2297 2298 2299 2300
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2301
        lxcError(VIR_ERR_OPERATION_INVALID,
2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315
                 "%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)
2316
        ret = linuxDomainInterfaceStats(path, stats);
2317
    else
2318
        lxcError(VIR_ERR_INVALID_ARG,
2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330
                 _("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)
2331
    lxcError(VIR_ERR_NO_SUPPORT, "%s", __FUNCTION__);
2332 2333 2334 2335
    return -1;
}
#endif

2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348
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);
2349
        lxcError(VIR_ERR_NO_DOMAIN,
2350
                 _("No domain with matching uuid '%s'"), uuidstr);
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375
        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);
2376
        lxcError(VIR_ERR_NO_DOMAIN,
2377
                 _("No domain with matching uuid '%s'"), uuidstr);
2378 2379 2380 2381
        goto cleanup;
    }

    if (!vm->persistent) {
2382
        lxcError(VIR_ERR_OPERATION_INVALID,
2383
                 "%s", _("Cannot set autostart for transient domain"));
2384 2385 2386 2387 2388
        goto cleanup;
    }

    autostart = (autostart != 0);

2389 2390 2391 2392
    if (vm->autostart == autostart) {
        ret = 0;
        goto cleanup;
    }
2393

2394
    configFile = virDomainConfigFile(driver->configDir,
2395 2396 2397
                                     vm->def->name);
    if (configFile == NULL)
        goto cleanup;
2398
    autostartLink = virDomainConfigFile(driver->autostartDir,
2399 2400 2401
                                        vm->def->name);
    if (autostartLink == NULL)
        goto cleanup;
2402

2403 2404
    if (autostart) {
        int err;
2405

2406
        if ((err = virFileMakePath(driver->autostartDir))) {
2407
            virReportSystemError(err,
2408 2409 2410
                                 _("Cannot create autostart directory %s"),
                                 driver->autostartDir);
            goto cleanup;
2411 2412
        }

2413
        if (symlink(configFile, autostartLink) < 0) {
2414
            virReportSystemError(errno,
2415 2416 2417 2418 2419 2420
                                 _("Failed to create symlink '%s to '%s'"),
                                 autostartLink, configFile);
            goto cleanup;
        }
    } else {
        if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2421
            virReportSystemError(errno,
2422 2423 2424 2425
                                 _("Failed to delete symlink '%s'"),
                                 autostartLink);
            goto cleanup;
        }
2426
    }
2427 2428

    vm->autostart = autostart;
2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
    ret = 0;

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

R
Ryota Ozaki 已提交
2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450
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 &&
2451
          virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
R
Ryota Ozaki 已提交
2452 2453
        return -1;

2454 2455
    /* From here on, we know that cgroup != NULL.  */

R
Ryota Ozaki 已提交
2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
    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)
2477
            VIR_DEBUG("Writing freezer.state gets EBUSY");
R
Ryota Ozaki 已提交
2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516

        /*
         * 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);
    }
2517
    VIR_DEBUG("lxcFreezeContainer timeout");
R
Ryota Ozaki 已提交
2518 2519 2520 2521 2522 2523 2524 2525 2526 2527
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:
2528
    virCgroupFree(&cgroup);
R
Ryota Ozaki 已提交
2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545
    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);
2546
        lxcError(VIR_ERR_NO_DOMAIN,
2547
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2548 2549 2550
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2551
    if (!virDomainObjIsActive(vm)) {
2552
        lxcError(VIR_ERR_OPERATION_INVALID,
2553
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2554 2555 2556
        goto cleanup;
    }

J
Jiri Denemark 已提交
2557
    if (virDomainObjGetState(vm, NULL) != VIR_DOMAIN_PAUSED) {
R
Ryota Ozaki 已提交
2558
        if (lxcFreezeContainer(driver, vm) < 0) {
2559
            lxcError(VIR_ERR_OPERATION_FAILED,
2560
                     "%s", _("Suspend operation failed"));
R
Ryota Ozaki 已提交
2561 2562
            goto cleanup;
        }
J
Jiri Denemark 已提交
2563
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
R
Ryota Ozaki 已提交
2564 2565 2566 2567 2568 2569

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

2570
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610
        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);
2611
        lxcError(VIR_ERR_NO_DOMAIN,
2612
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2613 2614 2615
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2616
    if (!virDomainObjIsActive(vm)) {
2617
        lxcError(VIR_ERR_OPERATION_INVALID,
2618
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2619 2620 2621
        goto cleanup;
    }

J
Jiri Denemark 已提交
2622
    if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED) {
R
Ryota Ozaki 已提交
2623
        if (lxcUnfreezeContainer(driver, vm) < 0) {
2624
            lxcError(VIR_ERR_OPERATION_FAILED,
2625
                     "%s", _("Resume operation failed"));
R
Ryota Ozaki 已提交
2626 2627
            goto cleanup;
        }
J
Jiri Denemark 已提交
2628 2629
        virDomainObjSetState(vm, VIR_DOMAIN_RUNNING,
                             VIR_DOMAIN_RUNNING_UNPAUSED);
R
Ryota Ozaki 已提交
2630 2631 2632 2633 2634 2635

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

2636
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648
        goto cleanup;
    ret = 0;

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

2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
static int
lxcDomainOpenConsole(virDomainPtr dom,
                      const char *devname,
                      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;

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

    if (devname) {
        /* XXX support device aliases in future */
        lxcError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                 _("Named device aliases are not supported"));
        goto cleanup;
    } else {
        if (vm->def->console)
            chr = vm->def->console;
        else if (vm->def->nserials)
            chr = vm->def->serials[0];
    }

    if (!chr) {
        lxcError(VIR_ERR_INTERNAL_ERROR, "%s",
                 _("cannot find default console device"));
        goto cleanup;
    }

2696
    if (chr->source.type != VIR_DOMAIN_CHR_TYPE_PTY) {
2697 2698 2699 2700 2701
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("character device %s is not using a PTY"), devname);
        goto cleanup;
    }

2702 2703
    if (virFDStreamOpenFile(st, chr->source.data.file.path,
                            0, 0, O_RDWR, false) < 0)
2704 2705 2706 2707 2708 2709 2710 2711 2712 2713
        goto cleanup;

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

R
Ryota Ozaki 已提交
2714

D
Daniel Veillard 已提交
2715 2716
/* Function Tables */
static virDriver lxcDriver = {
2717 2718
    VIR_DRV_LXC,
    "LXC",
D
Daniel Veillard 已提交
2719 2720 2721 2722
    lxcOpen, /* open */
    lxcClose, /* close */
    NULL, /* supports_feature */
    NULL, /* type */
D
Dan Smith 已提交
2723
    lxcVersion, /* version */
2724
    NULL, /* libvirtVersion (impl. in libvirt.c) */
2725
    virGetHostname, /* getHostname */
E
Eric Blake 已提交
2726
    NULL, /* getSysinfo */
D
Daniel Veillard 已提交
2727
    NULL, /* getMaxVcpus */
2728 2729
    nodeGetInfo, /* nodeGetInfo */
    lxcGetCapabilities, /* getCapabilities */
D
Daniel Veillard 已提交
2730 2731
    lxcListDomains, /* listDomains */
    lxcNumDomains, /* numOfDomains */
2732
    lxcDomainCreateAndStart, /* domainCreateXML */
D
Daniel Veillard 已提交
2733 2734 2735
    lxcDomainLookupByID, /* domainLookupByID */
    lxcDomainLookupByUUID, /* domainLookupByUUID */
    lxcDomainLookupByName, /* domainLookupByName */
R
Ryota Ozaki 已提交
2736 2737
    lxcDomainSuspend, /* domainSuspend */
    lxcDomainResume, /* domainResume */
2738
    NULL, /* domainShutdown */
D
Daniel Veillard 已提交
2739
    NULL, /* domainReboot */
2740
    lxcDomainDestroy, /* domainDestroy */
D
Daniel Veillard 已提交
2741
    lxcGetOSType, /* domainGetOSType */
R
Ryota Ozaki 已提交
2742 2743 2744
    lxcDomainGetMaxMemory, /* domainGetMaxMemory */
    lxcDomainSetMaxMemory, /* domainSetMaxMemory */
    lxcDomainSetMemory, /* domainSetMemory */
2745
    NULL, /* domainSetMemoryFlags */
2746 2747 2748 2749
    lxcDomainSetMemoryParameters, /* domainSetMemoryParameters */
    lxcDomainGetMemoryParameters, /* domainGetMemoryParameters */
    NULL, /* domainSetBlkioParameters */
    NULL, /* domainGetBlkioParameters */
D
Daniel Veillard 已提交
2750
    lxcDomainGetInfo, /* domainGetInfo */
2751
    lxcDomainGetState, /* domainGetState */
D
Daniel Veillard 已提交
2752 2753 2754
    NULL, /* domainSave */
    NULL, /* domainRestore */
    NULL, /* domainCoreDump */
2755
    NULL, /* domainScreenshot */
D
Daniel Veillard 已提交
2756
    NULL, /* domainSetVcpus */
E
Eric Blake 已提交
2757 2758
    NULL, /* domainSetVcpusFlags */
    NULL, /* domainGetVcpusFlags */
D
Daniel Veillard 已提交
2759 2760 2761
    NULL, /* domainPinVcpu */
    NULL, /* domainGetVcpus */
    NULL, /* domainGetMaxVcpus */
2762 2763
    NULL, /* domainGetSecurityLabel */
    NULL, /* nodeGetSecurityModel */
2764
    lxcDomainGetXMLDesc, /* domainGetXMLDesc */
2765 2766
    NULL, /* domainXMLFromNative */
    NULL, /* domainXMLToNative */
D
Daniel Veillard 已提交
2767 2768
    lxcListDefinedDomains, /* listDefinedDomains */
    lxcNumDefinedDomains, /* numOfDefinedDomains */
2769
    lxcDomainStart, /* domainCreate */
2770
    lxcDomainStartWithFlags, /* domainCreateWithFlags */
D
Daniel Veillard 已提交
2771 2772 2773
    lxcDomainDefine, /* domainDefineXML */
    lxcDomainUndefine, /* domainUndefine */
    NULL, /* domainAttachDevice */
2774
    NULL, /* domainAttachDeviceFlags */
D
Daniel Veillard 已提交
2775
    NULL, /* domainDetachDevice */
2776
    NULL, /* domainDetachDeviceFlags */
2777
    NULL, /* domainUpdateDeviceFlags */
2778 2779
    lxcDomainGetAutostart, /* domainGetAutostart */
    lxcDomainSetAutostart, /* domainSetAutostart */
2780 2781 2782
    lxcGetSchedulerType, /* domainGetSchedulerType */
    lxcGetSchedulerParameters, /* domainGetSchedulerParameters */
    lxcSetSchedulerParameters, /* domainSetSchedulerParameters */
D
Daniel Veillard 已提交
2783 2784 2785 2786
    NULL, /* domainMigratePrepare */
    NULL, /* domainMigratePerform */
    NULL, /* domainMigrateFinish */
    NULL, /* domainBlockStats */
2787
    lxcDomainInterfaceStats, /* domainInterfaceStats */
2788
    NULL, /* domainMemoryStats */
D
Daniel P. Berrange 已提交
2789 2790
    NULL, /* domainBlockPeek */
    NULL, /* domainMemoryPeek */
2791
    NULL, /* domainGetBlockInfo */
2792
    nodeGetCellsFreeMemory, /* nodeGetCellsFreeMemory */
2793
    nodeGetFreeMemory,  /* nodeGetFreeMemory */
2794 2795
    lxcDomainEventRegister, /* domainEventRegister */
    lxcDomainEventDeregister, /* domainEventDeregister */
D
Daniel Veillard 已提交
2796 2797
    NULL, /* domainMigratePrepare2 */
    NULL, /* domainMigrateFinish2 */
2798
    NULL, /* nodeDeviceDettach */
2799 2800
    NULL, /* nodeDeviceReAttach */
    NULL, /* nodeDeviceReset */
C
Chris Lalancette 已提交
2801
    NULL, /* domainMigratePrepareTunnel */
2802 2803 2804 2805
    lxcIsEncrypted, /* isEncrypted */
    lxcIsSecure, /* isSecure */
    lxcDomainIsActive, /* domainIsActive */
    lxcDomainIsPersistent, /* domainIsPersistent */
2806
    lxcDomainIsUpdated, /* domainIsUpdated */
J
Jiri Denemark 已提交
2807
    NULL, /* cpuCompare */
2808
    NULL, /* cpuBaseline */
2809
    NULL, /* domainGetJobInfo */
2810
    NULL, /* domainAbortJob */
2811
    NULL, /* domainMigrateSetMaxDowntime */
2812
    NULL, /* domainMigrateSetMaxSpeed */
2813 2814
    lxcDomainEventRegisterAny, /* domainEventRegisterAny */
    lxcDomainEventDeregisterAny, /* domainEventDeregisterAny */
2815 2816 2817
    NULL, /* domainManagedSave */
    NULL, /* domainHasManagedSaveImage */
    NULL, /* domainManagedSaveRemove */
C
Chris Lalancette 已提交
2818
    NULL, /* domainSnapshotCreateXML */
2819
    NULL, /* domainSnapshotGetXMLDesc */
C
Chris Lalancette 已提交
2820 2821 2822 2823 2824 2825 2826
    NULL, /* domainSnapshotNum */
    NULL, /* domainSnapshotListNames */
    NULL, /* domainSnapshotLookupByName */
    NULL, /* domainHasCurrentSnapshot */
    NULL, /* domainSnapshotCurrent */
    NULL, /* domainRevertToSnapshot */
    NULL, /* domainSnapshotDelete */
C
Chris Lalancette 已提交
2827
    NULL, /* qemuDomainMonitorCommand */
2828
    lxcDomainOpenConsole, /* domainOpenConsole */
2829
    NULL, /* domainInjectNMI */
D
Daniel Veillard 已提交
2830 2831
};

2832
static virStateDriver lxcStateDriver = {
2833
    .name = "LXC",
2834 2835 2836
    .initialize = lxcStartup,
    .cleanup = lxcShutdown,
    .active = lxcActive,
2837
    .reload = lxcReload,
2838 2839
};

D
Daniel Veillard 已提交
2840 2841 2842
int lxcRegister(void)
{
    virRegisterDriver(&lxcDriver);
2843
    virRegisterStateDriver(&lxcStateDriver);
D
Daniel Veillard 已提交
2844 2845
    return 0;
}