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

#include <config.h>

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

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

D
Daniel Veillard 已提交
57

58 59
#define VIR_FROM_THIS VIR_FROM_LXC

60 61
#define LXC_NB_MEM_PARAM  3

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


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

/* Functions */

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

85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
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);
}


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

110

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

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

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

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

    return VIR_DRV_OPEN_SUCCESS;
}

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

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

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

168 169 170 171 172 173 174 175 176 177 178 179 180 181 182

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


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

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

    return xml;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

278 279 280 281 282 283 284 285 286 287 288

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

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


329
static int lxcListDomains(virConnectPtr conn, int *ids, int nids) {
330
    lxc_driver_t *driver = conn->privateData;
331
    int n;
332

333
    lxcDriverLock(driver);
334
    n = virDomainObjListGetActiveIDs(&driver->domains, ids, nids);
335
    lxcDriverUnlock(driver);
336

337
    return n;
D
Daniel Veillard 已提交
338
}
339

340
static int lxcNumDomains(virConnectPtr conn) {
341
    lxc_driver_t *driver = conn->privateData;
342
    int n;
343

344
    lxcDriverLock(driver);
345
    n = virDomainObjListNumOfDomains(&driver->domains, 1);
346
    lxcDriverUnlock(driver);
347

348
    return n;
D
Daniel Veillard 已提交
349 350 351
}

static int lxcListDefinedDomains(virConnectPtr conn,
352
                                 char **const names, int nnames) {
353
    lxc_driver_t *driver = conn->privateData;
354
    int n;
355

356
    lxcDriverLock(driver);
357
    n = virDomainObjListGetInactiveNames(&driver->domains, names, nnames);
358
    lxcDriverUnlock(driver);
359

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


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

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

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

375 376


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

386
    lxcDriverLock(driver);
387
    if (!(def = virDomainDefParseString(driver->caps, xml,
388
                                        VIR_DOMAIN_XML_INACTIVE)))
389
        goto cleanup;
D
Daniel Veillard 已提交
390

391 392
   if ((dupVM = virDomainObjIsDuplicate(&driver->domains, def, 0)) < 0)
        goto cleanup;
393

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

400
    if (!(vm = virDomainAssignDef(driver->caps,
401
                                  &driver->domains, def, false)))
402 403
        goto cleanup;
    def = NULL;
404
    vm->persistent = 1;
D
Daniel Veillard 已提交
405

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

413 414
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_DEFINED,
415
                                     !dupVM ?
416 417 418
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                     VIR_DOMAIN_EVENT_DEFINED_UPDATED);

D
Daniel Veillard 已提交
419
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
420
    if (dom)
D
Daniel Veillard 已提交
421 422
        dom->id = vm->def->id;

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

static int lxcDomainUndefine(virDomainPtr dom)
{
435 436
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
437
    virDomainEventPtr event = NULL;
438
    int ret = -1;
D
Daniel Veillard 已提交
439

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

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

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

462
    if (virDomainDeleteConfig(driver->configDir,
463
                              driver->autostartDir,
464 465
                              vm) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
466

467 468 469 470
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

471
    virDomainRemoveInactive(&driver->domains, vm);
472
    vm = NULL;
473
    ret = 0;
D
Daniel Veillard 已提交
474

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

static int lxcDomainGetInfo(virDomainPtr dom,
                            virDomainInfoPtr info)
{
487 488
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
489
    virCgroupPtr cgroup = NULL;
490
    int ret = -1, rc;
D
Daniel Veillard 已提交
491

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

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

    info->state = vm->state;

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

        if (virCgroupGetCpuacctUsage(cgroup, &(info->cpuTime)) < 0) {
516
            lxcError(VIR_ERR_OPERATION_FAILED,
517
                     "%s", _("Cannot read cputime for domain"));
R
Ryota Ozaki 已提交
518 519
            goto cleanup;
        }
520
        if ((rc = virCgroupGetMemoryUsage(cgroup, &(info->memory))) < 0) {
521
            lxcError(VIR_ERR_OPERATION_FAILED,
522
                     "%s", _("Cannot read memory usage for domain"));
523 524 525 526 527 528
            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;
529
        }
D
Daniel Veillard 已提交
530 531
    }

532
    info->maxMem = vm->def->mem.max_balloon;
D
Daniel Veillard 已提交
533
    info->nrVirtCpu = 1;
534
    ret = 0;
D
Daniel Veillard 已提交
535

536
cleanup:
537
    lxcDriverUnlock(driver);
538 539
    if (cgroup)
        virCgroupFree(&cgroup);
540 541
    if (vm)
        virDomainObjUnlock(vm);
542
    return ret;
D
Daniel Veillard 已提交
543 544
}

545
static char *lxcGetOSType(virDomainPtr dom)
D
Daniel Veillard 已提交
546
{
547 548 549
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
550

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

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

563 564
    ret = strdup(vm->def->os.type);

565
    if (ret == NULL)
566
        virReportOOMError();
567

568
cleanup:
569 570
    if (vm)
        virDomainObjUnlock(vm);
571
    return ret;
D
Daniel Veillard 已提交
572 573
}

R
Ryota Ozaki 已提交
574 575 576 577 578 579 580 581 582 583 584 585 586
/* 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);
587
        lxcError(VIR_ERR_NO_DOMAIN,
588
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
589 590 591
        goto cleanup;
    }

592
    ret = vm->def->mem.max_balloon;
R
Ryota Ozaki 已提交
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611

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);
612
        lxcError(VIR_ERR_NO_DOMAIN,
613
                         _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
614 615 616
        goto cleanup;
    }

617
    if (newmax < vm->def->mem.cur_balloon) {
618
        lxcError(VIR_ERR_INVALID_ARG,
619
                         "%s", _("Cannot set max memory lower than current memory"));
R
Ryota Ozaki 已提交
620 621 622
        goto cleanup;
    }

623
    vm->def->mem.max_balloon = newmax;
R
Ryota Ozaki 已提交
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
    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);
644
        lxcError(VIR_ERR_NO_DOMAIN,
645
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
646 647 648
        goto cleanup;
    }

649
    if (newmem > vm->def->mem.max_balloon) {
650
        lxcError(VIR_ERR_INVALID_ARG,
651
                 "%s", _("Cannot set memory higher than max memory"));
R
Ryota Ozaki 已提交
652 653 654
        goto cleanup;
    }

655 656 657 658 659
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }
660

661 662 663 664 665
    if (driver->cgroup == NULL) {
        lxcError(VIR_ERR_NO_SUPPORT,
                 "%s", _("cgroups must be configured on the host"));
        goto cleanup;
    }
R
Ryota Ozaki 已提交
666

667 668 669 670
    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 已提交
671
    }
672 673 674 675 676 677 678

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

R
Ryota Ozaki 已提交
679 680 681 682 683 684 685 686 687 688
    ret = 0;

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

689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
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;
            }
751
        } else if (STREQ(param->field, VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT)) {
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
            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;
            }

            rc = virCgroupSetSwapHardLimit(cgroup, params[i].value.ul);
            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;
}

786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
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;
    unsigned long val;
    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"));
840
                goto cleanup;
841 842 843 844
            }
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_HARD_LIMIT) == NULL) {
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field memory hard limit too long for destination"));
845
                goto cleanup;
846 847 848 849 850 851 852 853 854
            }
            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"));
855
                goto cleanup;
856 857 858 859
            }
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_SOFT_LIMIT) == NULL) {
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field memory soft limit too long for destination"));
860
                goto cleanup;
861 862 863 864 865 866 867 868 869
            }
            param->value.ul = val;
            break;

        case 2: /* fill swap hard limit here */
            rc = virCgroupGetSwapHardLimit(cgroup, &val);
            if (rc != 0) {
                virReportSystemError(-rc, "%s",
                                     _("unable to get swap hard limit"));
870
                goto cleanup;
871
            }
872
            if (virStrcpyStatic(param->field, VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT) == NULL) {
873 874
                lxcError(VIR_ERR_INTERNAL_ERROR,
                         "%s", _("Field swap hard limit too long for destination"));
875
                goto cleanup;
876 877 878 879 880 881 882 883 884 885
            }
            param->value.ul = val;
            break;

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

886 887
    ret = 0;

888 889 890 891 892 893 894 895 896
cleanup:
    if (cgroup)
        virCgroupFree(&cgroup);
    if (vm)
        virDomainObjUnlock(vm);
    lxcDriverUnlock(driver);
    return ret;
}

