lxc_driver.c 66.8 KB
Newer Older
D
Daniel Veillard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * 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>

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

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

D
Daniel Veillard 已提交
52

53 54
#define VIR_FROM_THIS VIR_FROM_LXC

55
static int lxcStartup(int privileged);
56
static int lxcShutdown(void);
57
static lxc_driver_t *lxc_driver = NULL;
D
Daniel Veillard 已提交
58 59 60

/* Functions */

61 62
static void lxcDriverLock(lxc_driver_t *driver)
{
63
    virMutexLock(&driver->lock);
64 65 66
}
static void lxcDriverUnlock(lxc_driver_t *driver)
{
67
    virMutexUnlock(&driver->lock);
68 69
}

70 71 72 73
static void lxcDomainEventFlush(int timer, void *opaque);
static void lxcDomainEventQueue(lxc_driver_t *driver,
                                virDomainEventPtr event);

74

D
Daniel Veillard 已提交
75 76 77 78 79
static virDrvOpenStatus lxcOpen(virConnectPtr conn,
                                virConnectAuthPtr auth ATTRIBUTE_UNUSED,
                                int flags ATTRIBUTE_UNUSED)
{
    /* Verify uri was specified */
80
    if (conn->uri == NULL) {
81 82
        if (lxc_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
83

84 85
        conn->uri = xmlParseURI("lxc:///");
        if (!conn->uri) {
86
            virReportOOMError(conn);
87 88
            return VIR_DRV_OPEN_ERROR;
        }
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
    } 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 */
        if (STRNEQ(conn->uri->path, "/")) {
            lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
                     _("unexpected LXC URI path '%s', try lxc:///"),
                     conn->uri->path);
            return VIR_DRV_OPEN_ERROR;
        }
D
Daniel Veillard 已提交
105

106 107 108
        /* URI was good, but driver isn't active */
        if (lxc_driver == NULL) {
            lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
109
                     "%s", _("lxc state driver is not active"));
110 111 112
            return VIR_DRV_OPEN_ERROR;
        }
    }
113

114
    conn->privateData = lxc_driver;
D
Daniel Veillard 已提交
115 116 117 118 119 120

    return VIR_DRV_OPEN_SUCCESS;
}

static int lxcClose(virConnectPtr conn)
{
121 122 123 124 125 126
    lxc_driver_t *driver = conn->privateData;

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

127 128
    conn->privateData = NULL;
    return 0;
D
Daniel Veillard 已提交
129 130
}

131 132 133 134 135 136 137 138 139 140 141 142 143
static char *lxcGetCapabilities(virConnectPtr conn) {
    lxc_driver_t *driver = conn->privateData;
    char *xml;

    lxcDriverLock(driver);
    if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL)
        virReportOOMError(conn);
    lxcDriverUnlock(driver);

    return xml;
}