D
Daniel Veillard 已提交
897
static char *lxcDomainDumpXML(virDomainPtr dom,
898
                              int flags)
D
Daniel Veillard 已提交
899
{
900 901 902
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
D
Daniel Veillard 已提交
903

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

D
Daniel Veillard 已提交
908
    if (!vm) {
909 910 911 912
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
913
        goto cleanup;
D
Daniel Veillard 已提交
914 915
    }

916
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) &&
917 918 919 920
                             vm->newDef ? vm->newDef : vm->def,
                             flags);

cleanup:
921 922
    if (vm)
        virDomainObjUnlock(vm);
923
    return ret;
D
Daniel Veillard 已提交
924 925
}

926 927 928

/**
 * lxcVmCleanup:
929 930 931
 * @conn: pointer to connection
 * @driver: pointer to driver structure
 * @vm: pointer to VM to clean up
932 933 934 935 936 937 938
 *
 * waitpid() on the container process.  kill and wait the tty process
 * This is called by both lxcDomainDestroy and lxcSigHandler when a
 * container exits.
 *
 * Returns 0 on success or -1 in case of error
 */
939
static int lxcVmCleanup(lxc_driver_t *driver,
940
                        virDomainObjPtr  vm)
941
{
942
    int rc = 0;
943 944
    int waitRc;
    int childStatus = -1;
D
Dan Smith 已提交
945
    virCgroupPtr cgroup;
946
    int i;
947
    lxcDomainObjPrivatePtr priv = vm->privateData;
948 949 950 951 952 953

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

    if ((waitRc != vm->pid) && (errno != ECHILD)) {
954
        virReportSystemError(errno,
955 956
                             _("waitpid failed to wait for container %d: %d"),
                             vm->pid, waitRc);
957 958 959 960
        rc = -1;
    } else if (WIFEXITED(childStatus)) {
        DEBUG("container exited with rc: %d", WEXITSTATUS(childStatus));
        rc = -1;
961 962
    }

963 964 965 966 967 968 969 970 971 972
    /* 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);
    }

973
    virEventRemoveHandle(priv->monitorWatch);
974
    VIR_FORCE_CLOSE(priv->monitor);
975 976

    virFileDeletePid(driver->stateDir, vm->def->name);
977
    virDomainDeleteConfig(driver->stateDir, NULL, vm);
978 979 980 981

    vm->state = VIR_DOMAIN_SHUTOFF;
    vm->pid = -1;
    vm->def->id = -1;
982 983
    priv->monitor = -1;
    priv->monitorWatch = -1;
984

985 986 987
    for (i = 0 ; i < vm->def->nnets ; i++) {
        vethInterfaceUpOrDown(vm->def->nets[i]->ifname, 0);
        vethDelete(vm->def->nets[i]->ifname);
988 989
    }

990 991
    if (driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0) {
D
Dan Smith 已提交
992 993 994 995
        virCgroupRemove(cgroup);
        virCgroupFree(&cgroup);
    }

996 997 998 999 1000 1001 1002
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }

1003 1004 1005
    return rc;
}

1006 1007
/**
 * lxcSetupInterfaces:
1008
 * @conn: pointer to connection
1009
 * @def: pointer to virtual machine structure
1010 1011
 * @nveths: number of interfaces
 * @veths: interface names
1012 1013 1014 1015 1016 1017 1018 1019
 *
 * 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,
1020
                              virDomainDefPtr def,
1021 1022
                              unsigned int *nveths,
                              char ***veths)
1023
{
1024
    int rc = -1, i;
1025 1026
    char *bridge = NULL;
    brControl *brctl = NULL;
1027

1028
    if (brInit(&brctl) != 0)
1029 1030
        return -1;

1031
    for (i = 0 ; i < def->nnets ; i++) {
1032 1033
        char *parentVeth;
        char *containerVeth = NULL;
1034

1035
        switch (def->nets[i]->type) {
1036 1037
        case VIR_DOMAIN_NET_TYPE_NETWORK:
        {
1038 1039 1040 1041
            virNetworkPtr network;

            network = virNetworkLookupByName(conn,
                                             def->nets[i]->data.network.name);
1042 1043 1044 1045 1046 1047 1048
            if (!network) {
                goto error_exit;
            }

            bridge = virNetworkGetBridgeName(network);

            virNetworkFree(network);
1049 1050 1051
            break;
        }
        case VIR_DOMAIN_NET_TYPE_BRIDGE:
1052
            bridge = def->nets[i]->data.bridge.brname;
1053
            break;
S
Stefan Berger 已提交
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063

        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;
1064 1065 1066 1067
        }

        DEBUG("bridge: %s", bridge);
        if (NULL == bridge) {
1068
            lxcError(VIR_ERR_INTERNAL_ERROR,
1069
                     "%s", _("Failed to get bridge for interface"));
1070 1071 1072 1073
            goto error_exit;
        }

        DEBUG0("calling vethCreate()");
1074 1075
        parentVeth = def->nets[i]->ifname;
        if (vethCreate(&parentVeth, &containerVeth) < 0)
1076
            goto error_exit;
1077
        DEBUG("parentVeth: %s, containerVeth: %s", parentVeth, containerVeth);
1078

1079
        if (NULL == def->nets[i]->ifname) {
1080
            def->nets[i]->ifname = parentVeth;
1081
        }
1082

1083
        if (VIR_REALLOC_N(*veths, (*nveths)+1) < 0) {
1084
            virReportOOMError();
1085
            VIR_FREE(containerVeth);
1086
            goto error_exit;
1087
        }
1088
        (*veths)[(*nveths)] = containerVeth;
1089
        (*nveths)++;
1090

1091
        {
1092 1093
            char macaddr[VIR_MAC_STRING_BUFLEN];
            virFormatMacAddr(def->nets[i]->mac, macaddr);
1094
            if (setMacAddr(containerVeth, macaddr) < 0)
1095 1096 1097
                goto error_exit;
        }

1098
        if (0 != (rc = brAddInterface(brctl, bridge, parentVeth))) {
1099
            virReportSystemError(rc,
1100
                                 _("Failed to add %s device to %s"),
1101
                                 parentVeth, bridge);
1102
            rc = -1;
1103 1104 1105
            goto error_exit;
        }

1106
        if (vethInterfaceUpOrDown(parentVeth, 1) < 0)
1107 1108 1109 1110 1111 1112
            goto error_exit;
    }

    rc = 0;

error_exit:
1113
    brShutdown(brctl);
1114 1115 1116
    return rc;
}

1117

1118
static int lxcMonitorClient(lxc_driver_t * driver,
1119
                            virDomainObjPtr vm)
1120
{
1121 1122 1123
    char *sockpath = NULL;
    int fd;
    struct sockaddr_un addr;
1124

1125 1126
    if (virAsprintf(&sockpath, "%s/%s.sock",
                    driver->stateDir, vm->def->name) < 0) {
1127
        virReportOOMError();
1128 1129 1130 1131
        return -1;
    }

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
1132
        virReportSystemError(errno, "%s",
1133
                             _("Failed to create client socket"));
1134
        goto error;
1135 1136
    }

1137 1138
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
1139
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
1140
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
1141 1142 1143
                 _("Socket path %s too big for destination"), sockpath);
        goto error;
    }
1144 1145

    if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
1146
        virReportSystemError(errno, "%s",
1147
                             _("Failed to connect to client socket"));
1148
        goto error;
1149 1150
    }

1151 1152
    VIR_FREE(sockpath);
    return fd;
1153

1154 1155
error:
    VIR_FREE(sockpath);
1156
    VIR_FORCE_CLOSE(fd);
1157 1158 1159 1160
    return -1;
}


1161
static int lxcVmTerminate(lxc_driver_t *driver,
1162
                          virDomainObjPtr vm,
1163 1164 1165 1166
                          int signum)
{
    if (signum == 0)
        signum = SIGINT;
1167

1168
    if (vm->pid <= 0) {
1169
        lxcError(VIR_ERR_INTERNAL_ERROR,
1170
                 _("Invalid PID %d for container"), vm->pid);
1171 1172 1173
        return -1;
    }

1174 1175
    if (kill(vm->pid, signum) < 0) {
        if (errno != ESRCH) {
1176
            virReportSystemError(errno,
1177
                                 _("Failed to kill pid %d"),
1178
                                 vm->pid);
1179
            return -1;
1180
        }
1181 1182
    }

1183
    vm->state = VIR_DOMAIN_SHUTDOWN;
1184

1185
    return lxcVmCleanup(driver, vm);
1186
}
1187

1188 1189
static void lxcMonitorEvent(int watch,
                            int fd,
1190 1191 1192
                            int events ATTRIBUTE_UNUSED,
                            void *data)
{
1193 1194
    lxc_driver_t *driver = lxc_driver;
    virDomainObjPtr vm = data;
1195
    virDomainEventPtr event = NULL;
1196
    lxcDomainObjPrivatePtr priv;
1197

1198
    lxcDriverLock(driver);
1199 1200
    virDomainObjLock(vm);
    lxcDriverUnlock(driver);
1201

1202 1203 1204
    priv = vm->privateData;

    if (priv->monitor != fd || priv->monitorWatch != watch) {
1205
        virEventRemoveHandle(watch);
1206
        goto cleanup;
1207 1208
    }

1209
    if (lxcVmTerminate(driver, vm, SIGINT) < 0) {
1210
        virEventRemoveHandle(watch);
1211 1212 1213 1214 1215
    } else {
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
    }
1216 1217 1218 1219
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1220 1221

cleanup:
1222 1223
    if (vm)
        virDomainObjUnlock(vm);
1224 1225
    if (event) {
        lxcDriverLock(driver);
1226
        lxcDomainEventQueue(driver, event);
1227 1228
        lxcDriverUnlock(driver);
    }
1229 1230 1231
}


1232
static int lxcControllerStart(lxc_driver_t *driver,
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
                              virDomainObjPtr vm,
                              int nveths,
                              char **veths,
                              int appPty,
                              int logfd)
{
    int i;
    int rc;
    int largc = 0, larga = 0;
    const char **largv = NULL;
A
Amy Griffis 已提交
1243 1244 1245 1246 1247
    int lenvc = 0, lenva = 0;
    const char **lenv = NULL;
    char *filterstr;
    char *outputstr;
    char *tmp;
A
Amy Griffis 已提交
1248
    int log_level;
1249 1250
    pid_t child;
    int status;
1251 1252
    fd_set keepfd;
    char appPtyStr[30];
1253
    const char *emulator;
1254 1255

    FD_ZERO(&keepfd);
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278

#define ADD_ARG_SPACE                                                   \
    do { \
        if (largc == larga) {                                           \
            larga += 10;                                                \
            if (VIR_REALLOC_N(largv, larga) < 0)                        \
                goto no_memory;                                         \
        }                                                               \
    } while (0)

#define ADD_ARG(thisarg)                                                \
    do {                                                                \
        ADD_ARG_SPACE;                                                  \
        largv[largc++] = thisarg;                                       \
    } while (0)

#define ADD_ARG_LIT(thisarg)                                            \
    do {                                                                \
        ADD_ARG_SPACE;                                                  \
        if ((largv[largc++] = strdup(thisarg)) == NULL)                 \
            goto no_memory;                                             \
    } while (0)

A
Amy Griffis 已提交
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
#define ADD_ENV_SPACE                                                   \
    do {                                                                \
        if (lenvc == lenva) {                                           \
            lenva += 10;                                                \
            if (VIR_REALLOC_N(lenv, lenva) < 0)                         \
                goto no_memory;                                         \
        }                                                               \
    } while (0)

#define ADD_ENV(thisarg)                                                \
    do {                                                                \
        ADD_ENV_SPACE;                                                  \
        lenv[lenvc++] = thisarg;                                        \
    } while (0)

#define ADD_ENV_PAIR(envname, val)                                      \
    do {                                                                \
        char *envval;                                                   \
        ADD_ENV_SPACE;                                                  \
        if (virAsprintf(&envval, "%s=%s", envname, val) < 0)            \
            goto no_memory;                                             \
        lenv[lenvc++] = envval;                                         \
    } while (0)

1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
#define ADD_ENV_COPY(envname)                                           \
    do {                                                                \
        char *val = getenv(envname);                                    \
        if (val != NULL) {                                              \
            ADD_ENV_PAIR(envname, val);                                 \
        }                                                               \
    } while (0)

    /*
     * The controller may call ip command, so we have to remain PATH.
     */
    ADD_ENV_COPY("PATH");

A
Amy Griffis 已提交
1316 1317
    log_level = virLogGetDefaultPriority();
    if (virAsprintf(&tmp, "LIBVIRT_DEBUG=%d", log_level) < 0)
A
Amy Griffis 已提交
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
        goto no_memory;
    ADD_ENV(tmp);

    if (virLogGetNbFilters() > 0) {
        filterstr = virLogGetFilters();
        if (!filterstr)
            goto no_memory;
        ADD_ENV_PAIR("LIBVIRT_LOG_FILTERS", filterstr);
        VIR_FREE(filterstr);
    }

A
Amy Griffis 已提交
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
    if (driver->log_libvirtd) {
        if (virLogGetNbOutputs() > 0) {
            outputstr = virLogGetOutputs();
            if (!outputstr)
                goto no_memory;
            ADD_ENV_PAIR("LIBVIRT_LOG_OUTPUTS", outputstr);
            VIR_FREE(outputstr);
        }
    } else {
        if (virAsprintf(&tmp, "LIBVIRT_LOG_OUTPUTS=%d:stderr", log_level) < 0)
A
Amy Griffis 已提交
1339
            goto no_memory;
A
Amy Griffis 已提交
1340
        ADD_ENV(tmp);
A
Amy Griffis 已提交
1341 1342 1343 1344
    }

    ADD_ENV(NULL);

1345 1346
    snprintf(appPtyStr, sizeof(appPtyStr), "%d", appPty);

1347 1348 1349
    emulator = vm->def->emulator;

    ADD_ARG_LIT(emulator);
1350 1351 1352
    ADD_ARG_LIT("--name");
    ADD_ARG_LIT(vm->def->name);
    ADD_ARG_LIT("--console");
1353
    ADD_ARG_LIT(appPtyStr);
1354 1355 1356 1357 1358 1359 1360 1361 1362
    ADD_ARG_LIT("--background");

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

    ADD_ARG(NULL);

1363 1364
    FD_SET(appPty, &keepfd);

1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
    /* 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;
    }

1381
    if (virExec(largv, lenv, &keepfd, &child,
1382
                -1, &logfd, &logfd,
1383 1384 1385 1386 1387 1388 1389 1390 1391
                VIR_EXEC_NONE) < 0)
        goto cleanup;

    /* We now wait for the process to exit - the controller
     * will fork() itself into the background - waiting for
     * it to exit thus guarentees it has written its pidfile
     */
    while ((rc = waitpid(child, &status, 0) == -1) && errno == EINTR);
    if (rc == -1) {
1392
        virReportSystemError(errno,
1393
                             _("Cannot wait for '%s'"),
1394
                             largv[0]);
1395 1396 1397 1398
        goto cleanup;
    }

    if (!(WIFEXITED(status) && WEXITSTATUS(status) == 0)) {
1399
        lxcError(VIR_ERR_INTERNAL_ERROR,
1400
                 _("Container '%s' unexpectedly shutdown during startup"),
1401 1402 1403 1404 1405 1406 1407
                 largv[0]);
        goto cleanup;
    }

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
A
Amy Griffis 已提交
1408 1409
#undef ADD_ENV_SPACE
#undef ADD_ENV_PAIR
1410

A
Amy Griffis 已提交
1411
    return 0;
1412 1413

no_memory:
1414
    virReportOOMError();
A
Amy Griffis 已提交
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
cleanup:
    if (largv) {
        for (i = 0 ; i < largc ; i++)
            VIR_FREE(largv[i]);
        VIR_FREE(largv);
    }
    if (lenv) {
        for (i=0 ; i < lenvc ; i++)
            VIR_FREE(lenv[i]);
        VIR_FREE(lenv);
    }
    return -1;
1427 1428 1429
}


1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
/**
 * lxcVmStart:
 * @conn: pointer to connection
 * @driver: pointer to driver structure
 * @vm: pointer to virtual machine structure
 *
 * Starts a vm
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcVmStart(virConnectPtr conn,
                      lxc_driver_t * driver,
1442
                      virDomainObjPtr  vm)
1443
{
1444
    int rc = -1, r;
1445 1446
    unsigned int i;
    int parentTty;
1447
    char *parentTtyPath = NULL;
1448 1449 1450 1451
    char *logfile = NULL;
    int logfd = -1;
    unsigned int nveths = 0;
    char **veths = NULL;
1452
    lxcDomainObjPrivatePtr priv = vm->privateData;
1453

L
Laine Stump 已提交
1454
    if ((r = virFileMakePath(driver->logDir)) != 0) {
1455
        virReportSystemError(r,
1456
                             _("Cannot create log directory '%s'"),
1457
                             driver->logDir);
1458 1459
        return -1;
    }
1460

1461 1462
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1463
        virReportOOMError();
1464
        return -1;
1465 1466
    }

1467
    /* open parent tty */
1468
    if (virFileOpenTty(&parentTty, &parentTtyPath, 1) < 0) {
1469
        virReportSystemError(errno, "%s",
1470
                             _("Failed to allocate tty"));
1471 1472
        goto cleanup;
    }