D
Daniel Veillard 已提交
144 145 146
static virDomainPtr lxcDomainLookupByID(virConnectPtr conn,
                                        int id)
{
147 148 149
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
150

151
    lxcDriverLock(driver);
152
    vm = virDomainFindByID(&driver->domains, id);
153 154
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
155 156
    if (!vm) {
        lxcError(conn, NULL, VIR_ERR_NO_DOMAIN, NULL);
157
        goto cleanup;
D
Daniel Veillard 已提交
158 159 160
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
161
    if (dom)
D
Daniel Veillard 已提交
162 163
        dom->id = vm->def->id;

164
cleanup:
165 166
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
167 168 169 170 171 172
    return dom;
}

static virDomainPtr lxcDomainLookupByUUID(virConnectPtr conn,
                                          const unsigned char *uuid)
{
173 174 175
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
176

177
    lxcDriverLock(driver);
178
    vm = virDomainFindByUUID(&driver->domains, uuid);
179 180
    lxcDriverUnlock(driver);

D
Daniel Veillard 已提交
181 182
    if (!vm) {
        lxcError(conn, NULL, VIR_ERR_NO_DOMAIN, NULL);
183
        goto cleanup;
D
Daniel Veillard 已提交
184 185 186
    }

    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
187
    if (dom)
D
Daniel Veillard 已提交
188 189
        dom->id = vm->def->id;

190
cleanup:
191 192
    if (vm)
        virDomainObjUnlock(vm);
D
Daniel Veillard 已提交
193 194 195 196 197 198
    return dom;
}

static virDomainPtr lxcDomainLookupByName(virConnectPtr conn,
                                          const char *name)
{
199 200 201
    lxc_driver_t *driver = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
202

203
    lxcDriverLock(driver);
204
    vm = virDomainFindByName(&driver->domains, name);
205
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
206 207
    if (!vm) {
        lxcError(conn, NULL, VIR_ERR_NO_DOMAIN, NULL);
208
        goto cleanup;
D
Daniel Veillard 已提交
209 210 211
    }

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

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

221
static int lxcListDomains(virConnectPtr conn, int *ids, int nids) {
222
    lxc_driver_t *driver = conn->privateData;
223 224
    int got = 0, i;

225 226 227
    lxcDriverLock(driver);
    for (i = 0 ; i < driver->domains.count && got < nids ; i++) {
        virDomainObjLock(driver->domains.objs[i]);
228 229
        if (virDomainIsActive(driver->domains.objs[i]))
            ids[got++] = driver->domains.objs[i]->def->id;
230 231 232
        virDomainObjUnlock(driver->domains.objs[i]);
    }
    lxcDriverUnlock(driver);
233

234
    return got;
D
Daniel Veillard 已提交
235
}
236

237
static int lxcNumDomains(virConnectPtr conn) {
238
    lxc_driver_t *driver = conn->privateData;
239 240
    int n = 0, i;

241 242 243
    lxcDriverLock(driver);
    for (i = 0 ; i < driver->domains.count ; i++) {
        virDomainObjLock(driver->domains.objs[i]);
244
        if (virDomainIsActive(driver->domains.objs[i]))
245
            n++;
246 247 248
        virDomainObjUnlock(driver->domains.objs[i]);
    }
    lxcDriverUnlock(driver);
249

250
    return n;
D
Daniel Veillard 已提交
251 252 253
}

static int lxcListDefinedDomains(virConnectPtr conn,
254
                                 char **const names, int nnames) {
255
    lxc_driver_t *driver = conn->privateData;
256
    int got = 0, i;
257

258
    lxcDriverLock(driver);
259
    for (i = 0 ; i < driver->domains.count && got < nnames ; i++) {
260
        virDomainObjLock(driver->domains.objs[i]);
261 262
        if (!virDomainIsActive(driver->domains.objs[i])) {
            if (!(names[got++] = strdup(driver->domains.objs[i]->def->name))) {
263
                virReportOOMError(conn);
264
                virDomainObjUnlock(driver->domains.objs[i]);
D
Daniel Veillard 已提交
265 266 267
                goto cleanup;
            }
        }
268
        virDomainObjUnlock(driver->domains.objs[i]);
D
Daniel Veillard 已提交
269
    }
270
    lxcDriverUnlock(driver);
271

272
    return got;
D
Daniel Veillard 已提交
273 274

 cleanup:
275
    for (i = 0 ; i < got ; i++)
276
        VIR_FREE(names[i]);
277
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
278 279 280 281
    return -1;
}


282
static int lxcNumDefinedDomains(virConnectPtr conn) {
283
    lxc_driver_t *driver = conn->privateData;
284 285
    int n = 0, i;

286 287 288
    lxcDriverLock(driver);
    for (i = 0 ; i < driver->domains.count ; i++) {
        virDomainObjLock(driver->domains.objs[i]);
289
        if (!virDomainIsActive(driver->domains.objs[i]))
290
            n++;
291 292 293
        virDomainObjUnlock(driver->domains.objs[i]);
    }
    lxcDriverUnlock(driver);
294

295
    return n;
D
Daniel Veillard 已提交
296 297
}

298 299


D
Daniel Veillard 已提交
300 301
static virDomainPtr lxcDomainDefine(virConnectPtr conn, const char *xml)
{
302 303
    lxc_driver_t *driver = conn->privateData;
    virDomainDefPtr def = NULL;
304
    virDomainObjPtr vm = NULL;
305
    virDomainPtr dom = NULL;
306 307
    virDomainEventPtr event = NULL;
    int newVM = 1;
D
Daniel Veillard 已提交
308

309
    lxcDriverLock(driver);
310 311
    if (!(def = virDomainDefParseString(conn, driver->caps, xml,
                                        VIR_DOMAIN_XML_INACTIVE)))
312
        goto cleanup;
D
Daniel Veillard 已提交
313

314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
    /* See if a VM with matching UUID already exists */
    vm = virDomainFindByUUID(&driver->domains, def->uuid);
    if (vm) {
        /* UUID matches, but if names don't match, refuse it */
        if (STRNEQ(vm->def->name, def->name)) {
            char uuidstr[VIR_UUID_STRING_BUFLEN];
            virUUIDFormat(vm->def->uuid, uuidstr);
            lxcError(conn, NULL, VIR_ERR_OPERATION_FAILED,
                     _("domain '%s' is already defined with uuid %s"),
                     vm->def->name, uuidstr);
            goto cleanup;
        }

        /* UUID & name match */
        virDomainObjUnlock(vm);
        newVM = 0;
    } else {
        /* UUID does not match, but if a name matches, refuse it */
        vm = virDomainFindByName(&driver->domains, def->name);
        if (vm) {
            char uuidstr[VIR_UUID_STRING_BUFLEN];
            virUUIDFormat(vm->def->uuid, uuidstr);
            lxcError(conn, NULL, VIR_ERR_OPERATION_FAILED,
                     _("domain '%s' is already defined with uuid %s"),
                     def->name, uuidstr);
            goto cleanup;
        }
    }

343 344
    if ((def->nets != NULL) && !(driver->have_netns)) {
        lxcError(conn, NULL, VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
345
                 "%s", _("System lacks NETNS support"));
346
        goto cleanup;
347 348
    }

349 350 351
    if (!(vm = virDomainAssignDef(conn, &driver->domains, def)))
        goto cleanup;
    def = NULL;
352
    vm->persistent = 1;
D
Daniel Veillard 已提交
353

354 355
    if (virDomainSaveConfig(conn,
                            driver->configDir,
356
                            vm->newDef ? vm->newDef : vm->def) < 0) {
357
        virDomainRemoveInactive(&driver->domains, vm);
358
        vm = NULL;
359
        goto cleanup;
D
Daniel Veillard 已提交
360 361
    }

362 363 364 365 366 367
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_DEFINED,
                                     newVM ?
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                     VIR_DOMAIN_EVENT_DEFINED_UPDATED);

D
Daniel Veillard 已提交
368
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
369
    if (dom)
D
Daniel Veillard 已提交
370 371
        dom->id = vm->def->id;

372 373
cleanup:
    virDomainDefFree(def);
374 375
    if (vm)
        virDomainObjUnlock(vm);
376 377
    if (event)
        lxcDomainEventQueue(driver, event);
378
    lxcDriverUnlock(driver);
D
Daniel Veillard 已提交
379 380 381 382 383
    return dom;
}

static int lxcDomainUndefine(virDomainPtr dom)
{
384 385
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
386
    virDomainEventPtr event = NULL;
387
    int ret = -1;
D
Daniel Veillard 已提交
388

389
    lxcDriverLock(driver);
390
    vm = virDomainFindByUUID(&driver->domains, dom->uuid);
D
Daniel Veillard 已提交
391 392
    if (!vm) {
        lxcError(dom->conn, dom, VIR_ERR_INVALID_DOMAIN,
J
Jim Meyering 已提交
393
                 "%s", _("no domain with matching uuid"));
394
        goto cleanup;
D
Daniel Veillard 已提交
395 396
    }

397
    if (virDomainIsActive(vm)) {
398
        lxcError(dom->conn, dom, VIR_ERR_OPERATION_INVALID,
J
Jim Meyering 已提交
399
                 "%s", _("cannot delete active domain"));
400
        goto cleanup;
D
Daniel Veillard 已提交
401 402
    }

403
    if (!vm->persistent) {
404
        lxcError(dom->conn, dom, VIR_ERR_OPERATION_INVALID,
405
                 "%s", _("cannot undefine transient domain"));
406
        goto cleanup;
407
    }
D
Daniel Veillard 已提交
408

409 410 411
    if (virDomainDeleteConfig(dom->conn,
                              driver->configDir,
                              driver->autostartDir,
412 413
                              vm) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
414

415 416 417 418
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

419
    virDomainRemoveInactive(&driver->domains, vm);
420
    vm = NULL;
421
    ret = 0;
D
Daniel Veillard 已提交
422

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

static int lxcDomainGetInfo(virDomainPtr dom,
                            virDomainInfoPtr info)
{
435 436
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
437
    virCgroupPtr cgroup = NULL;
438
    int ret = -1;
D
Daniel Veillard 已提交
439

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

D
Daniel Veillard 已提交
443 444
    if (!vm) {
        lxcError(dom->conn, dom, VIR_ERR_INVALID_DOMAIN,
J
Jim Meyering 已提交
445
                 "%s", _("no domain with matching uuid"));
446
        goto cleanup;
D
Daniel Veillard 已提交
447 448 449 450
    }

    info->state = vm->state;

451
    if (!virDomainIsActive(vm) || driver->cgroup == NULL) {
D
Daniel Veillard 已提交
452
        info->cpuTime = 0;
R
Ryota Ozaki 已提交
453
        info->memory = vm->def->memory;
D
Daniel Veillard 已提交
454
    } else {
455
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
456 457 458 459 460 461
            lxcError(dom->conn, dom, VIR_ERR_INTERNAL_ERROR,
                     _("Unable to get cgroup for %s\n"), vm->def->name);
            goto cleanup;
        }

        if (virCgroupGetCpuacctUsage(cgroup, &(info->cpuTime)) < 0) {
R
Ryota Ozaki 已提交
462 463 464 465 466 467 468
            lxcError(dom->conn, dom, VIR_ERR_OPERATION_FAILED,
                     "%s", _("cannot read cputime for domain"));
            goto cleanup;
        }
        if (virCgroupGetMemoryUsage(cgroup, &(info->memory)) < 0) {
            lxcError(dom->conn, dom, VIR_ERR_OPERATION_FAILED,
                     "%s", _("cannot read memory usage for domain"));
469 470
            goto cleanup;
        }
D
Daniel Veillard 已提交
471 472
    }

473
    info->maxMem = vm->def->maxmem;
D
Daniel Veillard 已提交
474
    info->nrVirtCpu = 1;
475
    ret = 0;
D
Daniel Veillard 已提交
476

477
cleanup:
478
    lxcDriverUnlock(driver);
479 480
    if (cgroup)
        virCgroupFree(&cgroup);
481 482
    if (vm)
        virDomainObjUnlock(vm);
483
    return ret;
D
Daniel Veillard 已提交
484 485
}

486
static char *lxcGetOSType(virDomainPtr dom)
D
Daniel Veillard 已提交
487
{
488 489 490
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
491

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

496 497
    if (!vm) {
        lxcError(dom->conn, dom, VIR_ERR_INVALID_DOMAIN,
J
Jim Meyering 已提交
498
                 "%s", _("no domain with matching uuid"));
499
        goto cleanup;
500 501
    }

502 503 504
    ret = strdup(vm->def->os.type);

cleanup:
505 506
    if (vm)
        virDomainObjUnlock(vm);
507
    return ret;
D
Daniel Veillard 已提交
508 509
}

R
Ryota Ozaki 已提交
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
/* 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);
        lxcError(dom->conn, dom, VIR_ERR_NO_DOMAIN,
                         _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    ret = vm->def->maxmem;

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);
        lxcError(dom->conn, dom, VIR_ERR_NO_DOMAIN,
                         _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (newmax < vm->def->memory) {
        lxcError(dom->conn, dom, VIR_ERR_INVALID_ARG,
                         "%s", _("cannot set max memory lower than current memory"));
        goto cleanup;
    }

    vm->def->maxmem = newmax;
    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);
        lxcError(dom->conn, dom, VIR_ERR_NO_DOMAIN,
                 _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (newmem > vm->def->maxmem) {
        lxcError(dom->conn, dom, VIR_ERR_INVALID_ARG,
                 "%s", _("cannot set memory higher than max memory"));
        goto cleanup;
    }

    if (virDomainIsActive(vm)) {
        if (virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) != 0) {
            lxcError(dom->conn, dom, VIR_ERR_INTERNAL_ERROR,
                     _("Unable to get cgroup for %s\n"), vm->def->name);
            goto cleanup;
        }

        if (virCgroupSetMemory(cgroup, newmem) < 0) {
            lxcError(dom->conn, dom, VIR_ERR_OPERATION_FAILED,
                     "%s", _("cannot set memory for domain"));
            goto cleanup;
        }
    } else {
        vm->def->memory = newmem;
    }
    ret = 0;

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

D
Daniel Veillard 已提交
616
static char *lxcDomainDumpXML(virDomainPtr dom,
617
                              int flags)
D
Daniel Veillard 已提交
618
{
619 620 621
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
    char *ret = NULL;
D
Daniel Veillard 已提交
622

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

D
Daniel Veillard 已提交
627 628
    if (!vm) {
        lxcError(dom->conn, dom, VIR_ERR_INVALID_DOMAIN,
J
Jim Meyering 已提交
629
                 "%s", _("no domain with matching uuid"));
630
        goto cleanup;
D
Daniel Veillard 已提交
631 632
    }

633 634 635 636 637 638
    ret = virDomainDefFormat(dom->conn,
                             (flags & VIR_DOMAIN_XML_INACTIVE) &&
                             vm->newDef ? vm->newDef : vm->def,
                             flags);

cleanup:
639 640
    if (vm)
        virDomainObjUnlock(vm);
641
    return ret;
D
Daniel Veillard 已提交
642 643
}

644 645 646 647 648 649 650 651 652 653 654 655 656

/**
 * lxcVmCleanup:
 * @vm: Ptr to VM to clean up
 *
 * 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
 */
static int lxcVMCleanup(virConnectPtr conn,
                        lxc_driver_t *driver,
657
                        virDomainObjPtr  vm)
658 659 660 661
{
    int rc = -1;
    int waitRc;
    int childStatus = -1;
D
Dan Smith 已提交
662
    virCgroupPtr cgroup;
663
    int i;
664 665 666 667 668 669

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

    if ((waitRc != vm->pid) && (errno != ECHILD)) {
670 671 672
        virReportSystemError(conn, errno,
                             _("waitpid failed to wait for container %d: %d"),
                             vm->pid, waitRc);
673 674 675 676 677 678 679 680 681
    }

    rc = 0;

    if (WIFEXITED(childStatus)) {
        rc = WEXITSTATUS(childStatus);
        DEBUG("container exited with rc: %d", rc);
    }

682
    virEventRemoveHandle(vm->monitorWatch);
683 684 685
    close(vm->monitor);

    virFileDeletePid(driver->stateDir, vm->def->name);
686
    virDomainDeleteConfig(conn, driver->stateDir, NULL, vm);
687 688 689 690 691 692

    vm->state = VIR_DOMAIN_SHUTOFF;
    vm->pid = -1;
    vm->def->id = -1;
    vm->monitor = -1;

693 694 695
    for (i = 0 ; i < vm->def->nnets ; i++) {
        vethInterfaceUpOrDown(vm->def->nets[i]->ifname, 0);
        vethDelete(vm->def->nets[i]->ifname);
696 697
    }

698 699
    if (driver->cgroup &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0) {
D
Dan Smith 已提交
700 701 702 703
        virCgroupRemove(cgroup);
        virCgroupFree(&cgroup);
    }

704 705 706 707 708 709 710
    if (vm->newDef) {
        virDomainDefFree(vm->def);
        vm->def = vm->newDef;
        vm->def->id = -1;
        vm->newDef = NULL;
    }

711 712 713
    return rc;
}

714 715
/**
 * lxcSetupInterfaces:
716
 * @def: pointer to virtual machine structure
717 718 719 720 721 722 723 724
 *
 * 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,
725
                              virDomainDefPtr def,
726 727
                              unsigned int *nveths,
                              char ***veths)
728
{
729
    int rc = -1, i;
730
    char *bridge = NULL;
731 732
    char parentVeth[PATH_MAX] = "";
    char containerVeth[PATH_MAX] = "";
733
    brControl *brctl = NULL;
734

735
    if (brInit(&brctl) != 0)
736 737
        return -1;

738 739
    for (i = 0 ; i < def->nnets ; i++) {
        switch (def->nets[i]->type) {
740 741 742
        case VIR_DOMAIN_NET_TYPE_NETWORK:
        {
            virNetworkPtr network = virNetworkLookupByName(conn,
743
                                                           def->nets[i]->data.network.name);
744 745 746 747 748 749 750
            if (!network) {
                goto error_exit;
            }

            bridge = virNetworkGetBridgeName(network);

            virNetworkFree(network);
751 752 753
            break;
        }
        case VIR_DOMAIN_NET_TYPE_BRIDGE:
754
            bridge = def->nets[i]->data.bridge.brname;
755
            break;
756 757 758 759 760
        }

        DEBUG("bridge: %s", bridge);
        if (NULL == bridge) {
            lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
761
                     "%s", _("failed to get bridge for interface"));
762 763 764 765
            goto error_exit;
        }

        DEBUG0("calling vethCreate()");
766 767
        if (NULL != def->nets[i]->ifname) {
            strcpy(parentVeth, def->nets[i]->ifname);
768 769 770 771 772 773 774
        }
        DEBUG("parentVeth: %s, containerVeth: %s", parentVeth, containerVeth);
        if (0 != (rc = vethCreate(parentVeth, PATH_MAX, containerVeth, PATH_MAX))) {
            lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
                     _("failed to create veth device pair: %d"), rc);
            goto error_exit;
        }
775 776
        if (NULL == def->nets[i]->ifname) {
            def->nets[i]->ifname = strdup(parentVeth);
777
        }
778 779 780
        if (VIR_REALLOC_N(*veths, (*nveths)+1) < 0)
            goto error_exit;
        if (((*veths)[(*nveths)++] = strdup(containerVeth)) == NULL)
781 782
            goto error_exit;

783
        if (NULL == def->nets[i]->ifname) {
784
            lxcError(NULL, NULL, VIR_ERR_INTERNAL_ERROR,
J
Jim Meyering 已提交
785
                     "%s", _("failed to allocate veth names"));
786 787 788
            goto error_exit;
        }

789
        if (0 != (rc = brAddInterface(brctl, bridge, parentVeth))) {
790 791 792
            virReportSystemError(conn, rc,
                                 _("failed to add %s device to %s"),
                                 parentVeth, bridge);
793 794 795 796
            goto error_exit;
        }

        if (0 != (rc = vethInterfaceUpOrDown(parentVeth, 1))) {
797 798
            virReportSystemError(conn, rc, "%s",
                                 _("failed to enable parent ns veth device"));
799 800 801 802 803 804 805 806
            goto error_exit;
        }

    }

    rc = 0;

error_exit:
807
    brShutdown(brctl);
808 809 810
    return rc;
}

811

812 813
static int lxcMonitorClient(virConnectPtr conn,
                            lxc_driver_t * driver,
814
                            virDomainObjPtr vm)
815
{
816 817 818
    char *sockpath = NULL;
    int fd;
    struct sockaddr_un addr;
819

820 821
    if (virAsprintf(&sockpath, "%s/%s.sock",
                    driver->stateDir, vm->def->name) < 0) {
822
        virReportOOMError(conn);
823 824 825 826
        return -1;
    }

    if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
827 828
        virReportSystemError(conn, errno, "%s",
                             _("failed to create client socket"));
829
        goto error;
830 831
    }

832 833
    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
C
Chris Lalancette 已提交
834 835 836 837 838
    if (virStrcpyStatic(addr.sun_path, sockpath) == NULL) {
        lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
                 _("Socket path %s too big for destination"), sockpath);
        goto error;
    }
839 840

    if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
841 842
        virReportSystemError(conn, errno, "%s",
                             _("failed to connect to client socket"));
843
        goto error;
844 845
    }

846 847
    VIR_FREE(sockpath);
    return fd;
848

849 850 851 852 853 854 855 856 857 858
error:
    VIR_FREE(sockpath);
    if (fd != -1)
        close(fd);
    return -1;
}


static int lxcVmTerminate(virConnectPtr conn,
                          lxc_driver_t *driver,
859
                          virDomainObjPtr vm,
860 861 862 863
                          int signum)
{
    if (signum == 0)
        signum = SIGINT;
864

865 866 867 868 869 870
    if (vm->pid <= 0) {
        lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
                 _("invalid PID %d for container"), vm->pid);
        return -1;
    }

871 872
    if (kill(vm->pid, signum) < 0) {
        if (errno != ESRCH) {
873 874 875
            virReportSystemError(conn, errno,
                                 _("failed to kill pid %d"),
                                 vm->pid);
876
            return -1;
877
        }
878 879
    }

880
    vm->state = VIR_DOMAIN_SHUTDOWN;
881

882 883
    return lxcVMCleanup(conn, driver, vm);
}
884

885 886
static void lxcMonitorEvent(int watch,
                            int fd,
887 888 889 890
                            int events ATTRIBUTE_UNUSED,
                            void *data)
{
    lxc_driver_t *driver = data;
891
    virDomainObjPtr vm = NULL;
892
    virDomainEventPtr event = NULL;
893
    unsigned int i;
894

895
    lxcDriverLock(driver);
896
    for (i = 0 ; i < driver->domains.count ; i++) {
897 898 899 900
        virDomainObjPtr tmpvm = driver->domains.objs[i];
        virDomainObjLock(tmpvm);
        if (tmpvm->monitorWatch == watch) {
            vm = tmpvm;
901
            break;
902
        }
903
        virDomainObjUnlock(tmpvm);
904 905
    }
    if (!vm) {
906
        virEventRemoveHandle(watch);
907
        goto cleanup;
908 909 910 911
    }

    if (vm->monitor != fd) {
        virEventRemoveHandle(watch);
912
        goto cleanup;
913 914
    }

915
    if (lxcVmTerminate(NULL, driver, vm, SIGINT) < 0) {
916
        virEventRemoveHandle(watch);
917 918 919 920 921
    } else {
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
    }
922 923 924 925
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
926 927 928 929

cleanup:
    if (vm)
        virDomainObjUnlock(vm);
930 931
    if (event)
        lxcDomainEventQueue(driver, event);
932
    lxcDriverUnlock(driver);
933 934 935
}


936 937 938 939 940 941 942 943 944 945 946
static int lxcControllerStart(virConnectPtr conn,
                              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 已提交
947 948 949 950 951
    int lenvc = 0, lenva = 0;
    const char **lenv = NULL;
    char *filterstr;
    char *outputstr;
    char *tmp;
A
Amy Griffis 已提交
952
    int log_level;
953 954
    pid_t child;
    int status;
955 956
    fd_set keepfd;
    char appPtyStr[30];
957
    const char *emulator;
A
Amy Griffis 已提交
958
    lxc_driver_t *driver = conn->privateData;
959 960

    FD_ZERO(&keepfd);
961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983

#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 已提交
984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
#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)

A
Amy Griffis 已提交
1008 1009
    log_level = virLogGetDefaultPriority();
    if (virAsprintf(&tmp, "LIBVIRT_DEBUG=%d", log_level) < 0)
A
Amy Griffis 已提交
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
        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 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
    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 已提交
1031
            goto no_memory;
A
Amy Griffis 已提交
1032
        ADD_ENV(tmp);
A
Amy Griffis 已提交
1033 1034 1035 1036
    }

    ADD_ENV(NULL);

1037 1038
    snprintf(appPtyStr, sizeof(appPtyStr), "%d", appPty);

1039 1040 1041
    emulator = vm->def->emulator;

    ADD_ARG_LIT(emulator);
1042 1043 1044
    ADD_ARG_LIT("--name");
    ADD_ARG_LIT(vm->def->name);
    ADD_ARG_LIT("--console");
1045
    ADD_ARG_LIT(appPtyStr);
1046 1047 1048 1049 1050 1051 1052 1053 1054
    ADD_ARG_LIT("--background");

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

    ADD_ARG(NULL);

1055 1056
    FD_SET(appPty, &keepfd);

A
Amy Griffis 已提交
1057
    if (virExec(conn, largv, lenv, &keepfd, &child,
1058
                -1, &logfd, &logfd,
1059 1060 1061 1062 1063 1064 1065 1066 1067
                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) {
1068 1069 1070
        virReportSystemError(conn, errno,
                             _("cannot wait for '%s'"),
                             largv[0]);
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
        goto cleanup;
    }

    if (!(WIFEXITED(status) && WEXITSTATUS(status) == 0)) {
        lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
                 _("container '%s' unexpectedly shutdown during startup"),
                 largv[0]);
        goto cleanup;
    }

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
A
Amy Griffis 已提交
1084 1085
#undef ADD_ENV_SPACE
#undef ADD_ENV_PAIR
1086

A
Amy Griffis 已提交
1087
    return 0;
1088 1089

no_memory:
1090
    virReportOOMError(conn);
A
Amy Griffis 已提交
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
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;
1103 1104 1105
}


1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
/**
 * 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,
1118
                      virDomainObjPtr  vm)
1119 1120
{
    int rc = -1;
1121 1122
    unsigned int i;
    int parentTty;
1123
    char *parentTtyPath = NULL;
1124 1125 1126 1127 1128
    char *logfile = NULL;
    int logfd = -1;
    unsigned int nveths = 0;
    char **veths = NULL;

1129 1130 1131 1132
    if ((rc = virFileMakePath(driver->logDir)) < 0) {
        virReportSystemError(conn, rc,
                             _("cannot create log directory '%s'"),
                             driver->logDir);
1133 1134
        return -1;
    }
1135

1136 1137
    if (virAsprintf(&logfile, "%s/%s.log",
                    driver->logDir, vm->def->name) < 0) {
1138
        virReportOOMError(conn);
1139
        return -1;
1140 1141
    }

1142
    /* open parent tty */
1143
    if (virFileOpenTty(&parentTty, &parentTtyPath, 1) < 0) {
1144 1145
        virReportSystemError(conn, errno, "%s",
                             _("failed to allocate tty"));
1146 1147
        goto cleanup;
    }
1148 1149 1150 1151 1152 1153 1154
    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);
    }
1155

1156
    if (lxcSetupInterfaces(conn, vm->def, &nveths, &veths) != 0)
1157
        goto cleanup;
1158

1159 1160 1161 1162 1163 1164
    /* Persist the live configuration now we have veth & tty info */
    if (virDomainSaveConfig(conn, driver->stateDir, vm->def) < 0) {
        rc = -1;
        goto cleanup;
    }

1165
    if ((logfd = open(logfile, O_WRONLY | O_APPEND | O_CREAT,
1166
             S_IRUSR|S_IWUSR)) < 0) {
1167 1168 1169
        virReportSystemError(conn, errno,
                             _("failed to open '%s'"),
                             logfile);
1170
        goto cleanup;
1171 1172
    }

1173 1174 1175 1176
    if (lxcControllerStart(conn,
                           vm,
                           nveths, veths,
                           parentTty, logfd) < 0)
1177
        goto cleanup;
1178 1179 1180 1181 1182

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

1185 1186
    /* And get its pid */
    if ((rc = virFileReadPid(driver->stateDir, vm->def->name, &vm->pid)) != 0) {
1187 1188 1189
        virReportSystemError(conn, rc,
                             _("Failed to read pid file %s/%s.pid"),
                             driver->stateDir, vm->def->name);
1190
        rc = -1;
1191
        goto cleanup;
1192
    }