1473 1474 1475 1476 1477 1478 1479
    if (vm->def->console &&
        vm->def->console->type == VIR_DOMAIN_CHR_TYPE_PTY) {
        VIR_FREE(vm->def->console->data.file.path);
        vm->def->console->data.file.path = parentTtyPath;
    } else {
        VIR_FREE(parentTtyPath);
    }
1480

1481
    if (lxcSetupInterfaces(conn, vm->def, &nveths, &veths) != 0)
1482
        goto cleanup;
1483

1484
    /* Save the configuration for the controller */
1485
    if (virDomainSaveConfig(driver->stateDir, vm->def) < 0)
1486 1487
        goto cleanup;

1488
    if ((logfd = open(logfile, O_WRONLY | O_APPEND | O_CREAT,
1489
             S_IRUSR|S_IWUSR)) < 0) {
1490
        virReportSystemError(errno,
1491
                             _("Failed to open '%s'"),
1492
                             logfile);
1493
        goto cleanup;
1494 1495
    }

1496
    if (lxcControllerStart(driver,
1497 1498 1499
                           vm,
                           nveths, veths,
                           parentTty, logfd) < 0)
1500
        goto cleanup;
1501 1502 1503 1504

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

1508
    /* And get its pid */
1509
    if ((r = virFileReadPid(driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1510
        virReportSystemError(r,
1511 1512
                             _("Failed to read pid file %s/%s.pid"),
                             driver->stateDir, vm->def->name);
1513
        goto cleanup;
1514
    }
1515

1516
    vm->def->id = vm->pid;
1517 1518
    vm->state = VIR_DOMAIN_RUNNING;

1519 1520
    if ((priv->monitorWatch = virEventAddHandle(
             priv->monitor,
1521 1522
             VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
             lxcMonitorEvent,
1523
             vm, NULL)) < 0) {
1524
        lxcVmTerminate(driver, vm, 0);
1525 1526
        goto cleanup;
    }
1527

1528 1529 1530 1531 1532 1533 1534
    /*
     * 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;

1535 1536 1537
    if (virDomainObjSetDefTransient(driver->caps, vm) < 0)
        goto cleanup;

1538 1539 1540
    rc = 0;

cleanup:
1541 1542 1543 1544
    if (VIR_CLOSE(logfd) < 0) {
        virReportSystemError(errno, "%s", _("could not close logfile"));
        rc = -1;
    }
1545 1546 1547 1548 1549
    for (i = 0 ; i < nveths ; i++) {
        if (rc != 0)
            vethDelete(veths[i]);
        VIR_FREE(veths[i]);
    }
1550 1551 1552
    if (rc != 0)
        VIR_FORCE_CLOSE(priv->monitor);
    VIR_FORCE_CLOSE(parentTty);
1553
    VIR_FREE(logfile);
1554 1555 1556 1557
    return rc;
}

/**
1558
 * lxcDomainStartWithFlags:
1559
 * @dom: domain to start
1560
 * @flags: Must be 0 for now
1561 1562 1563 1564 1565
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
1566
static int lxcDomainStartWithFlags(virDomainPtr dom, unsigned int flags)
1567
{
1568 1569
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1570
    virDomainEventPtr event = NULL;
1571
    int ret = -1;
1572

1573 1574
    virCheckFlags(0, -1);

1575
    lxcDriverLock(driver);
1576
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1577
    if (!vm) {
1578 1579 1580 1581
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1582 1583 1584
        goto cleanup;
    }

1585
    if ((vm->def->nets != NULL) && !(driver->have_netns)) {
1586
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1587
                 "%s", _("System lacks NETNS support"));
1588 1589 1590
        goto cleanup;
    }

1591 1592 1593 1594 1595 1596
    if (virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is already running"));
        goto cleanup;
    }

1597
    ret = lxcVmStart(dom->conn, driver, vm);
1598

1599 1600 1601 1602 1603
    if (ret == 0)
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);

1604
cleanup:
1605 1606
    if (vm)
        virDomainObjUnlock(vm);
1607 1608
    if (event)
        lxcDomainEventQueue(driver, event);
1609
    lxcDriverUnlock(driver);
1610
    return ret;
1611 1612
}

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

1626 1627 1628 1629
/**
 * lxcDomainCreateAndStart:
 * @conn: pointer to connection
 * @xml: XML definition of domain
1630
 * @flags: Must be 0 for now
1631 1632 1633 1634 1635 1636 1637 1638
 *
 * 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,
1639
                        unsigned int flags) {
1640
    lxc_driver_t *driver = conn->privateData;
1641
    virDomainObjPtr vm = NULL;
1642
    virDomainDefPtr def;
1643
    virDomainPtr dom = NULL;
1644
    virDomainEventPtr event = NULL;
1645

1646 1647
    virCheckFlags(0, NULL);

1648
    lxcDriverLock(driver);
1649
    if (!(def = virDomainDefParseString(driver->caps, xml,
1650
                                        VIR_DOMAIN_XML_INACTIVE)))
1651
        goto cleanup;
1652

1653 1654
    if (virDomainObjIsDuplicate(&driver->domains, def, 1) < 0)
        goto cleanup;
1655

1656
    if ((def->nets != NULL) && !(driver->have_netns)) {
1657
        lxcError(VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1658
                 "%s", _("System lacks NETNS support"));
1659
        goto cleanup;
1660 1661
    }

1662

1663
    if (!(vm = virDomainAssignDef(driver->caps,
1664
                                  &driver->domains, def, false)))
1665 1666
        goto cleanup;
    def = NULL;
1667 1668

    if (lxcVmStart(conn, driver, vm) < 0) {
1669
        virDomainRemoveInactive(&driver->domains, vm);
1670
        vm = NULL;
1671
        goto cleanup;
1672 1673
    }

1674 1675 1676 1677
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);

1678
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
1679
    if (dom)
1680 1681
        dom->id = vm->def->id;

1682 1683
cleanup:
    virDomainDefFree(def);
1684 1685
    if (vm)
        virDomainObjUnlock(vm);
1686 1687
    if (event)
        lxcDomainEventQueue(driver, event);
1688
    lxcDriverUnlock(driver);
1689 1690 1691 1692 1693
    return dom;
}

/**
 * lxcDomainShutdown:
1694
 * @dom: pointer to domain to shutdown
1695 1696 1697 1698 1699 1700 1701
 *
 * Sends SIGINT to container root process to request it to shutdown
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcDomainShutdown(virDomainPtr dom)
{
1702 1703
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1704
    virDomainEventPtr event = NULL;
1705
    int ret = -1;
1706

1707
    lxcDriverLock(driver);
1708
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1709
    if (!vm) {
1710 1711 1712 1713
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1714
        goto cleanup;
1715 1716
    }

1717 1718 1719 1720 1721 1722
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

1723
    ret = lxcVmTerminate(driver, vm, 0);
1724 1725 1726
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
1727 1728 1729 1730
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1731 1732

cleanup:
1733 1734
    if (vm)
        virDomainObjUnlock(vm);
1735 1736 1737 1738 1739 1740 1741 1742
    if (event)
        lxcDomainEventQueue(driver, event);
    lxcDriverUnlock(driver);
    return ret;
}


static int
1743 1744 1745 1746
lxcDomainEventRegister(virConnectPtr conn,
                       virConnectDomainEventCallback callback,
                       void *opaque,
                       virFreeCallback freecb)
1747 1748 1749 1750 1751 1752 1753
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

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

1756
    return ret;
1757 1758
}

1759

1760
static int
1761 1762
lxcDomainEventDeregister(virConnectPtr conn,
                         virConnectDomainEventCallback callback)
1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

    lxcDriverLock(driver);
    if (driver->domainEventDispatching)
        ret = virDomainEventCallbackListMarkDelete(conn, driver->domainEventCallbacks,
                                                   callback);
    else
        ret = virDomainEventCallbackListRemove(conn, driver->domainEventCallbacks,
                                               callback);
    lxcDriverUnlock(driver);

    return ret;
}

1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821

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

    lxcDriverLock(driver);
    ret = virDomainEventCallbackListAddID(conn,
                                          driver->domainEventCallbacks,
                                          dom, eventID,
                                          callback, opaque, freecb);
    lxcDriverUnlock(driver);

    return ret;
}


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

    lxcDriverLock(driver);
    if (driver->domainEventDispatching)
        ret = virDomainEventCallbackListMarkDeleteID(conn, driver->domainEventCallbacks,
                                                     callbackID);
    else
        ret = virDomainEventCallbackListRemoveID(conn, driver->domainEventCallbacks,
                                                 callbackID);
    lxcDriverUnlock(driver);

    return ret;
}


1822 1823
static void lxcDomainEventDispatchFunc(virConnectPtr conn,
                                       virDomainEventPtr event,
1824
                                       virConnectDomainEventGenericCallback cb,
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875
                                       void *cbopaque,
                                       void *opaque)
{
    lxc_driver_t *driver = opaque;

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


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

    lxcDriverLock(driver);

    driver->domainEventDispatching = 1;

    /* Copy the queue, so we're reentrant safe */
    tempQueue.count = driver->domainEventQueue->count;
    tempQueue.events = driver->domainEventQueue->events;
    driver->domainEventQueue->count = 0;
    driver->domainEventQueue->events = NULL;

    virEventUpdateTimeout(driver->domainEventTimer, -1);
    virDomainEventQueueDispatch(&tempQueue,
                                driver->domainEventCallbacks,
                                lxcDomainEventDispatchFunc,
                                driver);

    /* Purge any deleted callbacks */
    virDomainEventCallbackListPurgeMarked(driver->domainEventCallbacks);

    driver->domainEventDispatching = 0;
    lxcDriverUnlock(driver);
}


/* driver must be locked before calling */
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                 virDomainEventPtr event)
{
    if (virDomainEventQueuePush(driver->domainEventQueue,
                                event) < 0)
        virDomainEventFree(event);
    if (lxc_driver->domainEventQueue->count == 1)
        virEventUpdateTimeout(driver->domainEventTimer, 0);
}
1876 1877 1878

/**
 * lxcDomainDestroy:
1879
 * @dom: pointer to domain to destroy
1880 1881 1882 1883 1884 1885 1886
 *
 * 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)
{
1887 1888
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1889
    virDomainEventPtr event = NULL;
1890
    int ret = -1;
1891

1892
    lxcDriverLock(driver);
1893
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
1894
    if (!vm) {
1895 1896 1897 1898
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(dom->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
1899
        goto cleanup;
1900 1901
    }

1902 1903 1904 1905 1906 1907
    if (!virDomainObjIsActive(vm)) {
        lxcError(VIR_ERR_OPERATION_INVALID,
                 "%s", _("Domain is not running"));
        goto cleanup;
    }

1908
    ret = lxcVmTerminate(driver, vm, SIGKILL);
1909 1910 1911
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1912 1913 1914 1915
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1916 1917

cleanup:
1918 1919
    if (vm)
        virDomainObjUnlock(vm);
1920 1921
    if (event)
        lxcDomainEventQueue(driver, event);
1922
    lxcDriverUnlock(driver);
1923
    return ret;
1924
}
1925

1926 1927 1928 1929 1930
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

1931
    if (virRun(argv, &ip_rc) < 0 ||
1932 1933
        !(WIFEXITED(ip_rc) && (WEXITSTATUS(ip_rc) != 255)))
        return 0;
1934

1935 1936
    if (lxcContainerAvailable(LXC_CONTAINER_FEATURE_NET) < 0)
        return 0;
1937

1938
    return 1;
1939 1940
}

1941

1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954
struct lxcAutostartData {
    lxc_driver_t *driver;
    virConnectPtr conn;
};

static void
lxcAutostartDomain(void *payload, const char *name ATTRIBUTE_UNUSED, void *opaque)
{
    virDomainObjPtr vm = payload;
    const struct lxcAutostartData *data = opaque;

    virDomainObjLock(vm);
    if (vm->autostart &&
D
Daniel P. Berrange 已提交
1955
        !virDomainObjIsActive(vm)) {
1956 1957 1958
        int ret = lxcVmStart(data->conn, data->driver, vm);
        if (ret < 0) {
            virErrorPtr err = virGetLastError();
1959
            VIR_ERROR(_("Failed to autostart VM '%s': %s"),
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973
                      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);
}

1974 1975 1976 1977 1978 1979 1980 1981 1982 1983
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 */

1984 1985
    struct lxcAutostartData data = { driver, conn };

1986
    lxcDriverLock(driver);
1987
    virHashForEach(driver->domains.objs, lxcAutostartDomain, &data);
1988 1989 1990 1991 1992 1993
    lxcDriverUnlock(driver);

    if (conn)
        virConnectClose(conn);
}

1994 1995 1996 1997 1998 1999 2000
static void
lxcReconnectVM(void *payload, const char *name ATTRIBUTE_UNUSED, void *opaque)
{
    virDomainObjPtr vm = payload;
    lxc_driver_t *driver = opaque;
    char *config = NULL;
    virDomainDefPtr tmp;
2001
    lxcDomainObjPrivatePtr priv;
2002 2003

    virDomainObjLock(vm);
2004 2005

    priv = vm->privateData;
2006
    if ((priv->monitor = lxcMonitorClient(driver, vm)) < 0) {
2007 2008 2009 2010 2011
        goto cleanup;
    }

    /* Read pid from controller */
    if ((virFileReadPid(lxc_driver->stateDir, vm->def->name, &vm->pid)) != 0) {
2012
        VIR_FORCE_CLOSE(priv->monitor);
2013 2014 2015
        goto cleanup;
    }

2016
    if ((config = virDomainConfigFile(driver->stateDir,
2017 2018 2019 2020
                                      vm->def->name)) == NULL)
        goto cleanup;

    /* Try and load the live config */
2021
    tmp = virDomainDefParseFile(driver->caps, config, 0);
2022 2023 2024 2025 2026 2027 2028 2029 2030
    VIR_FREE(config);
    if (tmp) {
        vm->newDef = vm->def;
        vm->def = tmp;
    }

    if (vm->pid != 0) {
        vm->def->id = vm->pid;
        vm->state = VIR_DOMAIN_RUNNING;
2031 2032 2033 2034 2035 2036

        if ((priv->monitorWatch = virEventAddHandle(
                 priv->monitor,
                 VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
                 lxcMonitorEvent,
                 vm, NULL)) < 0) {
2037
            lxcVmTerminate(driver, vm, 0);
2038 2039
            goto cleanup;
        }
2040 2041
    } else {
        vm->def->id = -1;
2042
        VIR_FORCE_CLOSE(priv->monitor);
2043 2044 2045 2046 2047 2048
    }

cleanup:
    virDomainObjUnlock(vm);
}

2049