1193

1194
    vm->def->id = vm->pid;
1195 1196
    vm->state = VIR_DOMAIN_RUNNING;

1197 1198 1199 1200
    if ((vm->monitorWatch = virEventAddHandle(
             vm->monitor,
             VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP,
             lxcMonitorEvent,
1201
             driver, NULL)) < 0) {
1202 1203 1204
        lxcVmTerminate(conn, driver, vm, 0);
        goto cleanup;
    }
1205

1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
    rc = 0;

cleanup:
    for (i = 0 ; i < nveths ; i++) {
        if (rc != 0)
            vethDelete(veths[i]);
        VIR_FREE(veths[i]);
    }
    if (rc != 0 && vm->monitor != -1) {
        close(vm->monitor);
        vm->monitor = -1;
    }
    if (parentTty != -1)
        close(parentTty);
    if (logfd != -1)
        close(logfd);
    VIR_FREE(logfile);
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
    return rc;
}

/**
 * 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)
{
1236 1237
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1238
    virDomainEventPtr event = NULL;
1239
    int ret = -1;
1240

1241
    lxcDriverLock(driver);
1242
    vm = virDomainFindByName(&driver->domains, dom->name);
1243
    if (!vm) {
1244
        lxcError(dom->conn, dom, VIR_ERR_INVALID_DOMAIN,
1245
                 _("no domain named %s"), dom->name);
1246 1247 1248
        goto cleanup;
    }

1249
    if ((vm->def->nets != NULL) && !(driver->have_netns)) {
1250
        lxcError(dom->conn, NULL, VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1251
                 "%s", _("System lacks NETNS support"));
1252 1253 1254
        goto cleanup;
    }

1255
    ret = lxcVmStart(dom->conn, driver, vm);
1256

1257 1258 1259 1260 1261
    if (ret == 0)
        event = virDomainEventNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);

1262
cleanup:
1263 1264
    if (vm)
        virDomainObjUnlock(vm);
1265 1266
    if (event)
        lxcDomainEventQueue(driver, event);
1267
    lxcDriverUnlock(driver);
1268
    return ret;
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
}

/**
 * lxcDomainCreateAndStart:
 * @conn: pointer to connection
 * @xml: XML definition of domain
 * @flags: Unused
 *
 * 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,
                        unsigned int flags ATTRIBUTE_UNUSED) {
1285
    lxc_driver_t *driver = conn->privateData;
1286
    virDomainObjPtr vm = NULL;
1287
    virDomainDefPtr def;
1288
    virDomainPtr dom = NULL;
1289
    virDomainEventPtr event = NULL;
1290

1291
    lxcDriverLock(driver);
1292 1293
    if (!(def = virDomainDefParseString(conn, driver->caps, xml,
                                        VIR_DOMAIN_XML_INACTIVE)))
1294
        goto cleanup;
1295

1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
    /* See if a VM with matching UUID already exists */
    vm = virDomainFindByUUID(&driver->domains, def->uuid);
    if (vm) {
        /* UUID matches, but if names don't match, refuse it */
        if (STRNEQ(vm->def->name, def->name)) {
            char uuidstr[VIR_UUID_STRING_BUFLEN];
            virUUIDFormat(vm->def->uuid, uuidstr);
            lxcError(conn, NULL, VIR_ERR_OPERATION_FAILED,
                     _("domain '%s' is already defined with uuid %s"),
                     vm->def->name, uuidstr);
            goto cleanup;
        }

        /* UUID & name match, but if VM is already active, refuse it */
        if (virDomainIsActive(vm)) {
            lxcError(conn, NULL, VIR_ERR_OPERATION_FAILED,
                     _("domain is already active as '%s'"), vm->def->name);
            goto cleanup;
        }
        virDomainObjUnlock(vm);
    } else {
        /* UUID does not match, but if a name matches, refuse it */
        vm = virDomainFindByName(&driver->domains, def->name);
        if (vm) {
            char uuidstr[VIR_UUID_STRING_BUFLEN];
            virUUIDFormat(vm->def->uuid, uuidstr);
            lxcError(conn, NULL, VIR_ERR_OPERATION_FAILED,
                     _("domain '%s' is already defined with uuid %s"),
                     def->name, uuidstr);
            goto cleanup;
        }
    }