2050
static int lxcStartup(int privileged)
D
Daniel Veillard 已提交
2051
{
2052
    char *ld;
2053
    int rc;
2054 2055 2056 2057 2058 2059

    /* 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");
2060 2061 2062 2063
    if (ld && strstr(ld, "vgpreload")) {
        VIR_INFO0("Running under valgrind, disabling driver");
        return 0;
    }
2064

2065
    /* Check that the user is root, silently disable if not */
2066
    if (!privileged) {
2067 2068 2069 2070 2071 2072 2073 2074
        VIR_INFO0("Not running privileged, disabling driver");
        return 0;
    }

    /* Check that this is a container enabled kernel */
    if (lxcContainerAvailable(0) < 0) {
        VIR_INFO0("LXC support not available in this kernel, disabling driver");
        return 0;
2075 2076
    }

2077
    if (VIR_ALLOC(lxc_driver) < 0) {
2078 2079
        return -1;
    }
2080 2081 2082 2083
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
2084
    lxcDriverLock(lxc_driver);
D
Daniel Veillard 已提交
2085

2086 2087 2088
    if (virDomainObjListInit(&lxc_driver->domains) < 0)
        goto cleanup;

2089
    if (VIR_ALLOC(lxc_driver->domainEventCallbacks) < 0)
2090 2091 2092 2093 2094 2095 2096 2097
        goto cleanup;
    if (!(lxc_driver->domainEventQueue = virDomainEventQueueNew()))
        goto cleanup;

    if ((lxc_driver->domainEventTimer =
         virEventAddTimeout(-1, lxcDomainEventFlush, lxc_driver, NULL)) < 0)
        goto cleanup;

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

2101 2102 2103 2104 2105 2106 2107
    rc = virCgroupForDriver("lxc", &lxc_driver->cgroup, privileged, 1);
    if (rc < 0) {
        char buf[1024];
        VIR_WARN("Unable to create cgroup for driver: %s",
                 virStrerror(-rc, buf, sizeof(buf)));
    }

D
Daniel Veillard 已提交
2108
    /* Call function to load lxc driver configuration information */
2109 2110
    if (lxcLoadDriverConfig(lxc_driver) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
2111

2112 2113
    if ((lxc_driver->caps = lxcCapsInit()) == NULL)
        goto cleanup;
D
Daniel Veillard 已提交
2114

2115 2116 2117
    lxc_driver->caps->privateDataAllocFunc = lxcDomainObjPrivateAlloc;
    lxc_driver->caps->privateDataFreeFunc = lxcDomainObjPrivateFree;

2118
    if (virDomainLoadAllConfigs(lxc_driver->caps,
2119 2120
                                &lxc_driver->domains,
                                lxc_driver->configDir,
2121
                                lxc_driver->autostartDir,
2122
                                0, NULL, NULL) < 0)
2123
        goto cleanup;
2124

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

2127
    lxcDriverUnlock(lxc_driver);
2128 2129 2130

    lxcAutostartConfigs(lxc_driver);

D
Daniel Veillard 已提交
2131 2132
    return 0;

2133 2134 2135 2136
cleanup:
    lxcDriverUnlock(lxc_driver);
    lxcShutdown();
    return -1;
D
Daniel Veillard 已提交
2137 2138
}

2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164
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);
2165
    virDomainLoadAllConfigs(lxc_driver->caps,
2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176
                            &lxc_driver->domains,
                            lxc_driver->configDir,
                            lxc_driver->autostartDir,
                            0, lxcNotifyLoadDomain, lxc_driver);
    lxcDriverUnlock(lxc_driver);

    lxcAutostartConfigs(lxc_driver);

    return 0;
}

2177
static int lxcShutdown(void)
D
Daniel Veillard 已提交
2178
{
2179
    if (lxc_driver == NULL)
2180
        return(-1);
2181

2182
    lxcDriverLock(lxc_driver);
2183
    virDomainObjListDeinit(&lxc_driver->domains);
2184

2185 2186 2187 2188 2189 2190
    virDomainEventCallbackListFree(lxc_driver->domainEventCallbacks);
    virDomainEventQueueFree(lxc_driver->domainEventQueue);

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

2191 2192 2193 2194 2195 2196
    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);
2197
    virMutexDestroy(&lxc_driver->lock);
2198
    VIR_FREE(lxc_driver);
2199 2200 2201

    return 0;
}
D
Daniel Veillard 已提交
2202

2203 2204 2205 2206 2207 2208 2209 2210 2211
/**
 * lxcActive:
 *
 * Checks if the LXC daemon is active, i.e. has an active domain
 *
 * Returns 1 if active, 0 otherwise
 */
static int
lxcActive(void) {
2212
    int active;
2213

2214 2215
    if (lxc_driver == NULL)
        return(0);
2216

2217
    lxcDriverLock(lxc_driver);
2218
    active = virDomainObjListNumOfDomains(&lxc_driver->domains, 1);
2219
    lxcDriverUnlock(lxc_driver);
2220

2221
    return active;
D
Daniel Veillard 已提交
2222 2223
}

2224
static int lxcVersion(virConnectPtr conn ATTRIBUTE_UNUSED, unsigned long *version)
D
Dan Smith 已提交
2225 2226 2227
{
    struct utsname ver;

2228
    uname(&ver);
D
Dan Smith 已提交
2229

2230 2231
    if (virParseVersionString(ver.release, version) < 0) {
        lxcError(VIR_ERR_INTERNAL_ERROR, _("Unknown release: %s"), ver.release);
D
Dan Smith 已提交
2232 2233 2234 2235 2236
        return -1;
    }

    return 0;
}
2237

2238 2239
static char *lxcGetSchedulerType(virDomainPtr domain ATTRIBUTE_UNUSED,
                                 int *nparams)
2240
{
2241 2242
    char *schedulerType = NULL;

2243 2244 2245
    if (nparams)
        *nparams = 1;

2246 2247 2248
    schedulerType = strdup("posix");

    if (schedulerType == NULL)
2249
        virReportOOMError();
2250 2251

    return schedulerType;
2252 2253
}

2254
static int lxcSetSchedulerParameters(virDomainPtr domain,
2255 2256 2257
                                     virSchedParameterPtr params,
                                     int nparams)
{
2258
    lxc_driver_t *driver = domain->conn->privateData;
2259
    int i;
2260 2261 2262
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;
2263

2264
    if (driver->cgroup == NULL)
2265 2266 2267 2268
        return -1;

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

2270
    if (vm == NULL) {
2271 2272 2273 2274
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(domain->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2275
        goto cleanup;
2276 2277
    }

2278
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2279
        goto cleanup;
2280 2281 2282

    for (i = 0; i < nparams; i++) {
        virSchedParameterPtr param = &params[i];
2283 2284 2285 2286 2287 2288 2289

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

2290
        if (param->type != VIR_DOMAIN_SCHED_FIELD_ULLONG) {
2291
            lxcError(VIR_ERR_INVALID_ARG, "%s",
2292
                 _("Invalid type for cpu_shares tunable, expected a 'ullong'"));
2293 2294
            goto cleanup;
        }
2295

2296 2297 2298 2299
        int rc = virCgroupSetCpuShares(group, params[i].value.ul);
        if (rc != 0) {
            virReportSystemError(-rc, _("failed to set cpu_shares=%llu"),
                                 params[i].value.ul);
2300
            goto cleanup;
2301 2302
        }
    }
2303
    ret = 0;
2304

2305
cleanup:
2306
    lxcDriverUnlock(driver);
2307
    virCgroupFree(&group);
2308 2309
    if (vm)
        virDomainObjUnlock(vm);
2310
    return ret;
2311 2312
}

2313
static int lxcGetSchedulerParameters(virDomainPtr domain,
2314 2315 2316
                                     virSchedParameterPtr params,
                                     int *nparams)
{
2317
    lxc_driver_t *driver = domain->conn->privateData;
2318 2319
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
2320
    unsigned long long val;
2321
    int ret = -1;
2322

2323
    if (driver->cgroup == NULL)
2324
        return -1;
2325 2326

    if ((*nparams) != 1) {
2327
        lxcError(VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
2328
                 "%s", _("Invalid parameter count"));
2329
        return -1;
2330 2331
    }

2332 2333 2334
    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, domain->uuid);

2335
    if (vm == NULL) {
2336 2337 2338 2339
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(domain->uuid, uuidstr);
        lxcError(VIR_ERR_NO_DOMAIN,
                 _("No domain with matching uuid '%s'"), uuidstr);
2340
        goto cleanup;
2341 2342
    }

2343
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
2344
        goto cleanup;
2345

2346 2347
    if (virCgroupGetCpuShares(group, &val) != 0)
        goto cleanup;
2348
    params[0].value.ul = val;
C
Chris Lalancette 已提交
2349
    if (virStrcpyStatic(params[0].field, "cpu_shares") == NULL) {
2350
        lxcError(VIR_ERR_INTERNAL_ERROR,
C
Chris Lalancette 已提交
2351 2352 2353
                 "%s", _("Field cpu_shares too big for destination"));
        goto cleanup;
    }
2354 2355
    params[0].type = VIR_DOMAIN_SCHED_FIELD_ULLONG;

2356
    ret = 0;
2357

2358
cleanup:
2359
    lxcDriverUnlock(driver);
2360
    virCgroupFree(&group);
2361 2362
    if (vm)
        virDomainObjUnlock(vm);
2363
    return ret;
2364 2365
}