1329 1330
    if ((def->nets != NULL) && !(driver->have_netns)) {
        lxcError(conn, NULL, VIR_ERR_NO_SUPPORT,
J
Jim Meyering 已提交
1331
                 "%s", _("System lacks NETNS support"));
1332
        goto cleanup;
1333 1334
    }

1335

1336 1337 1338
    if (!(vm = virDomainAssignDef(conn, &driver->domains, def)))
        goto cleanup;
    def = NULL;
1339 1340

    if (lxcVmStart(conn, driver, vm) < 0) {
1341
        virDomainRemoveInactive(&driver->domains, vm);
1342
        vm = NULL;
1343
        goto cleanup;
1344 1345
    }

1346 1347 1348 1349
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);

1350
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
1351
    if (dom)
1352 1353
        dom->id = vm->def->id;

1354 1355
cleanup:
    virDomainDefFree(def);
1356 1357
    if (vm)
        virDomainObjUnlock(vm);
1358 1359
    if (event)
        lxcDomainEventQueue(driver, event);
1360
    lxcDriverUnlock(driver);
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
    return dom;
}

/**
 * lxcDomainShutdown:
 * @dom: Ptr to domain to shutdown
 *
 * 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)
{
1374 1375
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1376
    virDomainEventPtr event = NULL;
1377
    int ret = -1;
1378

1379
    lxcDriverLock(driver);
1380
    vm = virDomainFindByID(&driver->domains, dom->id);
1381 1382 1383
    if (!vm) {
        lxcError(dom->conn, dom, VIR_ERR_INVALID_DOMAIN,
                 _("no domain with id %d"), dom->id);
1384
        goto cleanup;
1385 1386
    }

1387
    ret = lxcVmTerminate(dom->conn, driver, vm, 0);
1388 1389 1390
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_SHUTDOWN);
1391 1392 1393 1394
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1395 1396

cleanup:
1397 1398
    if (vm)
        virDomainObjUnlock(vm);
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
    if (event)
        lxcDomainEventQueue(driver, event);
    lxcDriverUnlock(driver);
    return ret;
}


static int
lxcDomainEventRegister (virConnectPtr conn,
                        virConnectDomainEventCallback callback,
                        void *opaque,
                        virFreeCallback freecb)
{
    lxc_driver_t *driver = conn->privateData;
    int ret;

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

1420
    return ret;
1421 1422
}

1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
static int
lxcDomainEventDeregister (virConnectPtr conn,
                          virConnectDomainEventCallback callback)
{
    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;
}

static void lxcDomainEventDispatchFunc(virConnectPtr conn,
                                       virDomainEventPtr event,
                                       virConnectDomainEventCallback cb,
                                       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);
}
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506

/**
 * lxcDomainDestroy:
 * @dom: Ptr to domain to destroy
 *
 * Sends SIGKILL to container root process to terminate the container
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcDomainDestroy(virDomainPtr dom)
{
1507 1508
    lxc_driver_t *driver = dom->conn->privateData;
    virDomainObjPtr vm;
1509
    virDomainEventPtr event = NULL;
1510
    int ret = -1;
1511

1512
    lxcDriverLock(driver);
1513
    vm = virDomainFindByID(&driver->domains, dom->id);
1514 1515 1516
    if (!vm) {
        lxcError(dom->conn, dom, VIR_ERR_INVALID_DOMAIN,
                 _("no domain with id %d"), dom->id);
1517
        goto cleanup;
1518 1519
    }

1520
    ret = lxcVmTerminate(dom->conn, driver, vm, SIGKILL);
1521 1522 1523
    event = virDomainEventNewFromObj(vm,
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1524 1525 1526 1527
    if (!vm->persistent) {
        virDomainRemoveInactive(&driver->domains, vm);
        vm = NULL;
    }
1528 1529

cleanup:
1530 1531
    if (vm)
        virDomainObjUnlock(vm);
1532 1533
    if (event)
        lxcDomainEventQueue(driver, event);
1534
    lxcDriverUnlock(driver);
1535
    return ret;
1536
}
1537

1538 1539 1540 1541 1542
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

1543 1544 1545
    if (virRun(NULL, argv, &ip_rc) < 0 ||
        !(WIFEXITED(ip_rc) && (WEXITSTATUS(ip_rc) != 255)))
        return 0;
1546

1547 1548
    if (lxcContainerAvailable(LXC_CONTAINER_FEATURE_NET) < 0)
        return 0;
1549

1550
    return 1;
1551 1552
}

1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594

static void
lxcAutostartConfigs(lxc_driver_t *driver) {
    unsigned int i;
    /* 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 */

    lxcDriverLock(driver);
    for (i = 0 ; i < driver->domains.count ; i++) {
        virDomainObjPtr vm = driver->domains.objs[i];
        virDomainObjLock(vm);
        if (vm->autostart &&
            !virDomainIsActive(vm)) {
            int ret = lxcVmStart(conn, driver, vm);
            if (ret < 0) {
                virErrorPtr err = virGetLastError();
                VIR_ERROR(_("Failed to autostart VM '%s': %s\n"),
                          vm->def->name,
                          err ? err->message : "");
            } else {
                virDomainEventPtr event =
                    virDomainEventNewFromObj(vm,
                                             VIR_DOMAIN_EVENT_STARTED,
                                             VIR_DOMAIN_EVENT_STARTED_BOOTED);
                if (event)
                    lxcDomainEventQueue(driver, event);
            }
        }
        virDomainObjUnlock(vm);
    }
    lxcDriverUnlock(driver);

    if (conn)
        virConnectClose(conn);
}