2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
#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);
2384
        lxcError(VIR_ERR_NO_DOMAIN,
2385 2386 2387 2388 2389
                 _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainObjIsActive(vm)) {
2390
        lxcError(VIR_ERR_OPERATION_INVALID,
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404
                 "%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)
2405
        ret = linuxDomainInterfaceStats(path, stats);
2406
    else
2407
        lxcError(VIR_ERR_INVALID_ARG,
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419
                 _("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)
2420
    lxcError(VIR_ERR_NO_SUPPORT, "%s", __FUNCTION__);
2421 2422 2423 2424
    return -1;
}
#endif

2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437
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);
2438
        lxcError(VIR_ERR_NO_DOMAIN,
2439
                 _("No domain with matching uuid '%s'"), uuidstr);
2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464
        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);
2465
        lxcError(VIR_ERR_NO_DOMAIN,
2466
                 _("No domain with matching uuid '%s'"), uuidstr);
2467 2468 2469 2470
        goto cleanup;
    }

    if (!vm->persistent) {
2471
        lxcError(VIR_ERR_INTERNAL_ERROR,
2472
                 "%s", _("Cannot set autostart for transient domain"));
2473 2474 2475 2476 2477
        goto cleanup;
    }

    autostart = (autostart != 0);

2478 2479 2480 2481
    if (vm->autostart == autostart) {
        ret = 0;
        goto cleanup;
    }
2482

2483
    configFile = virDomainConfigFile(driver->configDir,
2484 2485 2486
                                     vm->def->name);
    if (configFile == NULL)
        goto cleanup;
2487
    autostartLink = virDomainConfigFile(driver->autostartDir,
2488 2489 2490
                                        vm->def->name);
    if (autostartLink == NULL)
        goto cleanup;
2491

2492 2493
    if (autostart) {
        int err;
2494

2495
        if ((err = virFileMakePath(driver->autostartDir))) {
2496
            virReportSystemError(err,
2497 2498 2499
                                 _("Cannot create autostart directory %s"),
                                 driver->autostartDir);
            goto cleanup;
2500 2501
        }

2502
        if (symlink(configFile, autostartLink) < 0) {
2503
            virReportSystemError(errno,
2504 2505 2506 2507 2508 2509
                                 _("Failed to create symlink '%s to '%s'"),
                                 autostartLink, configFile);
            goto cleanup;
        }
    } else {
        if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2510
            virReportSystemError(errno,
2511 2512 2513 2514
                                 _("Failed to delete symlink '%s'"),
                                 autostartLink);
            goto cleanup;
        }
2515
    }
2516 2517

    vm->autostart = autostart;
2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528
    ret = 0;

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

R
Ryota Ozaki 已提交
2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539
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 &&
2540
          virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
R
Ryota Ozaki 已提交
2541 2542
        return -1;

2543 2544
    /* From here on, we know that cgroup != NULL.  */

R
Ryota Ozaki 已提交
2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 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 2611 2612 2613 2614 2615 2616
    while (waited_time < timeout) {
        int r;
        /*
         * Writing "FROZEN" to the "freezer.state" freezes the group,
         * i.e., the container, temporarily transiting "FREEZING" state.
         * Once the freezing is completed, the state of the group transits
         * to "FROZEN".
         * (see linux-2.6/Documentation/cgroups/freezer-subsystem.txt)
         */
        r = virCgroupSetFreezerState(cgroup, "FROZEN");

        /*
         * Returning EBUSY explicitly indicates that the group is
         * being freezed but incomplete and other errors are true
         * errors.
         */
        if (r < 0 && r != -EBUSY) {
            VIR_DEBUG("Writing freezer.state failed with errno: %d", r);
            goto error;
        }
        if (r == -EBUSY)
            VIR_DEBUG0("Writing freezer.state gets EBUSY");

        /*
         * Unfortunately, returning 0 (success) is likely to happen
         * even when the freezing has not been completed. Sometimes
         * the state of the group remains "FREEZING" like when
         * returning -EBUSY and even worse may never transit to
         * "FROZEN" even if writing "FROZEN" again.
         *
         * So we don't trust the return value anyway and always
         * decide that the freezing has been complete only with
         * the state actually transit to "FROZEN".
         */
        usleep(check_interval * 1000);

        r = virCgroupGetFreezerState(cgroup, &state);

        if (r < 0) {
            VIR_DEBUG("Reading freezer.state failed with errno: %d", r);
            goto error;
        }
        VIR_DEBUG("Read freezer.state: %s", state);

        if (STREQ(state, "FROZEN")) {
            ret = 0;
            goto cleanup;
        }

        waited_time += check_interval;
        /*
         * Increasing check_interval exponentially starting with
         * small initial value treats nicely two cases; One is
         * a container is under no load and waiting for long period
         * makes no sense. The other is under heavy load. The container
         * may stay longer time in FREEZING or never transit to FROZEN.
         * In that case, eager polling will just waste CPU time.
         */
        check_interval *= exp;
        VIR_FREE(state);
    }
    VIR_DEBUG0("lxcFreezeContainer timeout");
error:
    /*
     * If timeout or an error on reading the state occurs,
     * activate the group again and return an error.
     * This is likely to fall the group back again gracefully.
     */
    virCgroupSetFreezerState(cgroup, "THAWED");
    ret = -1;

cleanup:
2617
    virCgroupFree(&cgroup);
R
Ryota Ozaki 已提交
2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634
    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);