1595
static int lxcStartup(int privileged)
D
Daniel Veillard 已提交
1596
{
1597
    unsigned int i;
1598
    char *ld;
1599
    int rc;
1600 1601 1602 1603 1604 1605 1606 1607

    /* 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");
    if (ld && strstr(ld, "vgpreload"))
        return -1;
1608 1609

    /* Check that the user is root */
1610
    if (!privileged) {
1611 1612 1613
        return -1;
    }

1614
    if (VIR_ALLOC(lxc_driver) < 0) {
1615 1616
        return -1;
    }
1617 1618 1619 1620
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
1621
    lxcDriverLock(lxc_driver);
D
Daniel Veillard 已提交
1622

1623
    /* Check that this is a container enabled kernel */
1624 1625
    if (lxcContainerAvailable(0) < 0) {
        VIR_INFO0("LXC support not available in this kernel, disabling driver");
1626
        goto cleanup;
1627
    }
D
Daniel Veillard 已提交
1628

1629
    if (VIR_ALLOC(lxc_driver->domainEventCallbacks) < 0)
1630 1631 1632 1633 1634 1635 1636 1637
        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 已提交
1638
    lxc_driver->log_libvirtd = 0; /* by default log to container logfile */
1639
    lxc_driver->have_netns = lxcCheckNetNsSupport();
D
Daniel Veillard 已提交
1640

1641 1642 1643 1644 1645 1646 1647
    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 已提交
1648
    /* Call function to load lxc driver configuration information */
1649 1650
    if (lxcLoadDriverConfig(lxc_driver) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
1651

1652 1653
    if ((lxc_driver->caps = lxcCapsInit()) == NULL)
        goto cleanup;
D
Daniel Veillard 已提交
1654

1655 1656 1657 1658
    if (virDomainLoadAllConfigs(NULL,
                                lxc_driver->caps,
                                &lxc_driver->domains,
                                lxc_driver->configDir,
1659
                                lxc_driver->autostartDir,
1660
                                0, NULL, NULL) < 0)
1661
        goto cleanup;
1662

1663 1664
    for (i = 0 ; i < lxc_driver->domains.count ; i++) {
        virDomainObjPtr vm = lxc_driver->domains.objs[i];
1665 1666
        char *config = NULL;
        virDomainDefPtr tmp;
1667 1668 1669 1670

        virDomainObjLock(vm);
        if ((vm->monitor = lxcMonitorClient(NULL, lxc_driver, vm)) < 0) {
            virDomainObjUnlock(vm);
1671
            continue;
1672
        }
1673 1674 1675 1676 1677

        /* Read pid from controller */
        if ((rc = virFileReadPid(lxc_driver->stateDir, vm->def->name, &vm->pid)) != 0) {
            close(vm->monitor);
            vm->monitor = -1;
1678
            virDomainObjUnlock(vm);
1679 1680 1681
            continue;
        }

1682 1683
        if ((config = virDomainConfigFile(NULL,
                                          lxc_driver->stateDir,
1684 1685
                                          vm->def->name)) == NULL) {
            virDomainObjUnlock(vm);
1686
            continue;
1687
        }
1688 1689

        /* Try and load the live config */
1690
        tmp = virDomainDefParseFile(NULL, lxc_driver->caps, config, 0);
1691 1692 1693 1694 1695 1696
        VIR_FREE(config);
        if (tmp) {
            vm->newDef = vm->def;
            vm->def = tmp;
        }

1697 1698 1699 1700 1701 1702 1703 1704
        if (vm->pid != 0) {
            vm->def->id = vm->pid;
            vm->state = VIR_DOMAIN_RUNNING;
        } else {
            vm->def->id = -1;
            close(vm->monitor);
            vm->monitor = -1;
        }
1705
        virDomainObjUnlock(vm);
1706 1707
    }

1708
    lxcDriverUnlock(lxc_driver);
D
Daniel Veillard 已提交
1709 1710
    return 0;

1711 1712 1713 1714
cleanup:
    lxcDriverUnlock(lxc_driver);
    lxcShutdown();
    return -1;
D
Daniel Veillard 已提交
1715 1716
}

1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
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);
    virDomainLoadAllConfigs(NULL,
                            lxc_driver->caps,
                            &lxc_driver->domains,
                            lxc_driver->configDir,
                            lxc_driver->autostartDir,
                            0, lxcNotifyLoadDomain, lxc_driver);
    lxcDriverUnlock(lxc_driver);

    lxcAutostartConfigs(lxc_driver);

    return 0;
}