2635
        lxcError(VIR_ERR_NO_DOMAIN,
2636
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2637 2638 2639
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2640
    if (!virDomainObjIsActive(vm)) {
2641
        lxcError(VIR_ERR_OPERATION_INVALID,
2642
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2643 2644 2645 2646 2647
        goto cleanup;
    }

    if (vm->state != VIR_DOMAIN_PAUSED) {
        if (lxcFreezeContainer(driver, vm) < 0) {
2648
            lxcError(VIR_ERR_OPERATION_FAILED,
2649
                     "%s", _("Suspend operation failed"));
R
Ryota Ozaki 已提交
2650 2651 2652 2653 2654 2655 2656 2657 2658
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_PAUSED;

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

2659
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699
        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);
2700
        lxcError(VIR_ERR_NO_DOMAIN,
2701
                 _("No domain with matching uuid '%s'"), uuidstr);
R
Ryota Ozaki 已提交
2702 2703 2704
        goto cleanup;
    }

D
Daniel P. Berrange 已提交
2705
    if (!virDomainObjIsActive(vm)) {
2706
        lxcError(VIR_ERR_OPERATION_INVALID,
2707
                 "%s", _("Domain is not running"));
R
Ryota Ozaki 已提交
2708 2709 2710 2711 2712
        goto cleanup;
    }

    if (vm->state == VIR_DOMAIN_PAUSED) {
        if (lxcUnfreezeContainer(driver, vm) < 0) {
2713
            lxcError(VIR_ERR_OPERATION_FAILED,
2714
                     "%s", _("Resume operation failed"));
R
Ryota Ozaki 已提交
2715 2716 2717 2718 2719 2720 2721 2722 2723
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_RUNNING;

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

2724
    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
R
Ryota Ozaki 已提交
2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736
        goto cleanup;
    ret = 0;

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

2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800
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;
    }

    if (chr->type != VIR_DOMAIN_CHR_TYPE_PTY) {
        lxcError(VIR_ERR_INTERNAL_ERROR,
                 _("character device %s is not using a PTY"), devname);
        goto cleanup;
    }

    if (virFDStreamOpenFile(st, chr->data.file.path, O_RDWR) < 0)
        goto cleanup;

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

R
Ryota Ozaki 已提交
2801

D
Daniel Veillard 已提交
2802 2803 2804 2805 2806 2807 2808 2809
/* Function Tables */
static virDriver lxcDriver = {
    VIR_DRV_LXC, /* the number virDrvNo */
    "LXC", /* the name of the driver */
    lxcOpen, /* open */
    lxcClose, /* close */
    NULL, /* supports_feature */
    NULL, /* type */
D
Dan Smith 已提交
2810
    lxcVersion, /* version */
2811
    NULL, /* libvirtVersion (impl. in libvirt.c) */
2812
    virGetHostname, /* getHostname */
D
Daniel Veillard 已提交
2813
    NULL, /* getMaxVcpus */
2814 2815
    nodeGetInfo, /* nodeGetInfo */
    lxcGetCapabilities, /* getCapabilities */
D
Daniel Veillard 已提交
2816 2817
    lxcListDomains, /* listDomains */
    lxcNumDomains, /* numOfDomains */
2818
    lxcDomainCreateAndStart, /* domainCreateXML */
D
Daniel Veillard 已提交
2819 2820 2821
    lxcDomainLookupByID, /* domainLookupByID */
    lxcDomainLookupByUUID, /* domainLookupByUUID */
    lxcDomainLookupByName, /* domainLookupByName */
R
Ryota Ozaki 已提交
2822 2823
    lxcDomainSuspend, /* domainSuspend */
    lxcDomainResume, /* domainResume */
2824
    lxcDomainShutdown, /* domainShutdown */
D
Daniel Veillard 已提交
2825
    NULL, /* domainReboot */
2826
    lxcDomainDestroy, /* domainDestroy */
D
Daniel Veillard 已提交
2827
    lxcGetOSType, /* domainGetOSType */
R
Ryota Ozaki 已提交
2828 2829 2830
    lxcDomainGetMaxMemory, /* domainGetMaxMemory */
    lxcDomainSetMaxMemory, /* domainSetMaxMemory */
    lxcDomainSetMemory, /* domainSetMemory */
D
Daniel Veillard 已提交
2831 2832 2833 2834 2835
    lxcDomainGetInfo, /* domainGetInfo */
    NULL, /* domainSave */
    NULL, /* domainRestore */
    NULL, /* domainCoreDump */
    NULL, /* domainSetVcpus */
E
Eric Blake 已提交
2836 2837
    NULL, /* domainSetVcpusFlags */
    NULL, /* domainGetVcpusFlags */
D
Daniel Veillard 已提交
2838 2839 2840
    NULL, /* domainPinVcpu */
    NULL, /* domainGetVcpus */
    NULL, /* domainGetMaxVcpus */
2841 2842
    NULL, /* domainGetSecurityLabel */
    NULL, /* nodeGetSecurityModel */
D
Daniel Veillard 已提交
2843
    lxcDomainDumpXML, /* domainDumpXML */
2844 2845
    NULL, /* domainXMLFromNative */
    NULL, /* domainXMLToNative */
D
Daniel Veillard 已提交
2846 2847
    lxcListDefinedDomains, /* listDefinedDomains */
    lxcNumDefinedDomains, /* numOfDefinedDomains */
2848
    lxcDomainStart, /* domainCreate */
2849
    lxcDomainStartWithFlags, /* domainCreateWithFlags */
D
Daniel Veillard 已提交
2850 2851 2852
    lxcDomainDefine, /* domainDefineXML */
    lxcDomainUndefine, /* domainUndefine */
    NULL, /* domainAttachDevice */
2853
    NULL, /* domainAttachDeviceFlags */
D
Daniel Veillard 已提交
2854
    NULL, /* domainDetachDevice */
2855
    NULL, /* domainDetachDeviceFlags */
2856
    NULL, /* domainUpdateDeviceFlags */
2857 2858
    lxcDomainGetAutostart, /* domainGetAutostart */
    lxcDomainSetAutostart, /* domainSetAutostart */
2859 2860 2861
    lxcGetSchedulerType, /* domainGetSchedulerType */
    lxcGetSchedulerParameters, /* domainGetSchedulerParameters */
    lxcSetSchedulerParameters, /* domainSetSchedulerParameters */
D
Daniel Veillard 已提交
2862 2863 2864 2865
    NULL, /* domainMigratePrepare */
    NULL, /* domainMigratePerform */
    NULL, /* domainMigrateFinish */
    NULL, /* domainBlockStats */
2866
    lxcDomainInterfaceStats, /* domainInterfaceStats */
2867
    NULL, /* domainMemoryStats */
D
Daniel P. Berrange 已提交
2868 2869
    NULL, /* domainBlockPeek */
    NULL, /* domainMemoryPeek */
2870
    NULL, /* domainGetBlockInfo */
2871 2872
    nodeGetCellsFreeMemory, /* nodeGetCellsFreeMemory */
    nodeGetFreeMemory,  /* getFreeMemory */
2873 2874
    lxcDomainEventRegister, /* domainEventRegister */
    lxcDomainEventDeregister, /* domainEventDeregister */
D
Daniel Veillard 已提交
2875 2876
    NULL, /* domainMigratePrepare2 */
    NULL, /* domainMigrateFinish2 */
2877
    NULL, /* nodeDeviceDettach */
2878 2879
    NULL, /* nodeDeviceReAttach */
    NULL, /* nodeDeviceReset */
C
Chris Lalancette 已提交
2880
    NULL, /* domainMigratePrepareTunnel */
2881 2882 2883 2884
    lxcIsEncrypted, /* isEncrypted */
    lxcIsSecure, /* isSecure */
    lxcDomainIsActive, /* domainIsActive */
    lxcDomainIsPersistent, /* domainIsPersistent */
O
Osier Yang 已提交
2885
    NULL, /* domainIsUpdated */
J
Jiri Denemark 已提交
2886
    NULL, /* cpuCompare */
2887
    NULL, /* cpuBaseline */
2888
    NULL, /* domainGetJobInfo */
2889
    NULL, /* domainAbortJob */
2890
    NULL, /* domainMigrateSetMaxDowntime */
2891 2892
    lxcDomainEventRegisterAny, /* domainEventRegisterAny */
    lxcDomainEventDeregisterAny, /* domainEventDeregisterAny */
2893 2894 2895
    NULL, /* domainManagedSave */
    NULL, /* domainHasManagedSaveImage */
    NULL, /* domainManagedSaveRemove */
C
Chris Lalancette 已提交
2896 2897 2898 2899 2900 2901 2902 2903 2904
    NULL, /* domainSnapshotCreateXML */
    NULL, /* domainSnapshotDumpXML */
    NULL, /* domainSnapshotNum */
    NULL, /* domainSnapshotListNames */
    NULL, /* domainSnapshotLookupByName */
    NULL, /* domainHasCurrentSnapshot */
    NULL, /* domainSnapshotCurrent */
    NULL, /* domainRevertToSnapshot */
    NULL, /* domainSnapshotDelete */
C
Chris Lalancette 已提交
2905
    NULL, /* qemuDomainMonitorCommand */
2906
    lxcDomainSetMemoryParameters, /* domainSetMemoryParameters */
2907
    lxcDomainGetMemoryParameters, /* domainGetMemoryParameters */
2908
    lxcDomainOpenConsole, /* domainOpenConsole */
D
Daniel Veillard 已提交
2909 2910
};

2911
static virStateDriver lxcStateDriver = {
2912
    .name = "LXC",
2913 2914 2915
    .initialize = lxcStartup,
    .cleanup = lxcShutdown,
    .active = lxcActive,
2916
    .reload = lxcReload,
2917 2918
};

D
Daniel Veillard 已提交
2919 2920 2921
int lxcRegister(void)
{
    virRegisterDriver(&lxcDriver);
2922
    virRegisterStateDriver(&lxcStateDriver);
D
Daniel Veillard 已提交
2923 2924
    return 0;
}