1756
static int lxcShutdown(void)
D
Daniel Veillard 已提交
1757
{
1758
    if (lxc_driver == NULL)
1759
        return(-1);
1760

1761
    lxcDriverLock(lxc_driver);
1762
    virDomainObjListFree(&lxc_driver->domains);
1763

1764 1765 1766 1767 1768 1769
    virDomainEventCallbackListFree(lxc_driver->domainEventCallbacks);
    virDomainEventQueueFree(lxc_driver->domainEventQueue);

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

1770 1771 1772 1773 1774 1775
    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);
1776
    virMutexDestroy(&lxc_driver->lock);
1777
    VIR_FREE(lxc_driver);
1778 1779 1780

    return 0;
}
D
Daniel Veillard 已提交
1781

1782 1783 1784 1785 1786 1787 1788 1789 1790
/**
 * lxcActive:
 *
 * Checks if the LXC daemon is active, i.e. has an active domain
 *
 * Returns 1 if active, 0 otherwise
 */
static int
lxcActive(void) {
1791
    unsigned int i;
1792
    int active = 0;
1793

1794 1795
    if (lxc_driver == NULL)
        return(0);
1796

1797 1798 1799
    lxcDriverLock(lxc_driver);
    for (i = 0 ; i < lxc_driver->domains.count ; i++) {
        virDomainObjLock(lxc_driver->domains.objs[i]);
1800
        if (virDomainIsActive(lxc_driver->domains.objs[i]))
1801 1802 1803 1804
            active = 1;
        virDomainObjUnlock(lxc_driver->domains.objs[i]);
    }
    lxcDriverUnlock(lxc_driver);
1805

1806
    return active;
D
Daniel Veillard 已提交
1807 1808
}

D
Dan Smith 已提交
1809 1810 1811 1812 1813 1814 1815
static int lxcVersion(virConnectPtr conn, unsigned long *version)
{
    struct utsname ver;
    int maj;
    int min;
    int rev;

1816
    uname(&ver);
D
Dan Smith 已提交
1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827

    if (sscanf(ver.release, "%i.%i.%i", &maj, &min, &rev) != 3) {
        lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
                 _("Unknown release: %s"), ver.release);
        return -1;
    }

    *version = (maj * 1000 * 1000) + (min * 1000) + rev;

    return 0;
}
1828

1829 1830
static char *lxcGetSchedulerType(virDomainPtr domain ATTRIBUTE_UNUSED,
                                 int *nparams)
1831 1832 1833 1834 1835 1836 1837
{
    if (nparams)
        *nparams = 1;

    return strdup("posix");
}

1838
static int lxcSetSchedulerParameters(virDomainPtr domain,
1839 1840 1841
                                     virSchedParameterPtr params,
                                     int nparams)
{
1842
    lxc_driver_t *driver = domain->conn->privateData;
1843
    int i;
1844 1845 1846
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
    int ret = -1;
1847

1848
    if (driver->cgroup == NULL)
1849 1850 1851 1852
        return -1;

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

1854 1855 1856 1857
    if (vm == NULL) {
        lxcError(NULL, domain, VIR_ERR_INTERNAL_ERROR,
                 _("No such domain %s"), domain->uuid);
        goto cleanup;
1858 1859
    }

1860
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
1861
        goto cleanup;
1862 1863 1864

    for (i = 0; i < nparams; i++) {
        virSchedParameterPtr param = &params[i];
1865 1866 1867 1868 1869
        if (param->type != VIR_DOMAIN_SCHED_FIELD_ULLONG) {
            lxcError(NULL, domain, VIR_ERR_INVALID_ARG,
                     _("invalid type for cpu_shares tunable, expected a 'ullong'"));
            goto cleanup;
        }
1870 1871

        if (STREQ(param->field, "cpu_shares")) {
1872
            if (virCgroupSetCpuShares(group, params[i].value.ul) != 0)
1873
                goto cleanup;
1874
        } else {
1875
            lxcError(NULL, domain, VIR_ERR_INVALID_ARG,
1876
                     _("Invalid parameter `%s'"), param->field);
1877
            goto cleanup;
1878 1879
        }
    }
1880
    ret = 0;
1881

1882
cleanup:
1883
    lxcDriverUnlock(driver);
1884
    virCgroupFree(&group);
1885 1886
    if (vm)
        virDomainObjUnlock(vm);
1887
    return ret;
1888 1889
}

1890
static int lxcGetSchedulerParameters(virDomainPtr domain,
1891 1892 1893
                                     virSchedParameterPtr params,
                                     int *nparams)
{
1894
    lxc_driver_t *driver = domain->conn->privateData;
1895 1896
    virCgroupPtr group = NULL;
    virDomainObjPtr vm = NULL;
1897
    unsigned long long val;
1898
    int ret = -1;
1899

1900
    if (driver->cgroup == NULL)
1901
        return -1;
1902 1903

    if ((*nparams) != 1) {
1904
        lxcError(NULL, domain, VIR_ERR_INVALID_ARG,
J
Jim Meyering 已提交
1905
                 "%s", _("Invalid parameter count"));
1906
        return -1;
1907 1908
    }

1909 1910 1911
    lxcDriverLock(driver);
    vm = virDomainFindByUUID(&driver->domains, domain->uuid);

1912 1913 1914 1915
    if (vm == NULL) {
        lxcError(NULL, domain, VIR_ERR_INTERNAL_ERROR,
                 _("No such domain %s"), domain->uuid);
        goto cleanup;
1916 1917
    }

1918
    if (virCgroupForDomain(driver->cgroup, vm->def->name, &group, 0) != 0)
1919
        goto cleanup;
1920

1921 1922
    if (virCgroupGetCpuShares(group, &val) != 0)
        goto cleanup;
1923
    params[0].value.ul = val;
C
Chris Lalancette 已提交
1924 1925 1926 1927 1928
    if (virStrcpyStatic(params[0].field, "cpu_shares") == NULL) {
        lxcError(NULL, domain, VIR_ERR_INTERNAL_ERROR,
                 "%s", _("Field cpu_shares too big for destination"));
        goto cleanup;
    }
1929 1930
    params[0].type = VIR_DOMAIN_SCHED_FIELD_ULLONG;

1931
    ret = 0;
1932

1933
cleanup:
1934
    lxcDriverUnlock(driver);
1935
    virCgroupFree(&group);
1936 1937
    if (vm)
        virDomainObjUnlock(vm);
1938
    return ret;
1939 1940
}

1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037
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);
        lxcError(dom->conn, dom, VIR_ERR_NO_DOMAIN,
                 _("no domain with matching uuid '%s'"), uuidstr);
        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);
        lxcError(dom->conn, dom, VIR_ERR_NO_DOMAIN,
                 _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!vm->persistent) {
        lxcError(dom->conn, dom, VIR_ERR_INTERNAL_ERROR,
                 "%s", _("cannot set autostart for transient domain"));
        goto cleanup;
    }

    autostart = (autostart != 0);

    if (vm->autostart != autostart) {
        if ((configFile = virDomainConfigFile(dom->conn, driver->configDir, vm->def->name)) == NULL)
            goto cleanup;
        if ((autostartLink = virDomainConfigFile(dom->conn, driver->autostartDir, vm->def->name)) == NULL)
            goto cleanup;

        if (autostart) {
            int err;

            if ((err = virFileMakePath(driver->autostartDir))) {
                virReportSystemError(dom->conn, err,
                                     _("cannot create autostart directory %s"),
                                     driver->autostartDir);
                goto cleanup;
            }

            if (symlink(configFile, autostartLink) < 0) {
                virReportSystemError(dom->conn, errno,
                                     _("Failed to create symlink '%s to '%s'"),
                                     autostartLink, configFile);
                goto cleanup;
            }
        } else {
            if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
                virReportSystemError(dom->conn, errno,
                                     _("Failed to delete symlink '%s'"),
                                     autostartLink);
                goto cleanup;
            }
        }

        vm->autostart = autostart;
    }
    ret = 0;

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

2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051
static char *lxcGetHostname (virConnectPtr conn)
{
    char *result;

    result = virGetHostname();
    if (result == NULL) {
        virReportSystemError (conn, errno,
                              "%s", _("failed to determine host name"));
        return NULL;
    }
    /* Caller frees this string. */
    return result;
}

R
Ryota Ozaki 已提交
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 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 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259
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 &&
        virCgroupForDomain(driver->cgroup, vm->def->name, &cgroup, 0) == 0))
        return -1;

    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:
    if (cgroup)
        virCgroupFree(&cgroup);
    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);
        lxcError(dom->conn, dom, VIR_ERR_NO_DOMAIN,
                 _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainIsActive(vm)) {
        lxcError(dom->conn, dom, VIR_ERR_OPERATION_INVALID,
                         "%s", _("domain is not running"));
        goto cleanup;
    }

    if (vm->state != VIR_DOMAIN_PAUSED) {
        if (lxcFreezeContainer(driver, vm) < 0) {
            lxcError(dom->conn, dom, VIR_ERR_OPERATION_FAILED,
                             "%s", _("suspend operation failed"));
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_PAUSED;

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

    if (virDomainSaveStatus(dom->conn, driver->stateDir, vm) < 0)
        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);
        lxcError(dom->conn, dom, VIR_ERR_NO_DOMAIN,
                 _("no domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (!virDomainIsActive(vm)) {
        lxcError(dom->conn, dom, VIR_ERR_OPERATION_INVALID,
                         "%s", _("domain is not running"));
        goto cleanup;
    }

    if (vm->state == VIR_DOMAIN_PAUSED) {
        if (lxcUnfreezeContainer(driver, vm) < 0) {
            lxcError(dom->conn, dom, VIR_ERR_OPERATION_FAILED,
                             "%s", _("resume operation failed"));
            goto cleanup;
        }
        vm->state = VIR_DOMAIN_RUNNING;

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

    if (virDomainSaveStatus(dom->conn, driver->stateDir, vm) < 0)
        goto cleanup;
    ret = 0;

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


D
Daniel Veillard 已提交
2260 2261 2262 2263 2264 2265 2266 2267
/* 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 已提交
2268
    lxcVersion, /* version */
2269
    lxcGetHostname, /* getHostname */
D
Daniel Veillard 已提交
2270
    NULL, /* getMaxVcpus */
2271 2272
    nodeGetInfo, /* nodeGetInfo */
    lxcGetCapabilities, /* getCapabilities */
D
Daniel Veillard 已提交
2273 2274
    lxcListDomains, /* listDomains */
    lxcNumDomains, /* numOfDomains */
2275
    lxcDomainCreateAndStart, /* domainCreateXML */
D
Daniel Veillard 已提交
2276 2277 2278
    lxcDomainLookupByID, /* domainLookupByID */
    lxcDomainLookupByUUID, /* domainLookupByUUID */
    lxcDomainLookupByName, /* domainLookupByName */
R
Ryota Ozaki 已提交
2279 2280
    lxcDomainSuspend, /* domainSuspend */
    lxcDomainResume, /* domainResume */
2281
    lxcDomainShutdown, /* domainShutdown */
D
Daniel Veillard 已提交
2282
    NULL, /* domainReboot */
2283
    lxcDomainDestroy, /* domainDestroy */
D
Daniel Veillard 已提交
2284
    lxcGetOSType, /* domainGetOSType */
R
Ryota Ozaki 已提交
2285 2286 2287
    lxcDomainGetMaxMemory, /* domainGetMaxMemory */
    lxcDomainSetMaxMemory, /* domainSetMaxMemory */
    lxcDomainSetMemory, /* domainSetMemory */
D
Daniel Veillard 已提交
2288 2289 2290 2291 2292 2293 2294 2295
    lxcDomainGetInfo, /* domainGetInfo */
    NULL, /* domainSave */
    NULL, /* domainRestore */
    NULL, /* domainCoreDump */
    NULL, /* domainSetVcpus */
    NULL, /* domainPinVcpu */
    NULL, /* domainGetVcpus */
    NULL, /* domainGetMaxVcpus */
2296 2297
    NULL, /* domainGetSecurityLabel */
    NULL, /* nodeGetSecurityModel */
D
Daniel Veillard 已提交
2298
    lxcDomainDumpXML, /* domainDumpXML */
2299 2300
    NULL, /* domainXMLFromNative */
    NULL, /* domainXMLToNative */
D
Daniel Veillard 已提交
2301 2302
    lxcListDefinedDomains, /* listDefinedDomains */
    lxcNumDefinedDomains, /* numOfDefinedDomains */
2303
    lxcDomainStart, /* domainCreate */
D
Daniel Veillard 已提交
2304 2305 2306 2307
    lxcDomainDefine, /* domainDefineXML */
    lxcDomainUndefine, /* domainUndefine */
    NULL, /* domainAttachDevice */
    NULL, /* domainDetachDevice */
2308 2309
    lxcDomainGetAutostart, /* domainGetAutostart */
    lxcDomainSetAutostart, /* domainSetAutostart */
2310 2311 2312
    lxcGetSchedulerType, /* domainGetSchedulerType */
    lxcGetSchedulerParameters, /* domainGetSchedulerParameters */
    lxcSetSchedulerParameters, /* domainSetSchedulerParameters */
D
Daniel Veillard 已提交
2313 2314 2315 2316 2317
    NULL, /* domainMigratePrepare */
    NULL, /* domainMigratePerform */
    NULL, /* domainMigrateFinish */
    NULL, /* domainBlockStats */
    NULL, /* domainInterfaceStats */
D
Daniel P. Berrange 已提交
2318 2319
    NULL, /* domainBlockPeek */
    NULL, /* domainMemoryPeek */
2320 2321
    nodeGetCellsFreeMemory, /* nodeGetCellsFreeMemory */
    nodeGetFreeMemory,  /* getFreeMemory */
2322 2323
    lxcDomainEventRegister, /* domainEventRegister */
    lxcDomainEventDeregister, /* domainEventDeregister */
D
Daniel Veillard 已提交
2324 2325
    NULL, /* domainMigratePrepare2 */
    NULL, /* domainMigrateFinish2 */
2326
    NULL, /* nodeDeviceDettach */
2327 2328
    NULL, /* nodeDeviceReAttach */
    NULL, /* nodeDeviceReset */
C
Chris Lalancette 已提交
2329
    NULL, /* domainMigratePrepareTunnel */
D
Daniel Veillard 已提交
2330 2331
};

2332
static virStateDriver lxcStateDriver = {
2333 2334 2335
    .initialize = lxcStartup,
    .cleanup = lxcShutdown,
    .active = lxcActive,
2336
    .reload = lxcReload,
2337 2338
};

D
Daniel Veillard 已提交
2339 2340 2341
int lxcRegister(void)
{
    virRegisterDriver(&lxcDriver);
2342
    virRegisterStateDriver(&lxcStateDriver);
D
Daniel Veillard 已提交
2343 2344
    return 0;
}