lxc_driver.c 164.7 KB
Newer Older
D
Daniel Veillard 已提交
1
/*
2
 * Copyright (C) 2010-2016 Red Hat, Inc.
D
Daniel Veillard 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * 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
21
 * License along with this library.  If not, see
O
Osier Yang 已提交
22
 * <http://www.gnu.org/licenses/>.
D
Daniel Veillard 已提交
23 24 25 26
 */

#include <config.h>

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

#ifdef MAJOR_IN_MKDEV
# include <sys/mkdev.h>
#elif MAJOR_IN_SYSMACROS
# include <sys/sysmacros.h>
#endif

38
#include <sys/types.h>
39
#include <sys/socket.h>
40
#include <sys/stat.h>
41 42
#include <sys/un.h>
#include <sys/poll.h>
D
Daniel Veillard 已提交
43 44 45
#include <unistd.h>
#include <wait.h>

46
#include "virerror.h"
47
#include "virlog.h"
48
#include "datatypes.h"
49
#include "lxc_cgroup.h"
D
Daniel Veillard 已提交
50
#include "lxc_conf.h"
51
#include "lxc_container.h"
52
#include "lxc_domain.h"
D
Daniel Veillard 已提交
53
#include "lxc_driver.h"
54
#include "lxc_native.h"
55
#include "lxc_process.h"
56
#include "viralloc.h"
57
#include "virnetdevbridge.h"
58
#include "virnetdevveth.h"
59
#include "virnetdevopenvswitch.h"
60
#include "virhostcpu.h"
61
#include "virhostmem.h"
62
#include "viruuid.h"
63
#include "virhook.h"
E
Eric Blake 已提交
64
#include "virfile.h"
65
#include "virpidfile.h"
66
#include "virfdstream.h"
67
#include "domain_audit.h"
68
#include "domain_nwfilter.h"
69
#include "nwfilter_conf.h"
70
#include "virinitctl.h"
71
#include "virnetdev.h"
A
Ansis Atteka 已提交
72
#include "virnetdevtap.h"
73
#include "virnodesuspend.h"
74
#include "virprocess.h"
75
#include "virtime.h"
76
#include "virtypedparam.h"
M
Martin Kletzander 已提交
77
#include "viruri.h"
78
#include "virstring.h"
79 80
#include "viraccessapicheck.h"
#include "viraccessapichecklxc.h"
81
#include "virhostdev.h"
82
#include "netdev_bandwidth_conf.h"
D
Daniel Veillard 已提交
83

84 85
#define VIR_FROM_THIS VIR_FROM_LXC

86
VIR_LOG_INIT("lxc.lxc_driver");
87

88
#define LXC_NB_MEM_PARAM  3
89
#define LXC_NB_DOMAIN_BLOCK_STAT_PARAM 4
90

91

92 93 94 95
static int lxcStateInitialize(bool privileged,
                              virStateInhibitCallback callback,
                              void *opaque);
static int lxcStateCleanup(void);
96
virLXCDriverPtr lxc_driver = NULL;
D
Daniel Veillard 已提交
97

98 99
/* callbacks for nwfilter */
static int
100
lxcVMFilterRebuild(virDomainObjListIterator iter, void *data)
101
{
102
    return virDomainObjListForEach(lxc_driver->domains, iter, data);
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
}

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

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

static virNWFilterCallbackDriver lxcCallbackDriver = {
    .name = "LXC",
    .vmFilterRebuild = lxcVMFilterRebuild,
    .vmDriverLock = lxcVMDriverLock,
    .vmDriverUnlock = lxcVMDriverUnlock,
};

M
Michal Privoznik 已提交
124 125 126 127
/**
 * lxcDomObjFromDomain:
 * @domain: Domain pointer that has to be looked up
 *
128 129
 * This function looks up @domain and returns the appropriate virDomainObjPtr
 * that has to be released by calling virDomainObjEndAPI.
M
Michal Privoznik 已提交
130
 *
131 132
 * Returns the domain object with incremented reference counter which is locked
 * on success, NULL otherwise.
M
Michal Privoznik 已提交
133 134 135 136 137 138 139 140
 */
static virDomainObjPtr
lxcDomObjFromDomain(virDomainPtr domain)
{
    virDomainObjPtr vm;
    virLXCDriverPtr driver = domain->conn->privateData;
    char uuidstr[VIR_UUID_STRING_BUFLEN];

141
    vm = virDomainObjListFindByUUIDRef(driver->domains, domain->uuid);
M
Michal Privoznik 已提交
142 143 144 145 146 147 148 149 150 151 152
    if (!vm) {
        virUUIDFormat(domain->uuid, uuidstr);
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching uuid '%s' (%s)"),
                       uuidstr, domain->name);
        return NULL;
    }

    return vm;
}

D
Daniel Veillard 已提交
153 154
/* Functions */

155 156
static virDrvOpenStatus lxcConnectOpen(virConnectPtr conn,
                                       virConnectAuthPtr auth ATTRIBUTE_UNUSED,
157
                                       virConfPtr conf ATTRIBUTE_UNUSED,
158
                                       unsigned int flags)
D
Daniel Veillard 已提交
159
{
E
Eric Blake 已提交
160 161
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

D
Daniel Veillard 已提交
162
    /* Verify uri was specified */
163
    if (conn->uri == NULL) {
164 165
        if (lxc_driver == NULL)
            return VIR_DRV_OPEN_DECLINED;
166

167
        if (!(conn->uri = virURIParse("lxc:///")))
168
            return VIR_DRV_OPEN_ERROR;
169 170 171 172 173 174 175 176 177 178
    } 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 */
179 180
        if (conn->uri->path != NULL &&
            STRNEQ(conn->uri->path, "/")) {
181 182 183
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unexpected LXC URI path '%s', try lxc:///"),
                           conn->uri->path);
184 185
            return VIR_DRV_OPEN_ERROR;
        }
D
Daniel Veillard 已提交
186

187 188
        /* URI was good, but driver isn't active */
        if (lxc_driver == NULL) {
189 190
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("lxc state driver is not active"));
191 192 193
            return VIR_DRV_OPEN_ERROR;
        }
    }
194

195 196 197
    if (virConnectOpenEnsureACL(conn) < 0)
        return VIR_DRV_OPEN_ERROR;

198
    conn->privateData = lxc_driver;
D
Daniel Veillard 已提交
199 200 201 202

    return VIR_DRV_OPEN_SUCCESS;
}

203
static int lxcConnectClose(virConnectPtr conn)
D
Daniel Veillard 已提交
204
{
205
    virLXCDriverPtr driver = conn->privateData;
206

207
    virCloseCallbacksRun(driver->closeCallbacks, conn, driver->domains, driver);
208 209
    conn->privateData = NULL;
    return 0;
D
Daniel Veillard 已提交
210 211
}

212

213
static int lxcConnectIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED)
214 215 216 217 218 219
{
    /* Trivially secure, since always inside the daemon */
    return 1;
}


220
static int lxcConnectIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED)
221 222 223 224 225 226
{
    /* Not encrypted, but remote driver takes care of that */
    return 0;
}


227
static int lxcConnectIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
228 229 230 231 232
{
    return 1;
}


233
static char *lxcConnectGetCapabilities(virConnectPtr conn) {
234
    virLXCDriverPtr driver = conn->privateData;
235
    virCapsPtr caps;
236 237
    char *xml;

238 239 240
    if (virConnectGetCapabilitiesEnsureACL(conn) < 0)
        return NULL;

241
    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
242 243
        return NULL;

244
    xml = virCapabilitiesFormatXML(caps);
245

246
    virObjectUnref(caps);
247 248 249 250
    return xml;
}


D
Daniel Veillard 已提交
251 252 253
static virDomainPtr lxcDomainLookupByID(virConnectPtr conn,
                                        int id)
{
254
    virLXCDriverPtr driver = conn->privateData;
255 256
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
257

258
    vm = virDomainObjListFindByID(driver->domains, id);
259

D
Daniel Veillard 已提交
260
    if (!vm) {
261 262
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching id %d"), id);
263
        goto cleanup;
D
Daniel Veillard 已提交
264 265
    }

266 267 268
    if (virDomainLookupByIDEnsureACL(conn, vm->def) < 0)
        goto cleanup;

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

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

static virDomainPtr lxcDomainLookupByUUID(virConnectPtr conn,
                                          const unsigned char *uuid)
{
280
    virLXCDriverPtr driver = conn->privateData;
281 282
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
283

284
    vm = virDomainObjListFindByUUIDRef(driver->domains, uuid);
285

D
Daniel Veillard 已提交
286
    if (!vm) {
287 288
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(uuid, uuidstr);
289 290
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
291
        goto cleanup;
D
Daniel Veillard 已提交
292 293
    }

294 295 296
    if (virDomainLookupByUUIDEnsureACL(conn, vm->def) < 0)
        goto cleanup;

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

299
 cleanup:
300
    virDomainObjEndAPI(&vm);
D
Daniel Veillard 已提交
301 302 303 304 305 306
    return dom;
}

static virDomainPtr lxcDomainLookupByName(virConnectPtr conn,
                                          const char *name)
{
307
    virLXCDriverPtr driver = conn->privateData;
308 309
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;
D
Daniel Veillard 已提交
310

311
    vm = virDomainObjListFindByName(driver->domains, name);
D
Daniel Veillard 已提交
312
    if (!vm) {
313 314
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching name '%s'"), name);
315
        goto cleanup;
D
Daniel Veillard 已提交
316 317
    }

318 319 320
    if (virDomainLookupByNameEnsureACL(conn, vm->def) < 0)
        goto cleanup;

321
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
D
Daniel Veillard 已提交
322

323
 cleanup:
324
    virDomainObjEndAPI(&vm);
D
Daniel Veillard 已提交
325 326 327
    return dom;
}

328 329 330 331 332 333

static int lxcDomainIsActive(virDomainPtr dom)
{
    virDomainObjPtr obj;
    int ret = -1;

M
Michal Privoznik 已提交
334
    if (!(obj = lxcDomObjFromDomain(dom)))
335
        goto cleanup;
336 337 338 339

    if (virDomainIsActiveEnsureACL(dom->conn, obj->def) < 0)
        goto cleanup;

340 341
    ret = virDomainObjIsActive(obj);

342
 cleanup:
343
    virDomainObjEndAPI(&obj);
344 345 346 347 348 349 350 351 352
    return ret;
}


static int lxcDomainIsPersistent(virDomainPtr dom)
{
    virDomainObjPtr obj;
    int ret = -1;

M
Michal Privoznik 已提交
353
    if (!(obj = lxcDomObjFromDomain(dom)))
354
        goto cleanup;
355 356 357 358

    if (virDomainIsPersistentEnsureACL(dom->conn, obj->def) < 0)
        goto cleanup;

359 360
    ret = obj->persistent;

361
 cleanup:
362
    virDomainObjEndAPI(&obj);
363 364 365
    return ret;
}

366 367 368 369 370
static int lxcDomainIsUpdated(virDomainPtr dom)
{
    virDomainObjPtr obj;
    int ret = -1;

M
Michal Privoznik 已提交
371
    if (!(obj = lxcDomObjFromDomain(dom)))
372
        goto cleanup;
373 374 375 376

    if (virDomainIsUpdatedEnsureACL(dom->conn, obj->def) < 0)
        goto cleanup;

377 378
    ret = obj->updated;

379
 cleanup:
380
    virDomainObjEndAPI(&obj);
381 382
    return ret;
}
383

384 385
static int lxcConnectListDomains(virConnectPtr conn, int *ids, int nids)
{
386
    virLXCDriverPtr driver = conn->privateData;
387
    int n;
388

389 390 391
    if (virConnectListDomainsEnsureACL(conn) < 0)
        return -1;

392 393
    n = virDomainObjListGetActiveIDs(driver->domains, ids, nids,
                                     virConnectListDomainsCheckACL, conn);
394

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

398 399
static int lxcConnectNumOfDomains(virConnectPtr conn)
{
400
    virLXCDriverPtr driver = conn->privateData;
401
    int n;
402

403 404 405
    if (virConnectNumOfDomainsEnsureACL(conn) < 0)
        return -1;

406 407
    n = virDomainObjListNumOfDomains(driver->domains, true,
                                     virConnectNumOfDomainsCheckACL, conn);
408

409
    return n;
D
Daniel Veillard 已提交
410 411
}

412
static int lxcConnectListDefinedDomains(virConnectPtr conn,
413 414
                                        char **const names, int nnames)
{
415
    virLXCDriverPtr driver = conn->privateData;
416
    int n;
417

418 419 420
    if (virConnectListDefinedDomainsEnsureACL(conn) < 0)
        return -1;

421 422
    n = virDomainObjListGetInactiveNames(driver->domains, names, nnames,
                                         virConnectListDefinedDomainsCheckACL, conn);
423

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


428 429
static int lxcConnectNumOfDefinedDomains(virConnectPtr conn)
{
430
    virLXCDriverPtr driver = conn->privateData;
431
    int n;
432

433 434 435
    if (virConnectNumOfDefinedDomainsEnsureACL(conn) < 0)
        return -1;

436 437
    n = virDomainObjListNumOfDomains(driver->domains, false,
                                     virConnectNumOfDefinedDomainsCheckACL, conn);
438

439
    return n;
D
Daniel Veillard 已提交
440 441
}

442 443


444 445
static virDomainPtr
lxcDomainDefineXMLFlags(virConnectPtr conn, const char *xml, unsigned int flags)
D
Daniel Veillard 已提交
446
{
447
    virLXCDriverPtr driver = conn->privateData;
448
    virDomainDefPtr def = NULL;
449
    virDomainObjPtr vm = NULL;
450
    virDomainPtr dom = NULL;
451
    virObjectEventPtr event = NULL;
452
    virDomainDefPtr oldDef = NULL;
453
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
454
    virCapsPtr caps = NULL;
455
    unsigned int parse_flags = VIR_DOMAIN_DEF_PARSE_INACTIVE;
D
Daniel Veillard 已提交
456

457 458 459
    virCheckFlags(VIR_DOMAIN_DEFINE_VALIDATE, NULL);

    if (flags & VIR_DOMAIN_DEFINE_VALIDATE)
460
        parse_flags |= VIR_DOMAIN_DEF_PARSE_VALIDATE_SCHEMA;
461

462 463 464 465
    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
        goto cleanup;

    if (!(def = virDomainDefParseString(xml, caps, driver->xmlopt,
466
                                        NULL, parse_flags)))
467
        goto cleanup;
D
Daniel Veillard 已提交
468

469 470 471
    if (virXMLCheckIllegalChars("name", def->name, "\n") < 0)
        goto cleanup;

472
    if (virDomainDefineXMLFlagsEnsureACL(conn, def) < 0)
473 474
        goto cleanup;

475 476 477
    if (virSecurityManagerVerify(driver->securityManager, def) < 0)
        goto cleanup;

478
    if ((def->nets != NULL) && !(cfg->have_netns)) {
479 480
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("System lacks NETNS support"));
481
        goto cleanup;
482 483
    }

484
    if (!(vm = virDomainObjListAdd(driver->domains, def,
485
                                   driver->xmlopt,
486
                                   0, &oldDef)))
487
        goto cleanup;
488 489

    virObjectRef(vm);
490
    def = NULL;
491
    vm->persistent = 1;
D
Daniel Veillard 已提交
492

493
    if (virDomainSaveConfig(cfg->configDir, driver->caps,
494
                            vm->newDef ? vm->newDef : vm->def) < 0) {
495
        virDomainObjListRemove(driver->domains, vm);
496
        goto cleanup;
D
Daniel Veillard 已提交
497 498
    }

499
    event = virDomainEventLifecycleNewFromObj(vm,
500
                                     VIR_DOMAIN_EVENT_DEFINED,
501
                                     !oldDef ?
502 503 504
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                     VIR_DOMAIN_EVENT_DEFINED_UPDATED);

505
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
D
Daniel Veillard 已提交
506

507
 cleanup:
508
    virDomainDefFree(def);
509
    virDomainDefFree(oldDef);
510
    virDomainObjEndAPI(&vm);
511
    if (event)
512
        virObjectEventStateQueue(driver->domainEventState, event);
513
    virObjectUnref(caps);
514
    virObjectUnref(cfg);
D
Daniel Veillard 已提交
515 516 517
    return dom;
}

518 519 520 521 522 523
static virDomainPtr
lxcDomainDefineXML(virConnectPtr conn, const char *xml)
{
    return lxcDomainDefineXMLFlags(conn, xml, 0);
}

524 525
static int lxcDomainUndefineFlags(virDomainPtr dom,
                                  unsigned int flags)
D
Daniel Veillard 已提交
526
{
527
    virLXCDriverPtr driver = dom->conn->privateData;
528
    virDomainObjPtr vm;
529
    virObjectEventPtr event = NULL;
530
    int ret = -1;
531
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
D
Daniel Veillard 已提交
532

533 534
    virCheckFlags(0, -1);

M
Michal Privoznik 已提交
535
    if (!(vm = lxcDomObjFromDomain(dom)))
536
        goto cleanup;
D
Daniel Veillard 已提交
537

538 539 540
    if (virDomainUndefineFlagsEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

541
    if (!vm->persistent) {
542 543
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Cannot undefine transient domain"));
544
        goto cleanup;
545
    }
D
Daniel Veillard 已提交
546

547 548
    if (virDomainDeleteConfig(cfg->configDir,
                              cfg->autostartDir,
549 550
                              vm) < 0)
        goto cleanup;
D
Daniel Veillard 已提交
551

552
    event = virDomainEventLifecycleNewFromObj(vm,
553 554 555
                                     VIR_DOMAIN_EVENT_UNDEFINED,
                                     VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

556 557 558
    if (virDomainObjIsActive(vm)) {
        vm->persistent = 0;
    } else {
559
        virDomainObjListRemove(driver->domains, vm);
560 561
    }

562
    ret = 0;
D
Daniel Veillard 已提交
563

564
 cleanup:
565
    virDomainObjEndAPI(&vm);
566
    if (event)
567
        virObjectEventStateQueue(driver->domainEventState, event);
568
    virObjectUnref(cfg);
569
    return ret;
D
Daniel Veillard 已提交
570 571
}

572 573 574 575 576
static int lxcDomainUndefine(virDomainPtr dom)
{
    return lxcDomainUndefineFlags(dom, 0);
}

D
Daniel Veillard 已提交
577 578 579
static int lxcDomainGetInfo(virDomainPtr dom,
                            virDomainInfoPtr info)
{
580
    virDomainObjPtr vm;
581
    int ret = -1;
582
    virLXCDomainObjPrivatePtr priv;
D
Daniel Veillard 已提交
583

M
Michal Privoznik 已提交
584
    if (!(vm = lxcDomObjFromDomain(dom)))
585
        goto cleanup;
D
Daniel Veillard 已提交
586

587 588
    priv = vm->privateData;

589 590 591
    if (virDomainGetInfoEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

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

594
    if (!virDomainObjIsActive(vm)) {
D
Daniel Veillard 已提交
595
        info->cpuTime = 0;
596
        info->memory = vm->def->mem.cur_balloon;
D
Daniel Veillard 已提交
597
    } else {
598
        if (virCgroupGetCpuacctUsage(priv->cgroup, &(info->cpuTime)) < 0) {
599 600
            virReportError(VIR_ERR_OPERATION_FAILED,
                           "%s", _("Cannot read cputime for domain"));
R
Ryota Ozaki 已提交
601 602
            goto cleanup;
        }
603 604 605 606 607
        if (virCgroupGetMemoryUsage(priv->cgroup, &(info->memory)) < 0) {
            /* Don't fail if we can't read memory usage due to a lack of
             * kernel support */
            if (virLastErrorIsSystemErrno(ENOENT)) {
                virResetLastError();
608
                info->memory = 0;
609
            } else {
610
                goto cleanup;
611
            }
612
        }
D
Daniel Veillard 已提交
613 614
    }

615
    info->maxMem = virDomainDefGetMemoryTotal(vm->def);
616
    info->nrVirtCpu = virDomainDefGetVcpus(vm->def);
617
    ret = 0;
D
Daniel Veillard 已提交
618

619
 cleanup:
620
    virDomainObjEndAPI(&vm);
621
    return ret;
D
Daniel Veillard 已提交
622 623
}

624 625 626 627 628 629 630 631 632 633 634
static int
lxcDomainGetState(virDomainPtr dom,
                  int *state,
                  int *reason,
                  unsigned int flags)
{
    virDomainObjPtr vm;
    int ret = -1;

    virCheckFlags(0, -1);

M
Michal Privoznik 已提交
635
    if (!(vm = lxcDomObjFromDomain(dom)))
636 637
        goto cleanup;

638 639 640
    if (virDomainGetStateEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

J
Jiri Denemark 已提交
641
    *state = virDomainObjGetState(vm, reason);
642 643
    ret = 0;

644
 cleanup:
645
    virDomainObjEndAPI(&vm);
646 647 648
    return ret;
}

649
static char *lxcDomainGetOSType(virDomainPtr dom)
D
Daniel Veillard 已提交
650
{
651 652
    virDomainObjPtr vm;
    char *ret = NULL;
653

M
Michal Privoznik 已提交
654
    if (!(vm = lxcDomObjFromDomain(dom)))
655
        goto cleanup;
656

657 658 659
    if (virDomainGetOSTypeEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

660
    if (VIR_STRDUP(ret, virDomainOSTypeToString(vm->def->os.type)) < 0)
661
        goto cleanup;
662

663
 cleanup:
664
    virDomainObjEndAPI(&vm);
665
    return ret;
D
Daniel Veillard 已提交
666 667
}

R
Ryota Ozaki 已提交
668
/* Returns max memory in kb, 0 if error */
669 670 671
static unsigned long long
lxcDomainGetMaxMemory(virDomainPtr dom)
{
R
Ryota Ozaki 已提交
672
    virDomainObjPtr vm;
673
    unsigned long long ret = 0;
R
Ryota Ozaki 已提交
674

M
Michal Privoznik 已提交
675
    if (!(vm = lxcDomObjFromDomain(dom)))
R
Ryota Ozaki 已提交
676 677
        goto cleanup;

678 679 680
    if (virDomainGetMaxMemoryEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

681
    ret = virDomainDefGetMemoryTotal(vm->def);
R
Ryota Ozaki 已提交
682

683
 cleanup:
684
    virDomainObjEndAPI(&vm);
R
Ryota Ozaki 已提交
685 686 687
    return ret;
}

688 689
static int lxcDomainSetMemoryFlags(virDomainPtr dom, unsigned long newmem,
                                   unsigned int flags)
690
{
R
Ryota Ozaki 已提交
691
    virDomainObjPtr vm;
692
    virDomainDefPtr def = NULL;
693
    virDomainDefPtr persistentDef = NULL;
R
Ryota Ozaki 已提交
694
    int ret = -1;
695
    virLXCDomainObjPrivatePtr priv;
696 697 698 699
    virLXCDriverPtr driver = dom->conn->privateData;
    virLXCDriverConfigPtr cfg = NULL;

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
700 701
                  VIR_DOMAIN_AFFECT_CONFIG |
                  VIR_DOMAIN_MEM_MAXIMUM, -1);
R
Ryota Ozaki 已提交
702

M
Michal Privoznik 已提交
703
    if (!(vm = lxcDomObjFromDomain(dom)))
R
Ryota Ozaki 已提交
704
        goto cleanup;
M
Michal Privoznik 已提交
705

706 707
    cfg = virLXCDriverGetConfig(driver);

708
    priv = vm->privateData;
R
Ryota Ozaki 已提交
709

710
    if (virDomainSetMemoryFlagsEnsureACL(dom->conn, vm->def, flags) < 0)
711 712
        goto cleanup;

713
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
714 715
        goto cleanup;

716
    if (virDomainObjGetDefs(vm, flags, &def, &persistentDef) < 0)
717
        goto endjob;
718

719
    if (flags & VIR_DOMAIN_MEM_MAXIMUM) {
720
        if (def) {
721 722 723
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Cannot resize the max memory "
                             "on an active domain"));
724
            goto endjob;
725
        }
726

727
        if (persistentDef) {
728
            virDomainDefSetMemoryTotal(persistentDef, newmem);
729 730
            if (persistentDef->mem.cur_balloon > newmem)
                persistentDef->mem.cur_balloon = newmem;
731 732
            if (virDomainSaveConfig(cfg->configDir, driver->caps,
                                    persistentDef) < 0)
733
                goto endjob;
734 735 736
        }
    } else {
        unsigned long oldmax = 0;
R
Ryota Ozaki 已提交
737

738
        if (def)
739
            oldmax = virDomainDefGetMemoryTotal(def);
740
        if (persistentDef) {
741 742
            if (!oldmax || oldmax > virDomainDefGetMemoryTotal(persistentDef))
                oldmax = virDomainDefGetMemoryTotal(persistentDef);
743
        }
744

745 746 747
        if (newmem > oldmax) {
            virReportError(VIR_ERR_INVALID_ARG,
                           "%s", _("Cannot set memory higher than max memory"));
748
            goto endjob;
749 750
        }

751
        if (def) {
752 753 754
            if (virCgroupSetMemory(priv->cgroup, newmem) < 0) {
                virReportError(VIR_ERR_OPERATION_FAILED,
                               "%s", _("Failed to set memory for domain"));
755
                goto endjob;
756
            }
757

758
            def->mem.cur_balloon = newmem;
759
            if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
760
                goto endjob;
761 762
        }

763
        if (persistentDef) {
764
            persistentDef->mem.cur_balloon = newmem;
765 766
            if (virDomainSaveConfig(cfg->configDir, driver->caps,
                                    persistentDef) < 0)
767
                goto endjob;
768
        }
769 770
    }

R
Ryota Ozaki 已提交
771 772
    ret = 0;

773
 endjob:
774
    virLXCDomainObjEndJob(driver, vm);
775

776
 cleanup:
777
    virDomainObjEndAPI(&vm);
778
    virObjectUnref(cfg);
R
Ryota Ozaki 已提交
779 780 781
    return ret;
}

782 783 784 785 786
static int lxcDomainSetMemory(virDomainPtr dom, unsigned long newmem)
{
    return lxcDomainSetMemoryFlags(dom, newmem, VIR_DOMAIN_AFFECT_LIVE);
}

787 788 789 790 791
static int lxcDomainSetMaxMemory(virDomainPtr dom, unsigned long newmax)
{
    return lxcDomainSetMemoryFlags(dom, newmax, VIR_DOMAIN_MEM_MAXIMUM);
}

792 793 794 795 796
static int
lxcDomainSetMemoryParameters(virDomainPtr dom,
                             virTypedParameterPtr params,
                             int nparams,
                             unsigned int flags)
797
{
798
    virDomainDefPtr def = NULL;
J
Ján Tomko 已提交
799
    virDomainDefPtr persistentDef = NULL;
800
    virDomainObjPtr vm = NULL;
801 802 803 804 805 806 807 808 809 810
    virLXCDomainObjPrivatePtr priv = NULL;
    virLXCDriverConfigPtr cfg = NULL;
    virLXCDriverPtr driver = dom->conn->privateData;
    unsigned long long hard_limit;
    unsigned long long soft_limit;
    unsigned long long swap_hard_limit;
    bool set_hard_limit = false;
    bool set_soft_limit = false;
    bool set_swap_hard_limit = false;
    int rc;
811 812
    int ret = -1;

813 814 815
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

816 817 818 819 820 821 822 823
    if (virTypedParamsValidate(params, nparams,
                               VIR_DOMAIN_MEMORY_HARD_LIMIT,
                               VIR_TYPED_PARAM_ULLONG,
                               VIR_DOMAIN_MEMORY_SOFT_LIMIT,
                               VIR_TYPED_PARAM_ULLONG,
                               VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT,
                               VIR_TYPED_PARAM_ULLONG,
                               NULL) < 0)
824
        return -1;
E
Eric Blake 已提交
825

M
Michal Privoznik 已提交
826
    if (!(vm = lxcDomObjFromDomain(dom)))
827
        goto cleanup;
M
Michal Privoznik 已提交
828

829
    priv = vm->privateData;
830
    cfg = virLXCDriverGetConfig(driver);
831

832
    if (virDomainSetMemoryParametersEnsureACL(dom->conn, vm->def, flags) < 0)
833 834
        goto cleanup;

835 836 837
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

838 839
    /* QEMU and LXC implementation are identical */
    if (virDomainObjGetDefs(vm, flags, &def, &persistentDef) < 0)
840 841
        goto endjob;

842
    if (def &&
843
        !virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_MEMORY)) {
844 845
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("cgroup memory controller is not mounted"));
846
        goto endjob;
847 848
    }

849 850 851 852 853
#define VIR_GET_LIMIT_PARAMETER(PARAM, VALUE) \
    if ((rc = virTypedParamsGetULLong(params, nparams, PARAM, &VALUE)) < 0) \
        goto endjob; \
 \
    if (rc == 1) \
854 855 856 857 858 859 860 861
        set_ ## VALUE = true;

    VIR_GET_LIMIT_PARAMETER(VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT, swap_hard_limit)
    VIR_GET_LIMIT_PARAMETER(VIR_DOMAIN_MEMORY_HARD_LIMIT, hard_limit)
    VIR_GET_LIMIT_PARAMETER(VIR_DOMAIN_MEMORY_SOFT_LIMIT, soft_limit)

#undef VIR_GET_LIMIT_PARAMETER

862
    /* Swap hard limit must be greater than hard limit. */
863 864 865 866 867 868 869 870 871 872
    if (set_swap_hard_limit || set_hard_limit) {
        unsigned long long mem_limit = vm->def->mem.hard_limit;
        unsigned long long swap_limit = vm->def->mem.swap_hard_limit;

        if (set_swap_hard_limit)
            swap_limit = swap_hard_limit;

        if (set_hard_limit)
            mem_limit = hard_limit;

873
        if (mem_limit > swap_limit) {
874 875 876
            virReportError(VIR_ERR_INVALID_ARG, "%s",
                           _("memory hard_limit tunable value must be lower "
                             "than or equal to swap_hard_limit"));
877
            goto endjob;
878 879 880
        }
    }

881 882 883 884 885 886 887 888 889 890
#define VIR_SET_MEM_PARAMETER(FUNC, VALUE) \
    if (set_ ## VALUE) { \
        if (def) { \
            if ((rc = FUNC(priv->cgroup, VALUE)) < 0) \
                goto endjob; \
            def->mem.VALUE = VALUE; \
        } \
 \
        if (persistentDef) \
            persistentDef->mem.VALUE = VALUE; \
891 892 893
    }

    /* Soft limit doesn't clash with the others */
894
    VIR_SET_MEM_PARAMETER(virCgroupSetMemorySoftLimit, soft_limit);
895 896

    /* set hard limit before swap hard limit if decreasing it */
897 898
    if (def && def->mem.hard_limit > hard_limit) {
        VIR_SET_MEM_PARAMETER(virCgroupSetMemoryHardLimit, hard_limit);
899 900 901 902
        /* inhibit changing the limit a second time */
        set_hard_limit = false;
    }

903
    VIR_SET_MEM_PARAMETER(virCgroupSetMemSwapHardLimit, swap_hard_limit);
904 905

    /* otherwise increase it after swap hard limit */
906 907 908
    VIR_SET_MEM_PARAMETER(virCgroupSetMemoryHardLimit, hard_limit);

#undef VIR_SET_MEM_PARAMETER
909

910 911 912
    if (def &&
        virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
        goto endjob;
913

914
    if (persistentDef &&
J
Ján Tomko 已提交
915
        virDomainSaveConfig(cfg->configDir, driver->caps, persistentDef) < 0)
916
        goto endjob;
917
    /* QEMU and LXC implementations are identical */
918 919

    ret = 0;
920 921

 endjob:
922
    virLXCDomainObjEndJob(driver, vm);
923

924
 cleanup:
925
    virDomainObjEndAPI(&vm);
926
    virObjectUnref(cfg);
927 928 929
    return ret;
}

930 931 932 933 934
static int
lxcDomainGetMemoryParameters(virDomainPtr dom,
                             virTypedParameterPtr params,
                             int *nparams,
                             unsigned int flags)
935
{
J
Ján Tomko 已提交
936
    virDomainDefPtr persistentDef = NULL;
937
    virDomainDefPtr def = NULL;
938
    virDomainObjPtr vm = NULL;
939
    virLXCDomainObjPrivatePtr priv = NULL;
940
    unsigned long long val;
941
    int ret = -1;
942
    size_t i;
943

944
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
945 946 947 948 949
                  VIR_DOMAIN_AFFECT_CONFIG |
                  VIR_TYPED_PARAM_STRING_OKAY, -1);

    /* We don't return strings, and thus trivially support this flag.  */
    flags &= ~VIR_TYPED_PARAM_STRING_OKAY;
E
Eric Blake 已提交
950

M
Michal Privoznik 已提交
951
    if (!(vm = lxcDomObjFromDomain(dom)))
952
        goto cleanup;
M
Michal Privoznik 已提交
953

954
    priv = vm->privateData;
955

956
    if (virDomainGetMemoryParametersEnsureACL(dom->conn, vm->def) < 0)
957 958
        goto cleanup;

959 960 961 962
    if (virDomainObjGetDefs(vm, flags, &def, &persistentDef) < 0)
        goto cleanup;

    if (def &&
963 964 965
        !virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_MEMORY)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("cgroup memory controller is not mounted"));
966
        goto cleanup;
967
    }
968

969 970 971 972 973 974 975
    if ((*nparams) == 0) {
        /* Current number of memory parameters supported by cgroups */
        *nparams = LXC_NB_MEM_PARAM;
        ret = 0;
        goto cleanup;
    }

976
    for (i = 0; i < LXC_NB_MEM_PARAM && i < *nparams; i++) {
977
        virTypedParameterPtr param = &params[i];
978 979
        val = 0;

980
        switch (i) {
981
        case 0: /* fill memory hard limit here */
982
            if (persistentDef) {
J
Ján Tomko 已提交
983
                val = persistentDef->mem.hard_limit;
984
            } else if (virCgroupGetMemoryHardLimit(priv->cgroup, &val) < 0) {
985
                goto cleanup;
986
            }
987 988
            if (virTypedParameterAssign(param, VIR_DOMAIN_MEMORY_HARD_LIMIT,
                                        VIR_TYPED_PARAM_ULLONG, val) < 0)
989
                goto cleanup;
990 991
            break;
        case 1: /* fill memory soft limit here */
992
            if (persistentDef) {
J
Ján Tomko 已提交
993
                val = persistentDef->mem.soft_limit;
994
            } else if (virCgroupGetMemorySoftLimit(priv->cgroup, &val) < 0) {
995
                goto cleanup;
996
            }
997 998
            if (virTypedParameterAssign(param, VIR_DOMAIN_MEMORY_SOFT_LIMIT,
                                        VIR_TYPED_PARAM_ULLONG, val) < 0)
999
                goto cleanup;
1000 1001
            break;
        case 2: /* fill swap hard limit here */
1002
            if (persistentDef) {
J
Ján Tomko 已提交
1003
                val = persistentDef->mem.swap_hard_limit;
1004
            } else if (virCgroupGetMemSwapHardLimit(priv->cgroup, &val) < 0) {
1005
                goto cleanup;
1006
            }
1007 1008 1009
            if (virTypedParameterAssign(param,
                                        VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT,
                                        VIR_TYPED_PARAM_ULLONG, val) < 0)
1010
                goto cleanup;
1011 1012 1013 1014
            break;
        }
    }

1015 1016
    if (*nparams > LXC_NB_MEM_PARAM)
        *nparams = LXC_NB_MEM_PARAM;
1017 1018
    ret = 0;

1019
 cleanup:
1020
    virDomainObjEndAPI(&vm);
1021 1022 1023
    return ret;
}

1024
static char *lxcDomainGetXMLDesc(virDomainPtr dom,
1025
                                 unsigned int flags)
D
Daniel Veillard 已提交
1026
{
1027
    virLXCDriverPtr driver = dom->conn->privateData;
1028 1029
    virDomainObjPtr vm;
    char *ret = NULL;
D
Daniel Veillard 已提交
1030

1031 1032
    /* Flags checked by virDomainDefFormat */

M
Michal Privoznik 已提交
1033
    if (!(vm = lxcDomObjFromDomain(dom)))
1034
        goto cleanup;
D
Daniel Veillard 已提交
1035

1036 1037 1038
    if (virDomainGetXMLDescEnsureACL(dom->conn, vm->def, flags) < 0)
        goto cleanup;

1039
    ret = virDomainDefFormat((flags & VIR_DOMAIN_XML_INACTIVE) &&
1040
                             vm->newDef ? vm->newDef : vm->def,
1041
                             driver->caps,
1042
                             virDomainDefFormatConvertXMLFlags(flags));
1043

1044
 cleanup:
1045
    virDomainObjEndAPI(&vm);
1046
    return ret;
D
Daniel Veillard 已提交
1047 1048
}

1049 1050 1051 1052 1053 1054 1055
static char *lxcConnectDomainXMLFromNative(virConnectPtr conn,
                                           const char *nativeFormat,
                                           const char *nativeConfig,
                                           unsigned int flags)
{
    char *xml = NULL;
    virDomainDefPtr def = NULL;
1056 1057
    virLXCDriverPtr driver = conn->privateData;
    virCapsPtr caps = virLXCDriverGetCapabilities(driver, false);
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069

    virCheckFlags(0, NULL);

    if (virConnectDomainXMLFromNativeEnsureACL(conn) < 0)
        goto cleanup;

    if (STRNEQ(nativeFormat, LXC_CONFIG_FORMAT)) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unsupported config type %s"), nativeFormat);
        goto cleanup;
    }

1070
    if (!(def = lxcParseConfigString(nativeConfig, caps, driver->xmlopt)))
1071 1072
        goto cleanup;

1073
    xml = virDomainDefFormat(def, caps, 0);
1074

1075
 cleanup:
1076
    virObjectUnref(caps);
1077 1078 1079 1080
    virDomainDefFree(def);
    return xml;
}

1081
/**
1082
 * lxcDomainCreateWithFiles:
1083
 * @dom: domain to start
1084
 * @flags: Must be 0 for now
1085 1086 1087 1088 1089
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
1090 1091 1092 1093
static int lxcDomainCreateWithFiles(virDomainPtr dom,
                                    unsigned int nfiles,
                                    int *files,
                                    unsigned int flags)
1094
{
1095
    virLXCDriverPtr driver = dom->conn->privateData;
1096
    virDomainObjPtr vm;
1097
    virObjectEventPtr event = NULL;
1098
    int ret = -1;
1099
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
1100

1101
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, -1);
1102

1103 1104
    virNWFilterReadLockFilterUpdates();

M
Michal Privoznik 已提交
1105
    if (!(vm = lxcDomObjFromDomain(dom)))
1106 1107
        goto cleanup;

1108
    if (virDomainCreateWithFilesEnsureACL(dom->conn, vm->def) < 0)
1109 1110
        goto cleanup;

1111
    if ((vm->def->nets != NULL) && !(cfg->have_netns)) {
1112 1113
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("System lacks NETNS support"));
1114 1115 1116
        goto cleanup;
    }

1117 1118 1119
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

1120
    if (virDomainObjIsActive(vm)) {
1121 1122
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is already running"));
1123
        goto endjob;
1124 1125
    }

1126
    ret = virLXCProcessStart(dom->conn, driver, vm,
1127
                             nfiles, files,
1128 1129
                             (flags & VIR_DOMAIN_START_AUTODESTROY),
                             VIR_DOMAIN_RUNNING_BOOTED);
1130

1131
    if (ret == 0) {
1132
        event = virDomainEventLifecycleNewFromObj(vm,
1133 1134
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_BOOTED);
1135 1136 1137 1138
        virDomainAuditStart(vm, "booted", true);
    } else {
        virDomainAuditStart(vm, "booted", false);
    }
1139

1140
 endjob:
1141
    virLXCDomainObjEndJob(driver, vm);
1142

1143
 cleanup:
1144
    virDomainObjEndAPI(&vm);
1145
    if (event)
1146
        virObjectEventStateQueue(driver->domainEventState, event);
1147
    virObjectUnref(cfg);
1148
    virNWFilterUnlockFilterUpdates();
1149
    return ret;
1150 1151
}

1152
/**
1153
 * lxcDomainCreate:
1154 1155 1156 1157 1158 1159
 * @dom: domain to start
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
1160
static int lxcDomainCreate(virDomainPtr dom)
1161
{
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
    return lxcDomainCreateWithFiles(dom, 0, NULL, 0);
}

/**
 * lxcDomainCreateWithFlags:
 * @dom: domain to start
 *
 * Looks up domain and starts it.
 *
 * Returns 0 on success or -1 in case of error
 */
static int lxcDomainCreateWithFlags(virDomainPtr dom,
                                    unsigned int flags)
{
    return lxcDomainCreateWithFiles(dom, 0, NULL, flags);
1177 1178
}

1179
/**
1180
 * lxcDomainCreateXMLWithFiles:
1181 1182
 * @conn: pointer to connection
 * @xml: XML definition of domain
1183 1184 1185
 * @nfiles: number of file descriptors passed
 * @files: list of file descriptors passed
 * @flags: bitwise-OR of supported virDomainCreateFlags
1186 1187 1188
 *
 * Creates a domain based on xml and starts it
 *
1189
 * Returns a new domain object or NULL in case of failure.
1190 1191
 */
static virDomainPtr
1192 1193 1194 1195
lxcDomainCreateXMLWithFiles(virConnectPtr conn,
                            const char *xml,
                            unsigned int nfiles,
                            int *files,
1196 1197
                            unsigned int flags)
{
1198
    virLXCDriverPtr driver = conn->privateData;
1199
    virDomainObjPtr vm = NULL;
1200
    virDomainDefPtr def = NULL;
1201
    virDomainPtr dom = NULL;
1202
    virObjectEventPtr event = NULL;
1203
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
1204
    virCapsPtr caps = NULL;
1205 1206 1207 1208 1209
    unsigned int parse_flags = VIR_DOMAIN_DEF_PARSE_INACTIVE;

    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY |
                  VIR_DOMAIN_START_VALIDATE, NULL);

1210

1211
    if (flags & VIR_DOMAIN_START_VALIDATE)
1212
        parse_flags |= VIR_DOMAIN_DEF_PARSE_VALIDATE_SCHEMA;
1213

1214 1215
    virNWFilterReadLockFilterUpdates();

1216 1217 1218 1219
    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
        goto cleanup;

    if (!(def = virDomainDefParseString(xml, caps, driver->xmlopt,
1220
                                        NULL, parse_flags)))
1221
        goto cleanup;
1222

1223
    if (virDomainCreateXMLWithFilesEnsureACL(conn, def) < 0)
1224 1225
        goto cleanup;

1226 1227 1228
    if (virSecurityManagerVerify(driver->securityManager, def) < 0)
        goto cleanup;

1229
    if ((def->nets != NULL) && !(cfg->have_netns)) {
1230 1231
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       "%s", _("System lacks NETNS support"));
1232
        goto cleanup;
1233 1234
    }

1235

1236
    if (!(vm = virDomainObjListAdd(driver->domains, def,
1237
                                   driver->xmlopt,
1238
                                   VIR_DOMAIN_OBJ_LIST_ADD_LIVE |
1239 1240
                                   VIR_DOMAIN_OBJ_LIST_ADD_CHECK_LIVE,
                                   NULL)))
1241
        goto cleanup;
1242
    virObjectRef(vm);
1243
    def = NULL;
1244

1245 1246 1247 1248 1249 1250 1251 1252
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0) {
        if (!vm->persistent) {
            virDomainObjListRemove(driver->domains, vm);
            vm = NULL;
        }
        goto cleanup;
    }

1253
    if (virLXCProcessStart(conn, driver, vm,
1254
                           nfiles, files,
1255 1256
                           (flags & VIR_DOMAIN_START_AUTODESTROY),
                           VIR_DOMAIN_RUNNING_BOOTED) < 0) {
1257
        virDomainAuditStart(vm, "booted", false);
1258
        virLXCDomainObjEndJob(driver, vm);
1259 1260 1261 1262
        if (!vm->persistent) {
            virDomainObjListRemove(driver->domains, vm);
            vm = NULL;
        }
1263
        goto cleanup;
1264 1265
    }

1266
    event = virDomainEventLifecycleNewFromObj(vm,
1267 1268
                                     VIR_DOMAIN_EVENT_STARTED,
                                     VIR_DOMAIN_EVENT_STARTED_BOOTED);
1269
    virDomainAuditStart(vm, "booted", true);
1270

1271
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
1272

1273
    virLXCDomainObjEndJob(driver, vm);
1274

1275
 cleanup:
1276
    virDomainDefFree(def);
1277
    virDomainObjEndAPI(&vm);
1278
    if (event)
1279
        virObjectEventStateQueue(driver->domainEventState, event);
1280
    virObjectUnref(caps);
1281
    virObjectUnref(cfg);
1282
    virNWFilterUnlockFilterUpdates();
1283 1284 1285
    return dom;
}

1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
/**
 * lxcDomainCreateXML:
 * @conn: pointer to connection
 * @xml: XML definition of domain
 * @flags: bitwise-OR of supported virDomainCreateFlags
 *
 * Creates a domain based on xml and starts it
 *
 * Returns a new domain object or NULL in case of failure.
 */
1296 1297 1298
static virDomainPtr
lxcDomainCreateXML(virConnectPtr conn,
                   const char *xml,
1299 1300
                   unsigned int flags)
{
1301 1302 1303 1304
    return lxcDomainCreateXMLWithFiles(conn, xml, 0, NULL,  flags);
}


1305 1306
static int lxcDomainGetSecurityLabel(virDomainPtr dom, virSecurityLabelPtr seclabel)
{
1307
    virLXCDriverPtr driver = dom->conn->privateData;
1308 1309 1310 1311 1312
    virDomainObjPtr vm;
    int ret = -1;

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

M
Michal Privoznik 已提交
1313
    if (!(vm = lxcDomObjFromDomain(dom)))
1314 1315
        goto cleanup;

1316 1317 1318
    if (virDomainGetSecurityLabelEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

1319
    if (!virDomainVirtTypeToString(vm->def->virtType)) {
1320 1321 1322
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown virt type in domain definition '%d'"),
                       vm->def->virtType);
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
        goto cleanup;
    }

    /*
     * Theoretically, the pid can be replaced during this operation and
     * return the label of a different process.  If atomicity is needed,
     * further validation will be required.
     *
     * Comment from Dan Berrange:
     *
     *   Well the PID as stored in the virDomainObjPtr can't be changed
     *   because you've got a locked object.  The OS level PID could have
     *   exited, though and in extreme circumstances have cycled through all
     *   PIDs back to ours. We could sanity check that our PID still exists
     *   after reading the label, by checking that our FD connecting to the
     *   LXC monitor hasn't seen SIGHUP/ERR on poll().
     */
    if (virDomainObjIsActive(vm)) {
1341 1342 1343 1344 1345 1346 1347 1348
        virLXCDomainObjPrivatePtr priv = vm->privateData;

        if (!priv->initpid) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("Init pid is not yet available"));
            goto cleanup;
        }

1349
        if (virSecurityManagerGetProcessLabel(driver->securityManager,
1350 1351
                                              vm->def, priv->initpid,
                                              seclabel) < 0)
1352 1353 1354 1355 1356
            goto cleanup;
    }

    ret = 0;

1357
 cleanup:
1358
    virDomainObjEndAPI(&vm);
1359 1360 1361 1362 1363 1364
    return ret;
}

static int lxcNodeGetSecurityModel(virConnectPtr conn,
                                   virSecurityModelPtr secmodel)
{
1365
    virLXCDriverPtr driver = conn->privateData;
1366
    virCapsPtr caps = NULL;
1367 1368 1369 1370
    int ret = 0;

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

1371 1372 1373
    if (virNodeGetSecurityModelEnsureACL(conn) < 0)
        goto cleanup;

1374 1375 1376
    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
        goto cleanup;

1377
    /* we treat no driver as success, but simply return no data in *secmodel */
1378 1379
    if (caps->host.nsecModels == 0
        || caps->host.secModels[0].model == NULL)
1380 1381
        goto cleanup;

1382
    if (!virStrcpy(secmodel->model, caps->host.secModels[0].model,
1383
                   VIR_SECURITY_MODEL_BUFLEN)) {
1384 1385 1386
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("security model string exceeds max %d bytes"),
                       VIR_SECURITY_MODEL_BUFLEN - 1);
1387 1388 1389 1390
        ret = -1;
        goto cleanup;
    }

1391
    if (!virStrcpy(secmodel->doi, caps->host.secModels[0].doi,
1392
                   VIR_SECURITY_DOI_BUFLEN)) {
1393 1394 1395
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("security DOI string exceeds max %d bytes"),
                       VIR_SECURITY_DOI_BUFLEN-1);
1396 1397 1398 1399
        ret = -1;
        goto cleanup;
    }

1400
 cleanup:
1401
    virObjectUnref(caps);
1402 1403 1404 1405
    return ret;
}


1406
static int
1407 1408 1409 1410
lxcConnectDomainEventRegister(virConnectPtr conn,
                              virConnectDomainEventCallback callback,
                              void *opaque,
                              virFreeCallback freecb)
1411
{
1412
    virLXCDriverPtr driver = conn->privateData;
1413

1414 1415 1416
    if (virConnectDomainEventRegisterEnsureACL(conn) < 0)
        return -1;

1417 1418 1419 1420
    if (virDomainEventStateRegister(conn,
                                    driver->domainEventState,
                                    callback, opaque, freecb) < 0)
        return -1;
1421

1422
    return 0;
1423 1424
}

1425

1426
static int
1427 1428
lxcConnectDomainEventDeregister(virConnectPtr conn,
                                virConnectDomainEventCallback callback)
1429
{
1430
    virLXCDriverPtr driver = conn->privateData;
1431

1432 1433 1434
    if (virConnectDomainEventDeregisterEnsureACL(conn) < 0)
        return -1;

1435 1436 1437 1438
    if (virDomainEventStateDeregister(conn,
                                      driver->domainEventState,
                                      callback) < 0)
        return -1;
1439

1440
    return 0;
1441 1442
}

1443 1444

static int
1445 1446 1447 1448 1449 1450
lxcConnectDomainEventRegisterAny(virConnectPtr conn,
                                 virDomainPtr dom,
                                 int eventID,
                                 virConnectDomainEventGenericCallback callback,
                                 void *opaque,
                                 virFreeCallback freecb)
1451
{
1452
    virLXCDriverPtr driver = conn->privateData;
1453 1454
    int ret;

1455 1456 1457
    if (virConnectDomainEventRegisterAnyEnsureACL(conn) < 0)
        return -1;

1458 1459 1460 1461
    if (virDomainEventStateRegisterID(conn,
                                      driver->domainEventState,
                                      dom, eventID,
                                      callback, opaque, freecb, &ret) < 0)
1462
        ret = -1;
1463 1464 1465 1466 1467 1468

    return ret;
}


static int
1469 1470
lxcConnectDomainEventDeregisterAny(virConnectPtr conn,
                                   int callbackID)
1471
{
1472
    virLXCDriverPtr driver = conn->privateData;
1473

1474 1475 1476
    if (virConnectDomainEventDeregisterAnyEnsureACL(conn) < 0)
        return -1;

1477 1478
    if (virObjectEventStateDeregisterID(conn,
                                        driver->domainEventState,
1479
                                        callbackID, true) < 0)
1480
        return -1;
1481

1482
    return 0;
1483 1484 1485
}


1486
/**
1487
 * lxcDomainDestroyFlags:
1488
 * @dom: pointer to domain to destroy
1489
 * @flags: extra flags; not used yet.
1490 1491 1492 1493 1494
 *
 * Sends SIGKILL to container root process to terminate the container
 *
 * Returns 0 on success or -1 in case of error
 */
1495 1496 1497
static int
lxcDomainDestroyFlags(virDomainPtr dom,
                      unsigned int flags)
1498
{
1499
    virLXCDriverPtr driver = dom->conn->privateData;
1500
    virDomainObjPtr vm;
1501
    virObjectEventPtr event = NULL;
1502
    int ret = -1;
1503
    virLXCDomainObjPrivatePtr priv;
1504

1505 1506
    virCheckFlags(0, -1);

M
Michal Privoznik 已提交
1507
    if (!(vm = lxcDomObjFromDomain(dom)))
1508
        goto cleanup;
1509

1510 1511 1512
    if (virDomainDestroyFlagsEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

1513 1514 1515
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

1516
    if (!virDomainObjIsActive(vm)) {
1517 1518
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
1519
        goto endjob;
1520 1521
    }

1522
    priv = vm->privateData;
1523
    ret = virLXCProcessStop(driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
1524
    event = virDomainEventLifecycleNewFromObj(vm,
1525 1526
                                     VIR_DOMAIN_EVENT_STOPPED,
                                     VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
1527
    priv->doneStopEvent = true;
1528
    virDomainAuditStop(vm, "destroyed");
1529

1530
 endjob:
1531
    virLXCDomainObjEndJob(driver, vm);
1532 1533
    if (!vm->persistent)
        virDomainObjListRemove(driver->domains, vm);
1534

1535
 cleanup:
1536
    virDomainObjEndAPI(&vm);
1537
    if (event)
1538
        virObjectEventStateQueue(driver->domainEventState, event);
1539
    return ret;
1540
}
1541

1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555
/**
 * lxcDomainDestroy:
 * @dom: pointer to domain to destroy
 *
 * Sends SIGKILL to container root process to terminate the container
 *
 * Returns 0 on success or -1 in case of error
 */
static int
lxcDomainDestroy(virDomainPtr dom)
{
    return lxcDomainDestroyFlags(dom, 0);
}

1556 1557 1558 1559 1560
static int lxcCheckNetNsSupport(void)
{
    const char *argv[] = {"ip", "link", "set", "lo", "netns", "-1", NULL};
    int ip_rc;

1561
    if (virRun(argv, &ip_rc) < 0 || ip_rc == 255)
1562
        return 0;
1563

1564
    if (virProcessNamespaceAvailable(VIR_PROCESS_NAMESPACE_NET) < 0)
1565
        return 0;
1566

1567
    return 1;
1568 1569
}

1570

1571 1572
static virSecurityManagerPtr
lxcSecurityInit(virLXCDriverConfigPtr cfg)
1573
{
1574 1575
    unsigned int flags = VIR_SECURITY_MANAGER_PRIVILEGED;

1576
    VIR_INFO("lxcSecurityInit %s", cfg->securityDriverName);
1577 1578 1579 1580 1581 1582

    if (cfg->securityDefaultConfined)
        flags |= VIR_SECURITY_MANAGER_DEFAULT_CONFINED;
    if (cfg->securityRequireConfined)
        flags |= VIR_SECURITY_MANAGER_REQUIRE_CONFINED;

1583
    virSecurityManagerPtr mgr = virSecurityManagerNew(cfg->securityDriverName,
1584
                                                      LXC_DRIVER_NAME, flags);
1585 1586 1587
    if (!mgr)
        goto error;

1588
    return mgr;
1589

1590
 error:
1591
    VIR_ERROR(_("Failed to initialize security drivers"));
1592
    virObjectUnref(mgr);
1593
    return NULL;
1594 1595 1596
}


1597 1598 1599
static int lxcStateInitialize(bool privileged,
                              virStateInhibitCallback callback ATTRIBUTE_UNUSED,
                              void *opaque ATTRIBUTE_UNUSED)
D
Daniel Veillard 已提交
1600
{
1601
    virCapsPtr caps = NULL;
1602
    const char *ld;
1603
    virLXCDriverConfigPtr cfg = NULL;
1604 1605 1606 1607 1608

    /* Valgrind gets very annoyed when we clone containers, so
     * disable LXC when under valgrind
     * XXX remove this when valgrind is fixed
     */
1609
    ld = virGetEnvBlockSUID("LD_PRELOAD");
1610
    if (ld && strstr(ld, "vgpreload")) {
1611
        VIR_INFO("Running under valgrind, disabling driver");
1612 1613
        return 0;
    }
1614

1615
    /* Check that the user is root, silently disable if not */
1616
    if (!privileged) {
1617
        VIR_INFO("Not running privileged, disabling driver");
1618 1619 1620 1621
        return 0;
    }

    /* Check that this is a container enabled kernel */
1622 1623 1624 1625
    if (virProcessNamespaceAvailable(VIR_PROCESS_NAMESPACE_MNT |
                                     VIR_PROCESS_NAMESPACE_PID |
                                     VIR_PROCESS_NAMESPACE_UTS |
                                     VIR_PROCESS_NAMESPACE_IPC) < 0) {
1626
        VIR_INFO("LXC support not available in this kernel, disabling driver");
1627
        return 0;
1628 1629
    }

1630
    if (VIR_ALLOC(lxc_driver) < 0)
1631
        return -1;
1632 1633 1634 1635
    if (virMutexInit(&lxc_driver->lock) < 0) {
        VIR_FREE(lxc_driver);
        return -1;
    }
D
Daniel Veillard 已提交
1636

1637
    if (!(lxc_driver->domains = virDomainObjListNew()))
1638 1639
        goto cleanup;

1640
    lxc_driver->domainEventState = virObjectEventStateNew();
1641
    if (!lxc_driver->domainEventState)
1642 1643
        goto cleanup;

1644 1645
    lxc_driver->hostsysinfo = virSysinfoRead();

1646 1647 1648 1649 1650
    if (!(lxc_driver->config = cfg = virLXCDriverConfigNew()))
        goto cleanup;

    cfg->log_libvirtd = 0; /* by default log to container logfile */
    cfg->have_netns = lxcCheckNetNsSupport();
D
Daniel Veillard 已提交
1651 1652

    /* Call function to load lxc driver configuration information */
1653
    if (virLXCLoadDriverConfig(cfg, SYSCONFDIR "/libvirt/lxc.conf") < 0)
1654
        goto cleanup;
D
Daniel Veillard 已提交
1655

1656
    if (!(lxc_driver->securityManager = lxcSecurityInit(cfg)))
1657 1658
        goto cleanup;

1659
    if (!(lxc_driver->hostdevMgr = virHostdevManagerGetDefault()))
G
Guido Günther 已提交
1660 1661
        goto cleanup;

1662
    if (!(caps = virLXCDriverGetCapabilities(lxc_driver, true)))
1663
        goto cleanup;
D
Daniel Veillard 已提交
1664

1665
    if (!(lxc_driver->xmlopt = lxcDomainXMLConfInit()))
1666
        goto cleanup;
1667

1668
    if (!(lxc_driver->closeCallbacks = virCloseCallbacksNew()))
1669 1670
        goto cleanup;

1671 1672 1673 1674 1675 1676 1677
    if (virFileMakePath(cfg->stateDir) < 0) {
        virReportSystemError(errno,
                             _("Failed to mkdir %s"),
                             cfg->stateDir);
        goto cleanup;
    }

O
Osier Yang 已提交
1678
    /* Get all the running persistent or transient configs first */
1679
    if (virDomainObjListLoadAllConfigs(lxc_driver->domains,
1680
                                       cfg->stateDir,
1681
                                       NULL, true,
1682
                                       caps,
1683
                                       lxc_driver->xmlopt,
1684
                                       NULL, NULL) < 0)
O
Osier Yang 已提交
1685 1686
        goto cleanup;

1687
    virLXCProcessReconnectAll(lxc_driver, lxc_driver->domains);
O
Osier Yang 已提交
1688 1689

    /* Then inactive persistent configs */
1690
    if (virDomainObjListLoadAllConfigs(lxc_driver->domains,
1691
                                       cfg->configDir,
1692
                                       cfg->autostartDir, false,
1693
                                       caps,
1694
                                       lxc_driver->xmlopt,
1695
                                       NULL, NULL) < 0)
1696
        goto cleanup;
1697

1698
    virNWFilterRegisterCallbackDriver(&lxcCallbackDriver);
1699
    virObjectUnref(caps);
D
Daniel Veillard 已提交
1700 1701
    return 0;

1702
 cleanup:
1703
    virObjectUnref(caps);
1704
    lxcStateCleanup();
1705
    return -1;
D
Daniel Veillard 已提交
1706 1707
}

1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
/**
 * lxcStateAutoStart:
 *
 * Function to autostart the LXC daemons
 */
static void lxcStateAutoStart(void)
{
    if (!lxc_driver)
        return;

    virLXCProcessAutostartAll(lxc_driver);
}

1721 1722
static void lxcNotifyLoadDomain(virDomainObjPtr vm, int newVM, void *opaque)
{
1723
    virLXCDriverPtr driver = opaque;
1724 1725

    if (newVM) {
1726
        virObjectEventPtr event =
1727
            virDomainEventLifecycleNewFromObj(vm,
1728 1729 1730
                                     VIR_DOMAIN_EVENT_DEFINED,
                                     VIR_DOMAIN_EVENT_DEFINED_ADDED);
        if (event)
1731
            virObjectEventStateQueue(driver->domainEventState, event);
1732 1733 1734 1735
    }
}

/**
1736
 * lxcStateReload:
1737 1738 1739 1740 1741
 *
 * Function to restart the LXC driver, it will recheck the configuration
 * files and perform autostart
 */
static int
1742 1743
lxcStateReload(void)
{
1744
    virLXCDriverConfigPtr cfg = NULL;
1745
    virCapsPtr caps = NULL;
1746

1747 1748 1749
    if (!lxc_driver)
        return 0;

1750
    if (!(caps = virLXCDriverGetCapabilities(lxc_driver, false)))
1751 1752
        return -1;

1753 1754
    cfg = virLXCDriverGetConfig(lxc_driver);

1755
    virDomainObjListLoadAllConfigs(lxc_driver->domains,
1756
                                   cfg->configDir,
1757
                                   cfg->autostartDir, false,
1758
                                   caps,
1759
                                   lxc_driver->xmlopt,
1760
                                   lxcNotifyLoadDomain, lxc_driver);
1761
    virObjectUnref(caps);
1762
    virObjectUnref(cfg);
1763 1764 1765
    return 0;
}

1766
static int lxcStateCleanup(void)
D
Daniel Veillard 已提交
1767
{
1768
    if (lxc_driver == NULL)
1769
        return -1;
1770

1771
    virNWFilterUnRegisterCallbackDriver(&lxcCallbackDriver);
1772
    virObjectUnref(lxc_driver->domains);
1773
    virObjectUnref(lxc_driver->domainEventState);
1774

1775
    virObjectUnref(lxc_driver->closeCallbacks);
1776

1777 1778
    virSysinfoDefFree(lxc_driver->hostsysinfo);

1779
    virObjectUnref(lxc_driver->hostdevMgr);
1780
    virObjectUnref(lxc_driver->caps);
1781
    virObjectUnref(lxc_driver->securityManager);
1782
    virObjectUnref(lxc_driver->xmlopt);
1783
    virObjectUnref(lxc_driver->config);
1784
    virMutexDestroy(&lxc_driver->lock);
1785
    VIR_FREE(lxc_driver);
1786 1787 1788

    return 0;
}
D
Daniel Veillard 已提交
1789

1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
static int
lxcConnectSupportsFeature(virConnectPtr conn, int feature)
{
    if (virConnectSupportsFeatureEnsureACL(conn) < 0)
        return -1;

    switch (feature) {
        case VIR_DRV_FEATURE_TYPED_PARAM_STRING:
            return 1;
        default:
            return 0;
    }
}

D
Daniel Veillard 已提交
1804

1805
static int lxcConnectGetVersion(virConnectPtr conn, unsigned long *version)
D
Dan Smith 已提交
1806 1807 1808
{
    struct utsname ver;

1809
    uname(&ver);
D
Dan Smith 已提交
1810

1811 1812 1813
    if (virConnectGetVersionEnsureACL(conn) < 0)
        return -1;

1814
    if (virParseVersionString(ver.release, version, true) < 0) {
1815
        virReportError(VIR_ERR_INTERNAL_ERROR, _("Unknown release: %s"), ver.release);
D
Dan Smith 已提交
1816 1817 1818 1819 1820
        return -1;
    }

    return 0;
}
1821

1822

1823
static char *lxcConnectGetHostname(virConnectPtr conn)
1824
{
1825 1826 1827
    if (virConnectGetHostnameEnsureACL(conn) < 0)
        return NULL;

1828 1829 1830 1831
    return virGetHostname();
}


1832 1833
static char *lxcDomainGetSchedulerType(virDomainPtr dom,
                                       int *nparams)
1834
{
1835
    char *ret = NULL;
1836 1837
    virDomainObjPtr vm;
    virLXCDomainObjPrivatePtr priv;
1838

M
Michal Privoznik 已提交
1839
    if (!(vm = lxcDomObjFromDomain(dom)))
1840
        goto cleanup;
M
Michal Privoznik 已提交
1841

1842 1843
    priv = vm->privateData;

1844 1845 1846
    if (virDomainGetSchedulerTypeEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

1847 1848 1849 1850 1851 1852 1853 1854
    /* Domain not running, thus no cgroups - return defaults */
    if (!virDomainObjIsActive(vm)) {
        if (nparams)
            *nparams = 3;
        ignore_value(VIR_STRDUP(ret, "posix"));
        goto cleanup;
    }

1855
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPU)) {
1856 1857
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("cgroup CPU controller is not mounted"));
1858 1859
        goto cleanup;
    }
1860

1861
    if (nparams) {
1862
        if (virCgroupSupportsCpuBW(priv->cgroup))
1863
            *nparams = 3;
1864 1865
        else
            *nparams = 1;
1866
    }
1867

1868
    ignore_value(VIR_STRDUP(ret, "posix"));
1869

1870
 cleanup:
1871
    virDomainObjEndAPI(&vm);
1872 1873 1874 1875 1876 1877 1878 1879
    return ret;
}


static int
lxcGetVcpuBWLive(virCgroupPtr cgroup, unsigned long long *period,
                 long long *quota)
{
1880
    if (virCgroupGetCpuCfsPeriod(cgroup, period) < 0)
1881 1882
        return -1;

1883
    if (virCgroupGetCpuCfsQuota(cgroup, quota) < 0)
1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899
        return -1;

    return 0;
}


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

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

    if (period) {
        /* get old period, and we can rollback if set quota failed */
1900
        if (virCgroupGetCpuCfsPeriod(cgroup, &old_period) < 0)
1901 1902
            return -1;

1903
        if (virCgroupSetCpuCfsPeriod(cgroup, period) < 0)
1904 1905 1906 1907
            return -1;
    }

    if (quota) {
1908 1909
        if (virCgroupSetCpuCfsQuota(cgroup, quota) < 0)
            goto error;
1910 1911 1912 1913
    }

    return 0;

1914
 error:
1915
    if (period) {
1916 1917 1918 1919 1920 1921
        virErrorPtr saved = virSaveLastError();
        virCgroupSetCpuCfsPeriod(cgroup, old_period);
        if (saved) {
            virSetError(saved);
            virFreeError(saved);
        }
1922 1923 1924
    }

    return -1;
1925 1926
}

1927

1928
static int
1929 1930 1931 1932
lxcDomainSetSchedulerParametersFlags(virDomainPtr dom,
                                     virTypedParameterPtr params,
                                     int nparams,
                                     unsigned int flags)
1933
{
1934
    virLXCDriverPtr driver = dom->conn->privateData;
1935
    virCapsPtr caps = NULL;
1936
    size_t i;
1937
    virDomainObjPtr vm = NULL;
1938
    virDomainDefPtr def = NULL;
J
Ján Tomko 已提交
1939 1940
    virDomainDefPtr persistentDefCopy = NULL;
    virDomainDefPtr persistentDef = NULL;
1941
    int ret = -1;
1942
    int rc;
1943
    virLXCDomainObjPrivatePtr priv;
1944
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
1945

1946 1947
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
1948 1949 1950 1951 1952 1953 1954 1955
    if (virTypedParamsValidate(params, nparams,
                               VIR_DOMAIN_SCHEDULER_CPU_SHARES,
                               VIR_TYPED_PARAM_ULLONG,
                               VIR_DOMAIN_SCHEDULER_VCPU_PERIOD,
                               VIR_TYPED_PARAM_ULLONG,
                               VIR_DOMAIN_SCHEDULER_VCPU_QUOTA,
                               VIR_TYPED_PARAM_LLONG,
                               NULL) < 0)
1956
        return -1;
1957

M
Michal Privoznik 已提交
1958
    if (!(vm = lxcDomObjFromDomain(dom)))
1959
        goto cleanup;
M
Michal Privoznik 已提交
1960

1961
    priv = vm->privateData;
1962

1963 1964 1965
    if (virDomainSetSchedulerParametersFlagsEnsureACL(dom->conn, vm->def, flags) < 0)
        goto cleanup;

1966 1967 1968
    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
        goto cleanup;

1969 1970 1971
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

1972
    if (virDomainObjGetDefs(vm, flags, &def, &persistentDef) < 0)
1973
        goto endjob;
1974

1975
    if (persistentDef) {
1976
        /* Make a copy for updated domain. */
J
Ján Tomko 已提交
1977 1978
        persistentDefCopy = virDomainObjCopyPersistentDef(vm, caps, driver->xmlopt);
        if (!persistentDefCopy)
1979
            goto endjob;
1980 1981
    }

1982
    if (def) {
1983
        if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPU)) {
1984 1985
            virReportError(VIR_ERR_OPERATION_INVALID,
                           "%s", _("cgroup CPU controller is not mounted"));
1986
            goto endjob;
1987 1988
        }
    }
1989 1990

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

1993
        if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_CPU_SHARES)) {
1994
            if (def) {
1995
                unsigned long long val;
1996
                if (virCgroupSetCpuShares(priv->cgroup, params[i].value.ul) < 0)
1997
                    goto endjob;
1998

1999
                if (virCgroupGetCpuShares(priv->cgroup, &val) < 0)
2000
                    goto endjob;
2001

2002 2003
                def->cputune.shares = val;
                def->cputune.sharesSpecified = true;
2004 2005
            }

2006
            if (persistentDef) {
J
Ján Tomko 已提交
2007 2008
                persistentDefCopy->cputune.shares = params[i].value.ul;
                persistentDefCopy->cputune.sharesSpecified = true;
2009 2010
            }
        } else if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_VCPU_PERIOD)) {
2011
            if (def) {
2012
                rc = lxcSetVcpuBWLive(priv->cgroup, params[i].value.ul, 0);
2013
                if (rc != 0)
2014
                    goto endjob;
2015 2016

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

2020
            if (persistentDef)
J
Ján Tomko 已提交
2021
                persistentDefCopy->cputune.period = params[i].value.ul;
2022
        } else if (STREQ(param->field, VIR_DOMAIN_SCHEDULER_VCPU_QUOTA)) {
2023
            if (def) {
2024
                rc = lxcSetVcpuBWLive(priv->cgroup, 0, params[i].value.l);
2025
                if (rc != 0)
2026
                    goto endjob;
2027 2028

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

2032
            if (persistentDef)
J
Ján Tomko 已提交
2033
                persistentDefCopy->cputune.quota = params[i].value.l;
2034
        }
2035
    }
2036

2037
    if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
2038
        goto endjob;
2039

2040

2041
    if (persistentDef) {
J
Ján Tomko 已提交
2042
        rc = virDomainSaveConfig(cfg->configDir, driver->caps, persistentDefCopy);
2043
        if (rc < 0)
2044
            goto endjob;
2045

J
Ján Tomko 已提交
2046 2047
        virDomainObjAssignDef(vm, persistentDefCopy, false, NULL);
        persistentDefCopy = NULL;
2048
    }
2049

2050
    ret = 0;
2051

2052
 endjob:
2053
    virLXCDomainObjEndJob(driver, vm);
2054

2055
 cleanup:
J
Ján Tomko 已提交
2056
    virDomainDefFree(persistentDefCopy);
2057
    virDomainObjEndAPI(&vm);
2058
    virObjectUnref(caps);
2059
    virObjectUnref(cfg);
2060
    return ret;
2061 2062
}

2063
static int
2064 2065 2066
lxcDomainSetSchedulerParameters(virDomainPtr domain,
                                virTypedParameterPtr params,
                                int nparams)
2067
{
2068
    return lxcDomainSetSchedulerParametersFlags(domain, params, nparams, 0);
2069 2070 2071
}

static int
2072 2073 2074 2075
lxcDomainGetSchedulerParametersFlags(virDomainPtr dom,
                                     virTypedParameterPtr params,
                                     int *nparams,
                                     unsigned int flags)
2076
{
2077
    virDomainObjPtr vm = NULL;
2078
    virDomainDefPtr def;
E
Eric Blake 已提交
2079
    virDomainDefPtr persistentDef;
2080 2081 2082
    unsigned long long shares = 0;
    unsigned long long period = 0;
    long long quota = 0;
2083
    int ret = -1;
2084 2085 2086
    int rc;
    bool cpu_bw_status = false;
    int saved_nparams = 0;
2087
    virLXCDomainObjPrivatePtr priv;
2088

2089
    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
2090 2091 2092 2093 2094
                  VIR_DOMAIN_AFFECT_CONFIG |
                  VIR_TYPED_PARAM_STRING_OKAY, -1);

    /* We don't return strings, and thus trivially support this flag.  */
    flags &= ~VIR_TYPED_PARAM_STRING_OKAY;
2095

M
Michal Privoznik 已提交
2096
    if (!(vm = lxcDomObjFromDomain(dom)))
2097
        goto cleanup;
M
Michal Privoznik 已提交
2098

2099 2100
    priv = vm->privateData;

2101 2102 2103
    if (virDomainGetSchedulerParametersFlagsEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

2104 2105
    if (*nparams > 1)
        cpu_bw_status = virCgroupSupportsCpuBW(priv->cgroup);
2106

2107
    if (virDomainObjGetDefs(vm, flags, &def, &persistentDef) < 0)
E
Eric Blake 已提交
2108
        goto cleanup;
2109

2110
    if (persistentDef) {
E
Eric Blake 已提交
2111
        shares = persistentDef->cputune.shares;
2112
        if (*nparams > 1) {
E
Eric Blake 已提交
2113 2114
            period = persistentDef->cputune.period;
            quota = persistentDef->cputune.quota;
2115
            cpu_bw_status = true; /* Allow copy of data to params[] */
2116 2117 2118 2119
        }
        goto out;
    }

2120
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPU)) {
2121 2122
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("cgroup CPU controller is not mounted"));
2123
        goto cleanup;
2124 2125
    }

2126
    if (virCgroupGetCpuShares(priv->cgroup, &shares) < 0)
2127
        goto cleanup;
2128 2129

    if (*nparams > 1 && cpu_bw_status) {
2130
        rc = lxcGetVcpuBWLive(priv->cgroup, &period, &quota);
2131 2132 2133
        if (rc != 0)
            goto cleanup;
    }
2134
 out:
2135 2136
    if (virTypedParameterAssign(&params[0], VIR_DOMAIN_SCHEDULER_CPU_SHARES,
                                VIR_TYPED_PARAM_ULLONG, shares) < 0)
C
Chris Lalancette 已提交
2137
        goto cleanup;
2138 2139 2140 2141
    saved_nparams++;

    if (cpu_bw_status) {
        if (*nparams > saved_nparams) {
2142 2143 2144
            if (virTypedParameterAssign(&params[1],
                                        VIR_DOMAIN_SCHEDULER_VCPU_PERIOD,
                                        VIR_TYPED_PARAM_ULLONG, period) < 0)
2145 2146 2147 2148 2149
                goto cleanup;
            saved_nparams++;
        }

        if (*nparams > saved_nparams) {
2150 2151 2152
            if (virTypedParameterAssign(&params[2],
                                        VIR_DOMAIN_SCHEDULER_VCPU_QUOTA,
                                        VIR_TYPED_PARAM_LLONG, quota) < 0)
2153 2154 2155 2156 2157 2158 2159
                goto cleanup;
            saved_nparams++;
        }
    }

    *nparams = saved_nparams;

2160
    ret = 0;
2161

2162
 cleanup:
2163
    virDomainObjEndAPI(&vm);
2164
    return ret;
2165 2166
}

2167
static int
2168 2169 2170
lxcDomainGetSchedulerParameters(virDomainPtr domain,
                                virTypedParameterPtr params,
                                int *nparams)
2171
{
2172
    return lxcDomainGetSchedulerParametersFlags(domain, params, nparams, 0);
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
static int
lxcDomainParseBlkioDeviceStr(char *blkioDeviceStr, const char *type,
                             virBlkioDevicePtr *dev, size_t *size)
{
    char *temp;
    int ndevices = 0;
    int nsep = 0;
    size_t i;
    virBlkioDevicePtr result = NULL;

    *dev = NULL;
    *size = 0;

    if (STREQ(blkioDeviceStr, ""))
        return 0;

    temp = blkioDeviceStr;
    while (temp) {
        temp = strchr(temp, ',');
        if (temp) {
            temp++;
            nsep++;
        }
    }

    /* A valid string must have even number of fields, hence an odd
     * number of commas.  */
    if (!(nsep & 1))
2203
        goto parse_error;
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217

    ndevices = (nsep + 1) / 2;

    if (VIR_ALLOC_N(result, ndevices) < 0)
        return -1;

    i = 0;
    temp = blkioDeviceStr;
    while (temp) {
        char *p = temp;

        /* device path */
        p = strchr(p, ',');
        if (!p)
2218
            goto parse_error;
2219 2220 2221 2222 2223 2224 2225 2226

        if (VIR_STRNDUP(result[i].path, temp, p - temp) < 0)
            goto cleanup;

        /* value */
        temp = p + 1;

        if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WEIGHT)) {
2227
            if (virStrToLong_uip(temp, &p, 10, &result[i].weight) < 0)
2228
                goto number_error;
2229
        } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_READ_IOPS)) {
2230
            if (virStrToLong_uip(temp, &p, 10, &result[i].riops) < 0)
2231
                goto number_error;
2232
        } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WRITE_IOPS)) {
2233
            if (virStrToLong_uip(temp, &p, 10, &result[i].wiops) < 0)
2234
                goto number_error;
2235
        } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_READ_BPS)) {
2236
            if (virStrToLong_ullp(temp, &p, 10, &result[i].rbps) < 0)
2237
                goto number_error;
2238
        } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WRITE_BPS)) {
2239
            if (virStrToLong_ullp(temp, &p, 10, &result[i].wbps) < 0)
2240
                goto number_error;
2241
        } else {
2242 2243 2244
            virReportError(VIR_ERR_INVALID_ARG,
                           _("unknown parameter '%s'"), type);
            goto cleanup;
2245 2246 2247 2248 2249 2250 2251
        }

        i++;

        if (*p == '\0')
            break;
        else if (*p != ',')
2252
            goto parse_error;
2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
        temp = p + 1;
    }

    if (!i)
        VIR_FREE(result);

    *dev = result;
    *size = i;

    return 0;

2264
 parse_error:
2265 2266 2267
    virReportError(VIR_ERR_INVALID_ARG,
                   _("unable to parse blkio device '%s' '%s'"),
                   type, blkioDeviceStr);
2268 2269 2270 2271 2272 2273 2274
    goto cleanup;

 number_error:
    virReportError(VIR_ERR_INVALID_ARG,
                   _("invalid value '%s' for parameter '%s' of device '%s'"),
                   temp, type, result[i].path);

2275
 cleanup:
J
John Ferlan 已提交
2276 2277 2278 2279
    if (result) {
        virBlkioDeviceArrayClear(result, ndevices);
        VIR_FREE(result);
    }
2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301
    return -1;
}

static int
lxcDomainMergeBlkioDevice(virBlkioDevicePtr *dest_array,
                          size_t *dest_size,
                          virBlkioDevicePtr src_array,
                          size_t src_size,
                          const char *type)
{
    size_t i, j;
    virBlkioDevicePtr dest, src;

    for (i = 0; i < src_size; i++) {
        bool found = false;

        src = &src_array[i];
        for (j = 0; j < *dest_size; j++) {
            dest = &(*dest_array)[j];
            if (STREQ(src->path, dest->path)) {
                found = true;

2302
                if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WEIGHT)) {
2303
                    dest->weight = src->weight;
2304
                } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_READ_IOPS)) {
2305
                    dest->riops = src->riops;
2306
                } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WRITE_IOPS)) {
2307
                    dest->wiops = src->wiops;
2308
                } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_READ_BPS)) {
2309
                    dest->rbps = src->rbps;
2310
                } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WRITE_BPS)) {
2311
                    dest->wbps = src->wbps;
2312
                } else {
2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327
                    virReportError(VIR_ERR_INVALID_ARG, _("Unknown parameter %s"),
                                   type);
                    return -1;
                }

                break;
            }
        }
        if (!found) {
            if (!src->weight && !src->riops && !src->wiops && !src->rbps && !src->wbps)
                continue;
            if (VIR_EXPAND_N(*dest_array, *dest_size, 1) < 0)
                return -1;
            dest = &(*dest_array)[*dest_size - 1];

2328
            if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WEIGHT)) {
2329
                dest->weight = src->weight;
2330
            } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_READ_IOPS)) {
2331
                dest->riops = src->riops;
2332
            } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WRITE_IOPS)) {
2333
                dest->wiops = src->wiops;
2334
            } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_READ_BPS)) {
2335
                dest->rbps = src->rbps;
2336
            } else if (STREQ(type, VIR_DOMAIN_BLKIO_DEVICE_WRITE_BPS)) {
2337
                dest->wbps = src->wbps;
2338
            } else {
2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350
                *dest_size = *dest_size - 1;
                return -1;
            }

            dest->path = src->path;
            src->path = NULL;
        }
    }

    return 0;
}

2351

2352 2353 2354
static int
lxcDomainBlockStats(virDomainPtr dom,
                    const char *path,
2355
                    virDomainBlockStatsPtr stats)
2356
{
2357
    virLXCDriverPtr driver = dom->conn->privateData;
2358
    int ret = -1;
2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370
    virDomainObjPtr vm;
    virDomainDiskDefPtr disk = NULL;
    virLXCDomainObjPrivatePtr priv;

    if (!(vm = lxcDomObjFromDomain(dom)))
        return ret;

    priv = vm->privateData;

    if (virDomainBlockStatsEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

2371 2372 2373
   if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_QUERY) < 0)
        goto cleanup;

2374 2375 2376
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domain is not running"));
2377
        goto endjob;
2378 2379 2380 2381 2382
    }

    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_BLKIO)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("blkio cgroup isn't mounted"));
2383
        goto endjob;
2384 2385 2386 2387 2388 2389 2390 2391 2392
    }

    if (!*path) {
        /* empty path - return entire domain blkstats instead */
        ret = virCgroupGetBlkioIoServiced(priv->cgroup,
                                          &stats->rd_bytes,
                                          &stats->wr_bytes,
                                          &stats->rd_req,
                                          &stats->wr_req);
2393
        goto endjob;
2394 2395
    }

2396
    if (!(disk = virDomainDiskByName(vm->def, path, false))) {
2397 2398
        virReportError(VIR_ERR_INVALID_ARG,
                       _("invalid path: %s"), path);
2399
        goto endjob;
2400 2401 2402 2403 2404
    }

    if (!disk->info.alias) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("missing disk device alias name for %s"), disk->dst);
2405
        goto endjob;
2406 2407 2408 2409 2410 2411 2412 2413
    }

    ret = virCgroupGetBlkioIoDeviceServiced(priv->cgroup,
                                            disk->info.alias,
                                            &stats->rd_bytes,
                                            &stats->wr_bytes,
                                            &stats->rd_req,
                                            &stats->wr_req);
2414 2415

 endjob:
2416
    virLXCDomainObjEndJob(driver, vm);
2417

2418
 cleanup:
2419
    virDomainObjEndAPI(&vm);
2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430
    return ret;
}


static int
lxcDomainBlockStatsFlags(virDomainPtr dom,
                         const char * path,
                         virTypedParameterPtr params,
                         int * nparams,
                         unsigned int flags)
{
2431
    virLXCDriverPtr driver = dom->conn->privateData;
2432
    int tmp, ret = -1;
2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456
    virDomainObjPtr vm;
    virDomainDiskDefPtr disk = NULL;
    virLXCDomainObjPrivatePtr priv;
    long long rd_req, rd_bytes, wr_req, wr_bytes;
    virTypedParameterPtr param;

    virCheckFlags(VIR_TYPED_PARAM_STRING_OKAY, -1);

    /* We don't return strings, and thus trivially support this flag.  */
    flags &= ~VIR_TYPED_PARAM_STRING_OKAY;

    if (!params && !*nparams) {
        *nparams = LXC_NB_DOMAIN_BLOCK_STAT_PARAM;
        return 0;
    }

    if (!(vm = lxcDomObjFromDomain(dom)))
        return ret;

    priv = vm->privateData;

    if (virDomainBlockStatsFlagsEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

2457 2458 2459
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_QUERY) < 0)
        goto cleanup;

2460 2461 2462
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domain is not running"));
2463
        goto endjob;
2464 2465 2466 2467 2468
    }

    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_BLKIO)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("blkio cgroup isn't mounted"));
2469
        goto endjob;
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480
    }

    if (!*path) {
        /* empty path - return entire domain blkstats instead */
        if (virCgroupGetBlkioIoServiced(priv->cgroup,
                                        &rd_bytes,
                                        &wr_bytes,
                                        &rd_req,
                                        &wr_req) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("domain stats query failed"));
2481
            goto endjob;
2482 2483
        }
    } else {
2484
        if (!(disk = virDomainDiskByName(vm->def, path, false))) {
2485 2486
            virReportError(VIR_ERR_INVALID_ARG,
                           _("invalid path: %s"), path);
2487
            goto endjob;
2488 2489 2490 2491 2492
        }

        if (!disk->info.alias) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("missing disk device alias name for %s"), disk->dst);
2493
            goto endjob;
2494 2495 2496 2497 2498 2499 2500 2501 2502 2503
        }

        if (virCgroupGetBlkioIoDeviceServiced(priv->cgroup,
                                              disk->info.alias,
                                              &rd_bytes,
                                              &wr_bytes,
                                              &rd_req,
                                              &wr_req) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("domain stats query failed"));
2504
            goto endjob;
2505 2506 2507 2508 2509 2510 2511 2512 2513 2514
        }
    }

    tmp = 0;
    ret = -1;

    if (tmp < *nparams && wr_bytes != -1) {
        param = &params[tmp];
        if (virTypedParameterAssign(param, VIR_DOMAIN_BLOCK_STATS_WRITE_BYTES,
                                    VIR_TYPED_PARAM_LLONG, wr_bytes) < 0)
2515
            goto endjob;
2516 2517 2518 2519 2520 2521 2522
        tmp++;
    }

    if (tmp < *nparams && wr_req != -1) {
        param = &params[tmp];
        if (virTypedParameterAssign(param, VIR_DOMAIN_BLOCK_STATS_WRITE_REQ,
                                    VIR_TYPED_PARAM_LLONG, wr_req) < 0)
2523
            goto endjob;
2524 2525 2526 2527 2528 2529 2530
        tmp++;
    }

    if (tmp < *nparams && rd_bytes != -1) {
        param = &params[tmp];
        if (virTypedParameterAssign(param, VIR_DOMAIN_BLOCK_STATS_READ_BYTES,
                                    VIR_TYPED_PARAM_LLONG, rd_bytes) < 0)
2531
            goto endjob;
2532 2533 2534 2535 2536 2537 2538
        tmp++;
    }

    if (tmp < *nparams && rd_req != -1) {
        param = &params[tmp];
        if (virTypedParameterAssign(param, VIR_DOMAIN_BLOCK_STATS_READ_REQ,
                                    VIR_TYPED_PARAM_LLONG, rd_req) < 0)
2539
            goto endjob;
2540 2541 2542 2543 2544 2545
        tmp++;
    }

    ret = 0;
    *nparams = tmp;

2546
 endjob:
2547
    virLXCDomainObjEndJob(driver, vm);
2548

2549
 cleanup:
2550
    virDomainObjEndAPI(&vm);
2551 2552 2553 2554
    return ret;
}


2555 2556 2557 2558 2559
static int
lxcDomainSetBlkioParameters(virDomainPtr dom,
                            virTypedParameterPtr params,
                            int nparams,
                            unsigned int flags)
2560
{
2561
    virLXCDriverPtr driver = dom->conn->privateData;
2562
    size_t i;
2563
    virDomainObjPtr vm = NULL;
2564
    virDomainDefPtr def = NULL;
2565 2566
    virDomainDefPtr persistentDef = NULL;
    int ret = -1;
2567
    virLXCDriverConfigPtr cfg = NULL;
2568
    virLXCDomainObjPrivatePtr priv;
2569 2570 2571

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
2572 2573 2574
    if (virTypedParamsValidate(params, nparams,
                               VIR_DOMAIN_BLKIO_WEIGHT,
                               VIR_TYPED_PARAM_UINT,
2575 2576 2577 2578 2579 2580 2581 2582 2583 2584
                               VIR_DOMAIN_BLKIO_DEVICE_WEIGHT,
                               VIR_TYPED_PARAM_STRING,
                               VIR_DOMAIN_BLKIO_DEVICE_READ_IOPS,
                               VIR_TYPED_PARAM_STRING,
                               VIR_DOMAIN_BLKIO_DEVICE_WRITE_IOPS,
                               VIR_TYPED_PARAM_STRING,
                               VIR_DOMAIN_BLKIO_DEVICE_READ_BPS,
                               VIR_TYPED_PARAM_STRING,
                               VIR_DOMAIN_BLKIO_DEVICE_WRITE_BPS,
                               VIR_TYPED_PARAM_STRING,
2585
                               NULL) < 0)
2586 2587
        return -1;

M
Michal Privoznik 已提交
2588
    if (!(vm = lxcDomObjFromDomain(dom)))
2589
        return -1;
M
Michal Privoznik 已提交
2590

2591
    priv = vm->privateData;
2592
    cfg = virLXCDriverGetConfig(driver);
2593

2594 2595 2596
    if (virDomainSetBlkioParametersEnsureACL(dom->conn, vm->def, flags) < 0)
        goto cleanup;

2597 2598 2599
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

2600
    if (virDomainObjGetDefs(vm, flags, &def, &persistentDef) < 0)
2601
        goto endjob;
2602

2603
    if (def) {
2604
        if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_BLKIO)) {
2605 2606
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("blkio cgroup isn't mounted"));
2607
            goto endjob;
2608
        }
2609
    }
2610

2611
    ret = 0;
2612
    if (def) {
2613 2614 2615 2616
        for (i = 0; i < nparams; i++) {
            virTypedParameterPtr param = &params[i];

            if (STREQ(param->field, VIR_DOMAIN_BLKIO_WEIGHT)) {
2617
                if (virCgroupSetBlkioWeight(priv->cgroup, params[i].value.ui) < 0)
2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639
                    ret = -1;
            } else if (STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WEIGHT) ||
                       STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_READ_IOPS) ||
                       STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WRITE_IOPS) ||
                       STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_READ_BPS) ||
                       STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WRITE_BPS)) {
                size_t ndevices;
                virBlkioDevicePtr devices = NULL;
                size_t j;

                if (lxcDomainParseBlkioDeviceStr(params[i].value.s,
                                                 param->field,
                                                 &devices,
                                                 &ndevices) < 0) {
                    ret = -1;
                    continue;
                }

                if (STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WEIGHT)) {
                    for (j = 0; j < ndevices; j++) {
                        if (virCgroupSetBlkioDeviceWeight(priv->cgroup,
                                                          devices[j].path,
2640 2641 2642 2643
                                                          devices[j].weight) < 0 ||
                            virCgroupGetBlkioDeviceWeight(priv->cgroup,
                                                          devices[j].path,
                                                          &devices[j].weight) < 0) {
2644 2645 2646 2647 2648 2649 2650 2651
                            ret = -1;
                            break;
                        }
                    }
                } else if (STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_READ_IOPS)) {
                    for (j = 0; j < ndevices; j++) {
                        if (virCgroupSetBlkioDeviceReadIops(priv->cgroup,
                                                            devices[j].path,
2652 2653 2654 2655
                                                            devices[j].riops) < 0 ||
                            virCgroupGetBlkioDeviceReadIops(priv->cgroup,
                                                            devices[j].path,
                                                            &devices[j].riops) < 0) {
2656 2657 2658 2659 2660 2661 2662 2663
                            ret = -1;
                            break;
                        }
                    }
                } else if (STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WRITE_IOPS)) {
                    for (j = 0; j < ndevices; j++) {
                        if (virCgroupSetBlkioDeviceWriteIops(priv->cgroup,
                                                             devices[j].path,
2664 2665 2666 2667
                                                             devices[j].wiops) < 0 ||
                            virCgroupGetBlkioDeviceWriteIops(priv->cgroup,
                                                             devices[j].path,
                                                             &devices[j].wiops) < 0) {
2668 2669 2670 2671 2672 2673 2674 2675
                            ret = -1;
                            break;
                        }
                    }
                } else if (STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_READ_BPS)) {
                    for (j = 0; j < ndevices; j++) {
                        if (virCgroupSetBlkioDeviceReadBps(priv->cgroup,
                                                           devices[j].path,
2676 2677 2678 2679
                                                           devices[j].rbps) < 0 ||
                            virCgroupGetBlkioDeviceReadBps(priv->cgroup,
                                                           devices[j].path,
                                                           &devices[j].rbps) < 0) {
2680 2681 2682 2683
                            ret = -1;
                            break;
                        }
                    }
2684
                } else if (STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WRITE_BPS)) {
2685 2686 2687
                    for (j = 0; j < ndevices; j++) {
                        if (virCgroupSetBlkioDeviceWriteBps(priv->cgroup,
                                                            devices[j].path,
2688 2689 2690 2691
                                                            devices[j].wbps) < 0 ||
                            virCgroupGetBlkioDeviceWriteBps(priv->cgroup,
                                                            devices[j].path,
                                                            &devices[j].wbps) < 0) {
2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706
                            ret = -1;
                            break;
                        }
                    }
                } else {
                    virReportError(VIR_ERR_INVALID_ARG, _("Unknown blkio parameter %s"),
                                   param->field);
                    ret = -1;
                    virBlkioDeviceArrayClear(devices, ndevices);
                    VIR_FREE(devices);

                    continue;
                }

                if (j != ndevices ||
2707 2708
                    lxcDomainMergeBlkioDevice(&def->blkio.devices,
                                              &def->blkio.ndevices,
2709 2710 2711 2712
                                              devices, ndevices, param->field) < 0)
                    ret = -1;
                virBlkioDeviceArrayClear(devices, ndevices);
                VIR_FREE(devices);
2713 2714
            }
        }
E
Eric Blake 已提交
2715
    }
2716
    if (ret < 0)
2717
        goto endjob;
2718
    if (persistentDef) {
2719 2720 2721 2722 2723
        for (i = 0; i < nparams; i++) {
            virTypedParameterPtr param = &params[i];

            if (STREQ(param->field, VIR_DOMAIN_BLKIO_WEIGHT)) {
                persistentDef->blkio.weight = params[i].value.ui;
2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744
            } else if (STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WEIGHT) ||
                       STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_READ_IOPS) ||
                       STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WRITE_IOPS) ||
                       STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_READ_BPS) ||
                       STREQ(param->field, VIR_DOMAIN_BLKIO_DEVICE_WRITE_BPS)) {
                virBlkioDevicePtr devices = NULL;
                size_t ndevices;

                if (lxcDomainParseBlkioDeviceStr(params[i].value.s,
                                                 param->field,
                                                 &devices,
                                                 &ndevices) < 0) {
                    ret = -1;
                    continue;
                }
                if (lxcDomainMergeBlkioDevice(&persistentDef->blkio.devices,
                                              &persistentDef->blkio.ndevices,
                                              devices, ndevices, param->field) < 0)
                    ret = -1;
                virBlkioDeviceArrayClear(devices, ndevices);
                VIR_FREE(devices);
2745 2746 2747
            }
        }

2748
        if (virDomainSaveConfig(cfg->configDir, driver->caps, persistentDef) < 0)
2749
            ret = -1;
2750 2751
    }

2752
 endjob:
2753
    virLXCDomainObjEndJob(driver, vm);
2754

2755
 cleanup:
2756
    virDomainObjEndAPI(&vm);
2757
    virObjectUnref(cfg);
2758 2759 2760 2761
    return ret;
}


2762 2763
#define LXC_NB_BLKIO_PARAM  6

2764 2765 2766 2767 2768
static int
lxcDomainGetBlkioParameters(virDomainPtr dom,
                            virTypedParameterPtr params,
                            int *nparams,
                            unsigned int flags)
2769 2770
{
    virDomainObjPtr vm = NULL;
2771
    virDomainDefPtr def = NULL;
2772
    virDomainDefPtr persistentDef = NULL;
2773
    int maxparams = LXC_NB_BLKIO_PARAM;
2774 2775
    unsigned int val;
    int ret = -1;
2776
    virLXCDomainObjPrivatePtr priv;
2777 2778

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
2779 2780 2781 2782 2783 2784 2785
                  VIR_DOMAIN_AFFECT_CONFIG |
                  VIR_TYPED_PARAM_STRING_OKAY, -1);

    /* We blindly return a string, and let libvirt.c and
     * remote_driver.c do the filtering on behalf of older clients
     * that can't parse it.  */
    flags &= ~VIR_TYPED_PARAM_STRING_OKAY;
2786

M
Michal Privoznik 已提交
2787
    if (!(vm = lxcDomObjFromDomain(dom)))
2788
        return -1;
M
Michal Privoznik 已提交
2789

2790
    priv = vm->privateData;
2791

2792 2793 2794
    if (virDomainGetBlkioParametersEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

2795 2796 2797 2798 2799
    if ((*nparams) == 0) {
        /* Current number of blkio parameters supported by cgroups */
        *nparams = LXC_NB_BLKIO_PARAM;
        ret = 0;
        goto cleanup;
2800 2801
    } else if (*nparams < maxparams) {
        maxparams = *nparams;
2802 2803
    }

2804 2805
    *nparams = 0;

2806
    if (virDomainObjGetDefs(vm, flags, &def, &persistentDef) < 0)
E
Eric Blake 已提交
2807
        goto cleanup;
2808

2809
    if (def) {
2810
        if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_BLKIO)) {
2811 2812
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("blkio cgroup isn't mounted"));
2813 2814 2815
            goto cleanup;
        }

2816 2817 2818 2819 2820 2821 2822
        /* fill blkio weight here */
        if (virCgroupGetBlkioWeight(priv->cgroup, &val) < 0)
            goto cleanup;
        if (virTypedParameterAssign(&(params[(*nparams)++]),
                                    VIR_DOMAIN_BLKIO_WEIGHT,
                                    VIR_TYPED_PARAM_UINT, val) < 0)
            goto cleanup;
2823

2824 2825 2826
        if (virDomainGetBlkioParametersAssignFromDef(def, params, nparams,
                                                     maxparams) < 0)
            goto cleanup;
2827

2828
    } else if (persistentDef) {
2829 2830 2831 2832 2833 2834
        /* fill blkio weight here */
        if (virTypedParameterAssign(&(params[(*nparams)++]),
                                    VIR_DOMAIN_BLKIO_WEIGHT,
                                    VIR_TYPED_PARAM_UINT,
                                    persistentDef->blkio.weight) < 0)
            goto cleanup;
2835

2836 2837 2838
        if (virDomainGetBlkioParametersAssignFromDef(persistentDef, params,
                                                     nparams, maxparams) < 0)
            goto cleanup;
2839 2840 2841 2842
    }

    ret = 0;

2843
 cleanup:
2844
    virDomainObjEndAPI(&vm);
2845 2846 2847 2848
    return ret;
}


2849 2850
static int
lxcDomainInterfaceStats(virDomainPtr dom,
2851
                        const char *device,
2852
                        virDomainInterfaceStatsPtr stats)
2853 2854 2855
{
    virDomainObjPtr vm;
    int ret = -1;
2856
    virLXCDriverPtr driver = dom->conn->privateData;
M
Michal Privoznik 已提交
2857
    virDomainNetDefPtr net = NULL;
2858

M
Michal Privoznik 已提交
2859
    if (!(vm = lxcDomObjFromDomain(dom)))
2860 2861
        goto cleanup;

2862 2863 2864
    if (virDomainInterfaceStatsEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

2865 2866 2867
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_QUERY) < 0)
        goto cleanup;

2868
    if (!virDomainObjIsActive(vm)) {
2869 2870
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
2871
        goto endjob;
2872 2873
    }

2874
    if (!(net = virDomainNetFind(vm->def, device)))
M
Michal Privoznik 已提交
2875 2876
        goto endjob;

2877
    if (virNetDevTapInterfaceStats(net->ifname, stats,
2878
                                   !virDomainNetTypeSharesHostView(net)) < 0)
M
Michal Privoznik 已提交
2879 2880 2881
        goto endjob;

    ret = 0;
2882

2883
 endjob:
2884
    virLXCDomainObjEndJob(driver, vm);
2885

2886
 cleanup:
2887
    virDomainObjEndAPI(&vm);
2888 2889
    return ret;
}
2890

2891

2892
static int lxcDomainGetAutostart(virDomainPtr dom,
2893 2894
                                   int *autostart)
{
2895 2896 2897
    virDomainObjPtr vm;
    int ret = -1;

M
Michal Privoznik 已提交
2898
    if (!(vm = lxcDomObjFromDomain(dom)))
2899 2900
        goto cleanup;

2901 2902 2903
    if (virDomainGetAutostartEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

2904 2905 2906
    *autostart = vm->autostart;
    ret = 0;

2907
 cleanup:
2908
    virDomainObjEndAPI(&vm);
2909 2910 2911 2912
    return ret;
}

static int lxcDomainSetAutostart(virDomainPtr dom,
2913 2914
                                   int autostart)
{
2915
    virLXCDriverPtr driver = dom->conn->privateData;
2916 2917 2918
    virDomainObjPtr vm;
    char *configFile = NULL, *autostartLink = NULL;
    int ret = -1;
2919
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
2920

M
Michal Privoznik 已提交
2921
    if (!(vm = lxcDomObjFromDomain(dom)))
2922 2923
        goto cleanup;

2924 2925 2926
    if (virDomainSetAutostartEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

2927 2928 2929
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

2930
    if (!vm->persistent) {
2931 2932
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Cannot set autostart for transient domain"));
2933
        goto endjob;
2934 2935 2936 2937
    }

    autostart = (autostart != 0);

2938 2939
    if (vm->autostart == autostart) {
        ret = 0;
2940
        goto endjob;
2941
    }
2942

2943
    configFile = virDomainConfigFile(cfg->configDir,
2944 2945
                                     vm->def->name);
    if (configFile == NULL)
2946
        goto endjob;
2947
    autostartLink = virDomainConfigFile(cfg->autostartDir,
2948 2949
                                        vm->def->name);
    if (autostartLink == NULL)
2950
        goto endjob;
2951

2952
    if (autostart) {
2953
        if (virFileMakePath(cfg->autostartDir) < 0) {
2954
            virReportSystemError(errno,
2955
                                 _("Cannot create autostart directory %s"),
2956
                                 cfg->autostartDir);
2957
            goto endjob;
2958 2959
        }

2960
        if (symlink(configFile, autostartLink) < 0) {
2961
            virReportSystemError(errno,
2962 2963
                                 _("Failed to create symlink '%s to '%s'"),
                                 autostartLink, configFile);
2964
            goto endjob;
2965 2966 2967
        }
    } else {
        if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
2968
            virReportSystemError(errno,
2969 2970
                                 _("Failed to delete symlink '%s'"),
                                 autostartLink);
2971
            goto endjob;
2972
        }
2973
    }
2974 2975

    vm->autostart = autostart;
2976 2977
    ret = 0;

2978
 endjob:
2979 2980
    virLXCDomainObjEndJob(driver, vm);

2981
 cleanup:
2982 2983
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
2984
    virDomainObjEndAPI(&vm);
2985
    virObjectUnref(cfg);
2986 2987 2988
    return ret;
}

2989
static int lxcFreezeContainer(virDomainObjPtr vm)
R
Ryota Ozaki 已提交
2990 2991 2992 2993 2994 2995 2996
{
    int timeout = 1000; /* In milliseconds */
    int check_interval = 1; /* In milliseconds */
    int exp = 10;
    int waited_time = 0;
    int ret = -1;
    char *state = NULL;
2997
    virLXCDomainObjPrivatePtr priv = vm->privateData;
2998

R
Ryota Ozaki 已提交
2999 3000 3001 3002 3003 3004 3005 3006 3007
    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)
         */
3008
        r = virCgroupSetFreezerState(priv->cgroup, "FROZEN");
R
Ryota Ozaki 已提交
3009 3010 3011

        /*
         * Returning EBUSY explicitly indicates that the group is
3012
         * being frozen but incomplete, and other errors are true
R
Ryota Ozaki 已提交
3013 3014 3015 3016 3017 3018 3019
         * errors.
         */
        if (r < 0 && r != -EBUSY) {
            VIR_DEBUG("Writing freezer.state failed with errno: %d", r);
            goto error;
        }
        if (r == -EBUSY)
3020
            VIR_DEBUG("Writing freezer.state gets EBUSY");
R
Ryota Ozaki 已提交
3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034

        /*
         * 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);

3035
        r = virCgroupGetFreezerState(priv->cgroup, &state);
R
Ryota Ozaki 已提交
3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059

        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);
    }
3060
    VIR_DEBUG("lxcFreezeContainer timeout");
3061
 error:
R
Ryota Ozaki 已提交
3062 3063 3064 3065 3066
    /*
     * 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.
     */
3067
    virCgroupSetFreezerState(priv->cgroup, "THAWED");
R
Ryota Ozaki 已提交
3068 3069
    ret = -1;

3070
 cleanup:
R
Ryota Ozaki 已提交
3071 3072 3073 3074 3075 3076
    VIR_FREE(state);
    return ret;
}

static int lxcDomainSuspend(virDomainPtr dom)
{
3077
    virLXCDriverPtr driver = dom->conn->privateData;
R
Ryota Ozaki 已提交
3078
    virDomainObjPtr vm;
3079
    virObjectEventPtr event = NULL;
R
Ryota Ozaki 已提交
3080
    int ret = -1;
3081
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
3082

M
Michal Privoznik 已提交
3083
    if (!(vm = lxcDomObjFromDomain(dom)))
R
Ryota Ozaki 已提交
3084 3085
        goto cleanup;

3086 3087 3088
    if (virDomainSuspendEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

3089 3090 3091
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

D
Daniel P. Berrange 已提交
3092
    if (!virDomainObjIsActive(vm)) {
3093 3094
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
3095
        goto endjob;
R
Ryota Ozaki 已提交
3096 3097
    }

J
Jiri Denemark 已提交
3098
    if (virDomainObjGetState(vm, NULL) != VIR_DOMAIN_PAUSED) {
3099
        if (lxcFreezeContainer(vm) < 0) {
3100 3101
            virReportError(VIR_ERR_OPERATION_FAILED,
                           "%s", _("Suspend operation failed"));
3102
            goto endjob;
R
Ryota Ozaki 已提交
3103
        }
J
Jiri Denemark 已提交
3104
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
R
Ryota Ozaki 已提交
3105

3106
        event = virDomainEventLifecycleNewFromObj(vm,
R
Ryota Ozaki 已提交
3107 3108 3109 3110
                                         VIR_DOMAIN_EVENT_SUSPENDED,
                                         VIR_DOMAIN_EVENT_SUSPENDED_PAUSED);
    }

3111
    if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
3112
        goto endjob;
R
Ryota Ozaki 已提交
3113 3114
    ret = 0;

3115
 endjob:
3116 3117
    virLXCDomainObjEndJob(driver, vm);

3118
 cleanup:
R
Ryota Ozaki 已提交
3119
    if (event)
3120
        virObjectEventStateQueue(driver->domainEventState, event);
3121
    virDomainObjEndAPI(&vm);
3122
    virObjectUnref(cfg);
R
Ryota Ozaki 已提交
3123 3124 3125 3126 3127
    return ret;
}

static int lxcDomainResume(virDomainPtr dom)
{
3128
    virLXCDriverPtr driver = dom->conn->privateData;
R
Ryota Ozaki 已提交
3129
    virDomainObjPtr vm;
3130
    virObjectEventPtr event = NULL;
R
Ryota Ozaki 已提交
3131
    int ret = -1;
3132
    int state;
3133
    virLXCDomainObjPrivatePtr priv;
3134
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
3135

M
Michal Privoznik 已提交
3136
    if (!(vm = lxcDomObjFromDomain(dom)))
R
Ryota Ozaki 已提交
3137 3138
        goto cleanup;

3139 3140
    priv = vm->privateData;

3141 3142 3143
    if (virDomainResumeEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

3144 3145 3146
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

D
Daniel P. Berrange 已提交
3147
    if (!virDomainObjIsActive(vm)) {
3148 3149
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
3150
        goto endjob;
R
Ryota Ozaki 已提交
3151 3152
    }

3153 3154 3155 3156 3157 3158
    state = virDomainObjGetState(vm, NULL);
    if (state == VIR_DOMAIN_RUNNING) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domain is already running"));
        goto endjob;
    } else if (state == VIR_DOMAIN_PAUSED) {
3159
        if (virCgroupSetFreezerState(priv->cgroup, "THAWED") < 0) {
3160 3161
            virReportError(VIR_ERR_OPERATION_FAILED,
                           "%s", _("Resume operation failed"));
3162
            goto endjob;
R
Ryota Ozaki 已提交
3163
        }
J
Jiri Denemark 已提交
3164 3165
        virDomainObjSetState(vm, VIR_DOMAIN_RUNNING,
                             VIR_DOMAIN_RUNNING_UNPAUSED);
R
Ryota Ozaki 已提交
3166

3167
        event = virDomainEventLifecycleNewFromObj(vm,
R
Ryota Ozaki 已提交
3168 3169 3170 3171
                                         VIR_DOMAIN_EVENT_RESUMED,
                                         VIR_DOMAIN_EVENT_RESUMED_UNPAUSED);
    }

3172
    if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
3173
        goto endjob;
R
Ryota Ozaki 已提交
3174 3175
    ret = 0;

3176
 endjob:
3177 3178
    virLXCDomainObjEndJob(driver, vm);

3179
 cleanup:
R
Ryota Ozaki 已提交
3180
    if (event)
3181
        virObjectEventStateQueue(driver->domainEventState, event);
3182
    virDomainObjEndAPI(&vm);
3183
    virObjectUnref(cfg);
R
Ryota Ozaki 已提交
3184 3185 3186
    return ret;
}

3187 3188
static int
lxcDomainOpenConsole(virDomainPtr dom,
3189
                      const char *dev_name,
3190 3191 3192 3193 3194 3195
                      virStreamPtr st,
                      unsigned int flags)
{
    virDomainObjPtr vm = NULL;
    int ret = -1;
    virDomainChrDefPtr chr = NULL;
3196
    size_t i;
3197 3198 3199

    virCheckFlags(0, -1);

M
Michal Privoznik 已提交
3200
    if (!(vm = lxcDomObjFromDomain(dom)))
3201 3202
        goto cleanup;

3203 3204 3205
    if (virDomainOpenConsoleEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

3206
    if (!virDomainObjIsActive(vm)) {
3207 3208
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domain is not running"));
3209 3210 3211
        goto cleanup;
    }

3212
    if (dev_name) {
3213
        for (i = 0; i < vm->def->nconsoles; i++) {
3214 3215 3216 3217 3218 3219
            if (vm->def->consoles[i]->info.alias &&
                STREQ(vm->def->consoles[i]->info.alias, dev_name)) {
                chr = vm->def->consoles[i];
                break;
            }
        }
3220
    } else {
3221 3222
        if (vm->def->nconsoles)
            chr = vm->def->consoles[0];
3223 3224 3225 3226 3227
        else if (vm->def->nserials)
            chr = vm->def->serials[0];
    }

    if (!chr) {
3228 3229 3230
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot find console device '%s'"),
                       dev_name ? dev_name : _("default"));
3231 3232 3233
        goto cleanup;
    }

3234
    if (chr->source->type != VIR_DOMAIN_CHR_TYPE_PTY) {
3235
        virReportError(VIR_ERR_INTERNAL_ERROR,
3236 3237
                       _("character device %s is not using a PTY"),
                       dev_name ? dev_name : NULLSTR(chr->info.alias));
3238 3239 3240
        goto cleanup;
    }

3241
    if (virFDStreamOpenFile(st, chr->source->data.file.path,
E
Eric Blake 已提交
3242
                            0, 0, O_RDWR) < 0)
3243 3244 3245
        goto cleanup;

    ret = 0;
3246
 cleanup:
3247
    virDomainObjEndAPI(&vm);
3248 3249 3250
    return ret;
}

3251 3252 3253 3254 3255 3256 3257

static int
lxcDomainSendProcessSignal(virDomainPtr dom,
                           long long pid_value,
                           unsigned int signum,
                           unsigned int flags)
{
3258
    virLXCDriverPtr driver = dom->conn->privateData;
3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272
    virDomainObjPtr vm = NULL;
    virLXCDomainObjPrivatePtr priv;
    pid_t victim;
    int ret = -1;

    virCheckFlags(0, -1);

    if (signum >= VIR_DOMAIN_PROCESS_SIGNAL_LAST) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("signum value %d is out of range"),
                       signum);
        return -1;
    }

M
Michal Privoznik 已提交
3273
    if (!(vm = lxcDomObjFromDomain(dom)))
3274
        goto cleanup;
M
Michal Privoznik 已提交
3275

3276 3277
    priv = vm->privateData;

3278 3279 3280
    if (virDomainSendProcessSignalEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

3281 3282 3283
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

3284 3285 3286
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domain is not running"));
3287
        goto endjob;
3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299
    }

    /*
     * XXX if the kernel has /proc/$PID/ns/pid we can
     * switch into container namespace & that way be
     * able to kill any PID. Alternatively if there
     * is a way to find a mapping of guest<->host PIDs
     * we can kill that way.
     */
    if (pid_value != 1) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("Only the init process may be killed"));
3300
        goto endjob;
3301 3302 3303 3304 3305
    }

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Init pid is not yet available"));
3306
        goto endjob;
3307 3308 3309 3310 3311 3312 3313 3314 3315 3316
    }
    victim = priv->initpid;

    /* We're relying on fact libvirt header signal numbers
     * are taken from Linux, to avoid mapping
     */
    if (kill(victim, signum) < 0) {
        virReportSystemError(errno,
                             _("Unable to send %d signal to process %d"),
                             signum, victim);
3317
        goto endjob;
3318 3319 3320 3321
    }

    ret = 0;

3322
 endjob:
3323
    virLXCDomainObjEndJob(driver, vm);
3324

3325
 cleanup:
3326
    virDomainObjEndAPI(&vm);
3327 3328 3329 3330
    return ret;
}


3331
static int
3332 3333
lxcConnectListAllDomains(virConnectPtr conn,
                         virDomainPtr **domains,
3334 3335
                  unsigned int flags)
{
3336
    virLXCDriverPtr driver = conn->privateData;
3337 3338
    int ret = -1;

O
Osier Yang 已提交
3339
    virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ALL, -1);
3340

3341 3342 3343
    if (virConnectListAllDomainsEnsureACL(conn) < 0)
        return -1;

3344 3345
    ret = virDomainObjListExport(driver->domains, conn, domains,
                                 virConnectListAllDomainsCheckACL, flags);
3346 3347 3348
    return ret;
}

3349

3350 3351 3352 3353 3354 3355 3356 3357 3358
static int
lxcDomainInitctlCallback(pid_t pid ATTRIBUTE_UNUSED,
                         void *opaque)
{
    int *command = opaque;
    return virInitctlSetRunLevel(*command);
}


3359 3360 3361 3362
static int
lxcDomainShutdownFlags(virDomainPtr dom,
                       unsigned int flags)
{
3363
    virLXCDriverPtr driver = dom->conn->privateData;
3364 3365 3366
    virLXCDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
    int ret = -1;
3367
    int rc;
3368 3369 3370 3371

    virCheckFlags(VIR_DOMAIN_SHUTDOWN_INITCTL |
                  VIR_DOMAIN_SHUTDOWN_SIGNAL, -1);

M
Michal Privoznik 已提交
3372
    if (!(vm = lxcDomObjFromDomain(dom)))
3373 3374 3375 3376
        goto cleanup;

    priv = vm->privateData;

3377
    if (virDomainShutdownFlagsEnsureACL(dom->conn, vm->def, flags) < 0)
3378 3379
        goto cleanup;

3380 3381 3382
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

3383 3384 3385
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
3386
        goto endjob;
3387 3388 3389 3390 3391
    }

    if (priv->initpid == 0) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Init process ID is not yet known"));
3392
        goto endjob;
3393 3394
    }

3395 3396
    if (flags == 0 ||
        (flags & VIR_DOMAIN_SHUTDOWN_INITCTL)) {
3397 3398 3399 3400 3401
        int command = VIR_INITCTL_RUNLEVEL_POWEROFF;

        if ((rc = virProcessRunInMountNamespace(priv->initpid,
                                                lxcDomainInitctlCallback,
                                                &command)) < 0)
3402
            goto endjob;
3403 3404
        if (rc == 0 && flags != 0 &&
            ((flags & ~VIR_DOMAIN_SHUTDOWN_INITCTL) == 0)) {
3405 3406
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                           _("Container does not provide an initctl pipe"));
3407
            goto endjob;
3408
        }
3409 3410
    } else {
        rc = 0;
3411
    }
3412

3413 3414 3415
    if (rc == 0 &&
        (flags == 0 ||
         (flags & VIR_DOMAIN_SHUTDOWN_SIGNAL))) {
3416 3417
        if (kill(priv->initpid, SIGTERM) < 0 &&
            errno != ESRCH) {
3418 3419
            virReportSystemError(errno,
                                 _("Unable to send SIGTERM to init pid %llu"),
M
Michal Privoznik 已提交
3420
                                 (long long) priv->initpid);
3421
            goto endjob;
3422 3423 3424 3425 3426
        }
    }

    ret = 0;

3427
 endjob:
3428
    virLXCDomainObjEndJob(driver, vm);
3429

3430
 cleanup:
3431
    virDomainObjEndAPI(&vm);
3432 3433 3434 3435 3436 3437 3438 3439 3440
    return ret;
}

static int
lxcDomainShutdown(virDomainPtr dom)
{
    return lxcDomainShutdownFlags(dom, 0);
}

3441

3442 3443 3444 3445
static int
lxcDomainReboot(virDomainPtr dom,
                unsigned int flags)
{
3446
    virLXCDriverPtr driver = dom->conn->privateData;
3447 3448 3449 3450 3451 3452 3453 3454
    virLXCDomainObjPrivatePtr priv;
    virDomainObjPtr vm;
    int ret = -1;
    int rc;

    virCheckFlags(VIR_DOMAIN_REBOOT_INITCTL |
                  VIR_DOMAIN_REBOOT_SIGNAL, -1);

M
Michal Privoznik 已提交
3455
    if (!(vm = lxcDomObjFromDomain(dom)))
3456 3457 3458 3459
        goto cleanup;

    priv = vm->privateData;

3460
    if (virDomainRebootEnsureACL(dom->conn, vm->def, flags) < 0)
3461 3462
        goto cleanup;

3463 3464 3465
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

3466 3467 3468
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
3469
        goto endjob;
3470 3471 3472 3473 3474
    }

    if (priv->initpid == 0) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Init process ID is not yet known"));
3475
        goto endjob;
3476 3477 3478 3479
    }

    if (flags == 0 ||
        (flags & VIR_DOMAIN_REBOOT_INITCTL)) {
3480 3481 3482 3483 3484
        int command = VIR_INITCTL_RUNLEVEL_REBOOT;

        if ((rc = virProcessRunInMountNamespace(priv->initpid,
                                                lxcDomainInitctlCallback,
                                                &command)) < 0)
3485
            goto endjob;
3486 3487 3488 3489
        if (rc == 0 && flags != 0 &&
            ((flags & ~VIR_DOMAIN_SHUTDOWN_INITCTL) == 0)) {
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                           _("Container does not provide an initctl pipe"));
3490
            goto endjob;
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502
        }
    } else {
        rc = 0;
    }

    if (rc == 0 &&
        (flags == 0 ||
         (flags & VIR_DOMAIN_REBOOT_SIGNAL))) {
        if (kill(priv->initpid, SIGHUP) < 0 &&
            errno != ESRCH) {
            virReportSystemError(errno,
                                 _("Unable to send SIGTERM to init pid %llu"),
M
Michal Privoznik 已提交
3503
                                 (long long) priv->initpid);
3504
            goto endjob;
3505 3506 3507 3508 3509
        }
    }

    ret = 0;

3510
 endjob:
3511
    virLXCDomainObjEndJob(driver, vm);
3512

3513
 cleanup:
3514
    virDomainObjEndAPI(&vm);
3515 3516 3517 3518
    return ret;
}


3519
static int
3520
lxcDomainAttachDeviceConfig(virDomainDefPtr vmdef,
3521 3522 3523
                            virDomainDeviceDefPtr dev)
{
    int ret = -1;
3524
    virDomainDiskDefPtr disk;
3525
    virDomainNetDefPtr net;
3526
    virDomainHostdevDefPtr hostdev;
3527 3528

    switch (dev->type) {
3529 3530 3531 3532 3533 3534 3535
    case VIR_DOMAIN_DEVICE_DISK:
        disk = dev->data.disk;
        if (virDomainDiskIndexByName(vmdef, disk->dst, true) >= 0) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("target %s already exists."), disk->dst);
            return -1;
        }
3536
        if (virDomainDiskInsert(vmdef, disk))
3537 3538 3539 3540 3541 3542
            return -1;
        /* vmdef has the pointer. Generic codes for vmdef will do all jobs */
        dev->data.disk = NULL;
        ret = 0;
        break;

3543 3544
    case VIR_DOMAIN_DEVICE_NET:
        net = dev->data.net;
3545
        if (virDomainNetInsert(vmdef, net) < 0)
3546 3547 3548 3549 3550
            goto cleanup;
        dev->data.net = NULL;
        ret = 0;
        break;

3551 3552 3553 3554 3555 3556 3557
    case VIR_DOMAIN_DEVICE_HOSTDEV:
        hostdev = dev->data.hostdev;
        if (virDomainHostdevFind(vmdef, hostdev, NULL) >= 0) {
            virReportError(VIR_ERR_INVALID_ARG, "%s",
                           _("device is already in the domain configuration"));
            return -1;
        }
3558
        if (virDomainHostdevInsert(vmdef, hostdev) < 0)
3559 3560 3561 3562 3563
            return -1;
        dev->data.hostdev = NULL;
        ret = 0;
        break;

3564 3565 3566 3567 3568 3569
    default:
         virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                        _("persistent attach of device is not supported"));
         break;
    }

3570
 cleanup:
3571 3572 3573 3574 3575
    return ret;
}


static int
3576
lxcDomainUpdateDeviceConfig(virDomainDefPtr vmdef,
3577 3578 3579
                            virDomainDeviceDefPtr dev)
{
    int ret = -1;
3580 3581
    virDomainNetDefPtr net;
    int idx;
3582 3583

    switch (dev->type) {
3584 3585
    case VIR_DOMAIN_DEVICE_NET:
        net = dev->data.net;
3586
        if ((idx = virDomainNetFindIdx(vmdef, net)) < 0)
3587 3588 3589 3590 3591 3592 3593 3594 3595 3596
            goto cleanup;

        virDomainNetDefFree(vmdef->nets[idx]);

        vmdef->nets[idx] = net;
        dev->data.net = NULL;
        ret = 0;

        break;

3597 3598 3599 3600 3601 3602
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("persistent update of device is not supported"));
        break;
    }

3603
 cleanup:
3604 3605 3606 3607 3608
    return ret;
}


static int
3609
lxcDomainDetachDeviceConfig(virDomainDefPtr vmdef,
3610 3611 3612
                            virDomainDeviceDefPtr dev)
{
    int ret = -1;
3613
    virDomainDiskDefPtr disk, det_disk;
3614
    virDomainNetDefPtr net;
3615
    virDomainHostdevDefPtr hostdev, det_hostdev;
3616
    int idx;
3617 3618

    switch (dev->type) {
3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629
    case VIR_DOMAIN_DEVICE_DISK:
        disk = dev->data.disk;
        if (!(det_disk = virDomainDiskRemoveByName(vmdef, disk->dst))) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("no target device %s"), disk->dst);
            return -1;
        }
        virDomainDiskDefFree(det_disk);
        ret = 0;
        break;

3630 3631
    case VIR_DOMAIN_DEVICE_NET:
        net = dev->data.net;
3632
        if ((idx = virDomainNetFindIdx(vmdef, net)) < 0)
3633
            goto cleanup;
3634

3635 3636 3637 3638 3639
        /* this is guaranteed to succeed */
        virDomainNetDefFree(virDomainNetRemove(vmdef, idx));
        ret = 0;
        break;

3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652
    case VIR_DOMAIN_DEVICE_HOSTDEV: {
        hostdev = dev->data.hostdev;
        if ((idx = virDomainHostdevFind(vmdef, hostdev, &det_hostdev)) < 0) {
            virReportError(VIR_ERR_INVALID_ARG, "%s",
                           _("device not present in domain configuration"));
            return -1;
        }
        virDomainHostdevRemove(vmdef, idx);
        virDomainHostdevDefFree(det_hostdev);
        ret = 0;
        break;
    }

3653 3654 3655 3656 3657 3658
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("persistent detach of device is not supported"));
        break;
    }

3659
 cleanup:
3660 3661 3662 3663
    return ret;
}


3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711
struct lxcDomainAttachDeviceMknodData {
    virLXCDriverPtr driver;
    mode_t mode;
    dev_t dev;
    virDomainObjPtr vm;
    virDomainDeviceDefPtr def;
    char *file;
};

static int
lxcDomainAttachDeviceMknodHelper(pid_t pid ATTRIBUTE_UNUSED,
                                 void *opaque)
{
    struct lxcDomainAttachDeviceMknodData *data = opaque;
    int ret = -1;

    virSecurityManagerPostFork(data->driver->securityManager);

    if (virFileMakeParentPath(data->file) < 0) {
        virReportSystemError(errno,
                             _("Unable to create %s"), data->file);
        goto cleanup;
    }

    /* Yes, the device name we're creating may not
     * actually correspond to the major:minor number
     * we're using, but we've no other option at this
     * time. Just have to hope that containerized apps
     * don't get upset that the major:minor is different
     * to that normally implied by the device name
     */
    VIR_DEBUG("Creating dev %s (%d,%d)",
              data->file, major(data->dev), minor(data->dev));
    if (mknod(data->file, data->mode, data->dev) < 0) {
        virReportSystemError(errno,
                             _("Unable to create device %s"),
                             data->file);
        goto cleanup;
    }

    if (lxcContainerChown(data->vm->def, data->file) < 0)
        goto cleanup;

    /* Labelling normally operates on src, but we need
     * to actually label the dst here, so hack the config */
    switch (data->def->type) {
    case VIR_DOMAIN_DEVICE_DISK: {
        virDomainDiskDefPtr def = data->def->data.disk;
3712 3713
        char *tmpsrc = def->src->path;
        def->src->path = data->file;
3714 3715
        if (virSecurityManagerSetDiskLabel(data->driver->securityManager,
                                           data->vm->def, def) < 0) {
3716
            def->src->path = tmpsrc;
3717 3718
            goto cleanup;
        }
3719
        def->src->path = tmpsrc;
3720 3721
    }   break;

3722 3723 3724 3725 3726 3727 3728
    case VIR_DOMAIN_DEVICE_HOSTDEV: {
        virDomainHostdevDefPtr def = data->def->data.hostdev;
        if (virSecurityManagerSetHostdevLabel(data->driver->securityManager,
                                              data->vm->def, def, NULL) < 0)
            goto cleanup;
    }   break;

3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779
    default:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unexpected device type %d"),
                       data->def->type);
        goto cleanup;
    }

    ret = 0;

 cleanup:
    if (ret < 0)
        unlink(data->file);
    return ret;
}


static int
lxcDomainAttachDeviceMknod(virLXCDriverPtr driver,
                           mode_t mode,
                           dev_t dev,
                           virDomainObjPtr vm,
                           virDomainDeviceDefPtr def,
                           char *file)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    struct lxcDomainAttachDeviceMknodData data;

    memset(&data, 0, sizeof(data));

    data.driver = driver;
    data.mode = mode;
    data.dev = dev;
    data.vm = vm;
    data.def = def;
    data.file = file;

    if (virSecurityManagerPreFork(driver->securityManager) < 0)
        return -1;

    if (virProcessRunInMountNamespace(priv->initpid,
                                      lxcDomainAttachDeviceMknodHelper,
                                      &data) < 0) {
        virSecurityManagerPostFork(driver->securityManager);
        return -1;
    }

    virSecurityManagerPostFork(driver->securityManager);
    return 0;
}


3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812
static int
lxcDomainAttachDeviceUnlinkHelper(pid_t pid ATTRIBUTE_UNUSED,
                                  void *opaque)
{
    const char *path = opaque;

    VIR_DEBUG("Unlinking %s", path);
    if (unlink(path) < 0 && errno != ENOENT) {
        virReportSystemError(errno,
                             _("Unable to remove device %s"), path);
        return -1;
    }

    return 0;
}


static int
lxcDomainAttachDeviceUnlink(virDomainObjPtr vm,
                            char *file)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;

    if (virProcessRunInMountNamespace(priv->initpid,
                                      lxcDomainAttachDeviceUnlinkHelper,
                                      file) < 0) {
        return -1;
    }

    return 0;
}


3813 3814 3815 3816 3817 3818 3819 3820 3821
static int
lxcDomainAttachDeviceDiskLive(virLXCDriverPtr driver,
                              virDomainObjPtr vm,
                              virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    virDomainDiskDefPtr def = dev->data.disk;
    int ret = -1;
    struct stat sb;
3822 3823
    char *file = NULL;
    int perms;
3824
    const char *src = NULL;
3825 3826 3827 3828 3829 3830 3831

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Cannot attach disk until init PID is known"));
        goto cleanup;
    }

3832 3833 3834 3835 3836 3837
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("devices cgroup isn't mounted"));
        goto cleanup;
    }

3838 3839
    src = virDomainDiskGetSource(def);
    if (src == NULL) {
3840 3841 3842 3843 3844
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Can't setup disk without media"));
        goto cleanup;
    }

3845 3846 3847 3848 3849 3850
    if (!virStorageSourceIsBlockLocal(def->src)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Can't setup disk for non-block device"));
        goto cleanup;
    }

3851 3852 3853 3854 3855 3856
    if (virDomainDiskIndexByName(vm->def, def->dst, true) >= 0) {
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("target %s already exists"), def->dst);
        goto cleanup;
    }

3857
    if (stat(src, &sb) < 0) {
3858
        virReportSystemError(errno,
3859
                             _("Unable to access %s"), src);
3860 3861 3862
        goto cleanup;
    }

3863
    if (!S_ISBLK(sb.st_mode)) {
3864
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
3865
                       _("Disk source %s must be a block device"),
3866
                       src);
3867 3868 3869
        goto cleanup;
    }

3870
    perms = (def->src->readonly ?
3871 3872 3873
             VIR_CGROUP_DEVICE_READ :
             VIR_CGROUP_DEVICE_RW) |
        VIR_CGROUP_DEVICE_MKNOD;
3874

3875 3876 3877 3878 3879
    if (virCgroupAllowDevice(priv->cgroup,
                             'b',
                             major(sb.st_rdev),
                             minor(sb.st_rdev),
                             perms) < 0)
3880
        goto cleanup;
3881

3882
    if (VIR_REALLOC_N(vm->def->disks, vm->def->ndisks + 1) < 0)
3883 3884
        goto cleanup;

3885 3886
    if (virAsprintf(&file,
                    "/dev/%s", def->dst) < 0)
3887 3888
        goto cleanup;

3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900
    if (lxcDomainAttachDeviceMknod(driver,
                                   0700 | S_IFBLK,
                                   sb.st_rdev,
                                   vm,
                                   dev,
                                   file) < 0) {
        if (virCgroupDenyDevice(priv->cgroup,
                                'b',
                                major(sb.st_rdev),
                                minor(sb.st_rdev),
                                perms) < 0)
            VIR_WARN("cannot deny device %s for domain %s",
3901
                     src, vm->def->name);
3902 3903 3904 3905 3906 3907 3908
        goto cleanup;
    }

    virDomainDiskInsertPreAlloced(vm->def, def);

    ret = 0;

3909
 cleanup:
3910
    if (src)
3911
        virDomainAuditDisk(vm, NULL, def->src, "attach", ret == 0);
3912
    VIR_FREE(file);
3913 3914 3915 3916
    return ret;
}


3917
/* XXX conn required for network -> bridge resolution */
3918
static int
3919 3920 3921 3922 3923 3924
lxcDomainAttachDeviceNetLive(virConnectPtr conn,
                             virDomainObjPtr vm,
                             virDomainNetDefPtr net)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;
3925
    virDomainNetType actualType;
3926
    virNetDevBandwidthPtr actualBandwidth;
3927 3928 3929 3930 3931
    char *veth = NULL;

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Cannot attach disk until init PID is known"));
M
Martin Kletzander 已提交
3932
        return -1;
3933 3934
    }

3935 3936 3937
    if (virLXCProcessValidateInterface(net) < 0)
       return -1;

3938
    /* preallocate new slot for device */
3939
    if (VIR_REALLOC_N(vm->def->nets, vm->def->nnets+1) < 0)
3940 3941 3942 3943 3944 3945
        return -1;

    /* If appropriate, grab a physical device from the configured
     * network's pool of devices, or resolve bridge device name
     * to the one defined in the network definition.
     */
3946
    if (virDomainNetAllocateActualDevice(vm->def, net) < 0)
3947 3948 3949 3950 3951
        return -1;

    actualType = virDomainNetGetActualType(net);

    switch (actualType) {
3952 3953
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
    case VIR_DOMAIN_NET_TYPE_NETWORK: {
3954 3955 3956 3957 3958 3959
        const char *brname = virDomainNetGetActualBridgeName(net);
        if (!brname) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("No bridge name specified"));
            goto cleanup;
        }
3960
        if (!(veth = virLXCProcessSetupInterfaceTap(vm->def, net, brname)))
3961 3962
            goto cleanup;
    }   break;
3963 3964 3965 3966
    case VIR_DOMAIN_NET_TYPE_ETHERNET:
        if (!(veth = virLXCProcessSetupInterfaceTap(vm->def, net, NULL)))
            goto cleanup;
        break;
3967
    case VIR_DOMAIN_NET_TYPE_DIRECT: {
3968
        if (!(veth = virLXCProcessSetupInterfaceDirect(conn, vm->def, net)))
3969 3970 3971 3972 3973 3974 3975
            goto cleanup;
    }   break;
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Network device type is not supported"));
        goto cleanup;
    }
3976 3977 3978 3979
    /* Set bandwidth or warn if requested and not supported. */
    actualBandwidth = virDomainNetGetActualBandwidth(net);
    if (actualBandwidth) {
        if (virNetDevSupportBandwidth(actualType)) {
3980 3981
            if (virNetDevBandwidthSet(net->ifname, actualBandwidth, false,
                                      !virDomainNetTypeSharesHostView(net)) < 0)
3982 3983 3984 3985 3986 3987 3988
                goto cleanup;
        } else {
            VIR_WARN("setting bandwidth on interfaces of "
                     "type '%s' is not implemented yet",
                     virDomainNetTypeToString(actualType));
        }
    }
3989 3990 3991 3992 3993 3994 3995 3996 3997 3998

    if (virNetDevSetNamespace(veth, priv->initpid) < 0) {
        virDomainAuditNet(vm, NULL, net, "attach", false);
        goto cleanup;
    }

    virDomainAuditNet(vm, NULL, net, "attach", true);

    ret = 0;

3999
 cleanup:
4000 4001 4002 4003 4004 4005
    if (!ret) {
        vm->def->nets[vm->def->nnets++] = net;
    } else if (veth) {
        switch (actualType) {
        case VIR_DOMAIN_NET_TYPE_BRIDGE:
        case VIR_DOMAIN_NET_TYPE_NETWORK:
4006
        case VIR_DOMAIN_NET_TYPE_ETHERNET:
4007 4008 4009 4010 4011 4012
            ignore_value(virNetDevVethDelete(veth));
            break;

        case VIR_DOMAIN_NET_TYPE_DIRECT:
            ignore_value(virNetDevMacVLanDelete(veth));
            break;
4013 4014 4015 4016

        default:
            /* no-op */
            break;
4017 4018 4019 4020 4021 4022 4023
        }
    }

    return ret;
}


4024 4025 4026 4027 4028 4029 4030 4031 4032 4033
static int
lxcDomainAttachDeviceHostdevSubsysUSBLive(virLXCDriverPtr driver,
                                          virDomainObjPtr vm,
                                          virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    virDomainHostdevDefPtr def = dev->data.hostdev;
    int ret = -1;
    char *src = NULL;
    struct stat sb;
4034
    virUSBDevicePtr usb = NULL;
4035
    virDomainHostdevSubsysUSBPtr usbsrc;
4036 4037 4038 4039 4040 4041 4042

    if (virDomainHostdevFind(vm->def, def, NULL) >= 0) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("host USB device already exists"));
        return -1;
    }

4043
    usbsrc = &def->source.subsys.u.usb;
4044
    if (virAsprintf(&src, "/dev/bus/usb/%03d/%03d",
4045
                    usbsrc->bus, usbsrc->device) < 0)
4046 4047
        goto cleanup;

4048
    if (!(usb = virUSBDeviceNew(usbsrc->bus, usbsrc->device, NULL)))
4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063
        goto cleanup;

    if (stat(src, &sb) < 0) {
        virReportSystemError(errno,
                             _("Unable to access %s"), src);
        goto cleanup;
    }

    if (!S_ISCHR(sb.st_mode)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("USB source %s was not a character device"),
                       src);
        goto cleanup;
    }

4064 4065 4066
    if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
        goto cleanup;

4067
    if (virUSBDeviceFileIterate(usb,
4068
                                virLXCSetupHostUSBDeviceCgroup,
4069
                                priv->cgroup) < 0)
4070 4071
        goto cleanup;

4072 4073 4074 4075 4076 4077 4078
    if (lxcDomainAttachDeviceMknod(driver,
                                   0700 | S_IFCHR,
                                   sb.st_rdev,
                                   vm,
                                   dev,
                                   src) < 0) {
        if (virUSBDeviceFileIterate(usb,
4079
                                    virLXCTeardownHostUSBDeviceCgroup,
4080 4081 4082 4083 4084 4085
                                    priv->cgroup) < 0)
            VIR_WARN("cannot deny device %s for domain %s",
                     src, vm->def->name);
        goto cleanup;
    }

4086 4087
    vm->def->hostdevs[vm->def->nhostdevs++] = def;

4088 4089
    ret = 0;

4090
 cleanup:
4091
    virDomainAuditHostdev(vm, def, "attach", ret == 0);
4092
    virUSBDeviceFree(usb);
4093 4094 4095 4096 4097
    VIR_FREE(src);
    return ret;
}


4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133
static int
lxcDomainAttachDeviceHostdevStorageLive(virLXCDriverPtr driver,
                                        virDomainObjPtr vm,
                                        virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    virDomainHostdevDefPtr def = dev->data.hostdev;
    int ret = -1;
    struct stat sb;

    if (!def->source.caps.u.storage.block) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Missing storage block path"));
        goto cleanup;
    }

    if (virDomainHostdevFind(vm->def, def, NULL) >= 0) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("host device already exists"));
        return -1;
    }

    if (stat(def->source.caps.u.storage.block, &sb) < 0) {
        virReportSystemError(errno,
                             _("Unable to access %s"),
                             def->source.caps.u.storage.block);
        goto cleanup;
    }

    if (!S_ISBLK(sb.st_mode)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Hostdev source %s must be a block device"),
                       def->source.caps.u.storage.block);
        goto cleanup;
    }

4134
    if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs+1) < 0)
4135 4136
        goto cleanup;

4137 4138 4139 4140 4141
    if (virCgroupAllowDevice(priv->cgroup,
                             'b',
                             major(sb.st_rdev),
                             minor(sb.st_rdev),
                             VIR_CGROUP_DEVICE_RWM) < 0)
4142 4143
        goto cleanup;

4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156
    if (lxcDomainAttachDeviceMknod(driver,
                                   0700 | S_IFBLK,
                                   sb.st_rdev,
                                   vm,
                                   dev,
                                   def->source.caps.u.storage.block) < 0) {
        if (virCgroupDenyDevice(priv->cgroup,
                                'b',
                                major(sb.st_rdev),
                                minor(sb.st_rdev),
                                VIR_CGROUP_DEVICE_RWM) < 0)
            VIR_WARN("cannot deny device %s for domain %s",
                     def->source.caps.u.storage.block, vm->def->name);
4157 4158 4159 4160 4161 4162 4163
        goto cleanup;
    }

    vm->def->hostdevs[vm->def->nhostdevs++] = def;

    ret = 0;

4164
 cleanup:
4165 4166 4167 4168 4169
    virDomainAuditHostdev(vm, def, "attach", ret == 0);
    return ret;
}


4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205
static int
lxcDomainAttachDeviceHostdevMiscLive(virLXCDriverPtr driver,
                                     virDomainObjPtr vm,
                                     virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    virDomainHostdevDefPtr def = dev->data.hostdev;
    int ret = -1;
    struct stat sb;

    if (!def->source.caps.u.misc.chardev) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Missing storage block path"));
        goto cleanup;
    }

    if (virDomainHostdevFind(vm->def, def, NULL) >= 0) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("host device already exists"));
        return -1;
    }

    if (stat(def->source.caps.u.misc.chardev, &sb) < 0) {
        virReportSystemError(errno,
                             _("Unable to access %s"),
                             def->source.caps.u.misc.chardev);
        goto cleanup;
    }

    if (!S_ISCHR(sb.st_mode)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Hostdev source %s must be a block device"),
                       def->source.caps.u.misc.chardev);
        goto cleanup;
    }

4206 4207 4208 4209 4210
    if (virCgroupAllowDevice(priv->cgroup,
                             'c',
                             major(sb.st_rdev),
                             minor(sb.st_rdev),
                             VIR_CGROUP_DEVICE_RWM) < 0)
4211 4212
        goto cleanup;

4213
    if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs+1) < 0)
4214 4215
        goto cleanup;

4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228
    if (lxcDomainAttachDeviceMknod(driver,
                                   0700 | S_IFBLK,
                                   sb.st_rdev,
                                   vm,
                                   dev,
                                   def->source.caps.u.misc.chardev) < 0) {
        if (virCgroupDenyDevice(priv->cgroup,
                                'c',
                                major(sb.st_rdev),
                                minor(sb.st_rdev),
                                VIR_CGROUP_DEVICE_RWM) < 0)
            VIR_WARN("cannot deny device %s for domain %s",
                     def->source.caps.u.storage.block, vm->def->name);
4229 4230 4231 4232 4233 4234 4235
        goto cleanup;
    }

    vm->def->hostdevs[vm->def->nhostdevs++] = def;

    ret = 0;

4236
 cleanup:
4237 4238 4239 4240 4241
    virDomainAuditHostdev(vm, def, "attach", ret == 0);
    return ret;
}


4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259
static int
lxcDomainAttachDeviceHostdevSubsysLive(virLXCDriverPtr driver,
                                       virDomainObjPtr vm,
                                       virDomainDeviceDefPtr dev)
{
    switch (dev->data.hostdev->source.subsys.type) {
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB:
        return lxcDomainAttachDeviceHostdevSubsysUSBLive(driver, vm, dev);

    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported host device type %s"),
                       virDomainHostdevSubsysTypeToString(dev->data.hostdev->source.subsys.type));
        return -1;
    }
}


4260 4261 4262 4263 4264 4265 4266 4267 4268
static int
lxcDomainAttachDeviceHostdevCapsLive(virLXCDriverPtr driver,
                                     virDomainObjPtr vm,
                                     virDomainDeviceDefPtr dev)
{
    switch (dev->data.hostdev->source.caps.type) {
    case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_STORAGE:
        return lxcDomainAttachDeviceHostdevStorageLive(driver, vm, dev);

4269 4270 4271
    case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_MISC:
        return lxcDomainAttachDeviceHostdevMiscLive(driver, vm, dev);

4272 4273 4274 4275 4276 4277 4278 4279 4280
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported host device type %s"),
                       virDomainHostdevCapsTypeToString(dev->data.hostdev->source.caps.type));
        return -1;
    }
}


4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293
static int
lxcDomainAttachDeviceHostdevLive(virLXCDriverPtr driver,
                                 virDomainObjPtr vm,
                                 virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Cannot attach hostdev until init PID is known"));
        return -1;
    }

4294 4295 4296 4297 4298 4299
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("devices cgroup isn't mounted"));
        return -1;
    }

4300 4301 4302 4303
    switch (dev->data.hostdev->mode) {
    case VIR_DOMAIN_HOSTDEV_MODE_SUBSYS:
        return lxcDomainAttachDeviceHostdevSubsysLive(driver, vm, dev);

4304 4305 4306
    case VIR_DOMAIN_HOSTDEV_MODE_CAPABILITIES:
        return lxcDomainAttachDeviceHostdevCapsLive(driver, vm, dev);

4307 4308 4309 4310 4311 4312 4313 4314 4315
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported host device mode %s"),
                       virDomainHostdevModeTypeToString(dev->data.hostdev->mode));
        return -1;
    }
}


4316 4317 4318 4319
static int
lxcDomainAttachDeviceLive(virConnectPtr conn,
                          virLXCDriverPtr driver,
                          virDomainObjPtr vm,
4320 4321 4322 4323 4324
                          virDomainDeviceDefPtr dev)
{
    int ret = -1;

    switch (dev->type) {
4325 4326 4327 4328 4329 4330
    case VIR_DOMAIN_DEVICE_DISK:
        ret = lxcDomainAttachDeviceDiskLive(driver, vm, dev);
        if (!ret)
            dev->data.disk = NULL;
        break;

4331 4332 4333 4334 4335 4336 4337
    case VIR_DOMAIN_DEVICE_NET:
        ret = lxcDomainAttachDeviceNetLive(conn, vm,
                                           dev->data.net);
        if (!ret)
            dev->data.net = NULL;
        break;

4338 4339 4340
    case VIR_DOMAIN_DEVICE_HOSTDEV:
        ret = lxcDomainAttachDeviceHostdevLive(driver, vm, dev);
        if (!ret)
C
Chen Hanxiao 已提交
4341
            dev->data.hostdev = NULL;
4342 4343
        break;

4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("device type '%s' cannot be attached"),
                       virDomainDeviceTypeToString(dev->type));
        break;
    }

    return ret;
}


4355
static int
4356
lxcDomainDetachDeviceDiskLive(virDomainObjPtr vm,
4357 4358 4359 4360
                              virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    virDomainDiskDefPtr def = NULL;
4361
    int idx, ret = -1;
J
John Ferlan 已提交
4362
    char *dst = NULL;
4363
    const char *src;
4364 4365 4366 4367 4368 4369 4370

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Cannot attach disk until init PID is known"));
        goto cleanup;
    }

4371 4372 4373
    if ((idx = virDomainDiskIndexByName(vm->def,
                                        dev->data.disk->dst,
                                        false)) < 0) {
4374 4375 4376 4377 4378
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("disk %s not found"), dev->data.disk->dst);
        goto cleanup;
    }

4379
    def = vm->def->disks[idx];
4380
    src = virDomainDiskGetSource(def);
4381

4382
    if (virAsprintf(&dst, "/dev/%s", def->dst) < 0)
4383 4384
        goto cleanup;

4385
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES)) {
4386 4387 4388 4389 4390
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("devices cgroup isn't mounted"));
        goto cleanup;
    }

4391
    if (lxcDomainAttachDeviceUnlink(vm, dst) < 0) {
4392
        virDomainAuditDisk(vm, def->src, NULL, "detach", false);
4393 4394
        goto cleanup;
    }
4395
    virDomainAuditDisk(vm, def->src, NULL, "detach", true);
4396

4397 4398
    if (virCgroupDenyDevicePath(priv->cgroup, src,
                                VIR_CGROUP_DEVICE_RWM, false) != 0)
4399
        VIR_WARN("cannot deny device %s for domain %s",
4400
                 src, vm->def->name);
4401

4402
    virDomainDiskRemove(vm->def, idx);
4403 4404 4405 4406
    virDomainDiskDefFree(def);

    ret = 0;

4407
 cleanup:
4408 4409 4410 4411 4412
    VIR_FREE(dst);
    return ret;
}


4413
static int
4414 4415 4416
lxcDomainDetachDeviceNetLive(virDomainObjPtr vm,
                             virDomainDeviceDefPtr dev)
{
4417 4418
    int detachidx, ret = -1;
    virDomainNetType actualType;
4419 4420 4421
    virDomainNetDefPtr detach = NULL;
    virNetDevVPortProfilePtr vport = NULL;

4422
    if ((detachidx = virDomainNetFindIdx(vm->def, dev->data.net)) < 0)
4423
        goto cleanup;
4424

4425
    detach = vm->def->nets[detachidx];
4426 4427 4428
    actualType = virDomainNetGetActualType(detach);

    /* clear network bandwidth */
4429 4430
    if (virDomainNetGetActualBandwidth(detach) &&
        virNetDevSupportBandwidth(actualType) &&
4431 4432
        virNetDevBandwidthClear(detach->ifname))
        goto cleanup;
4433

4434
    switch (actualType) {
4435 4436
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
    case VIR_DOMAIN_NET_TYPE_NETWORK:
4437
    case VIR_DOMAIN_NET_TYPE_ETHERNET:
4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467
        if (virNetDevVethDelete(detach->ifname) < 0) {
            virDomainAuditNet(vm, detach, NULL, "detach", false);
            goto cleanup;
        }
        break;

        /* It'd be nice to support this, but with macvlan
         * once assigned to a container nothing exists on
         * the host side. Further the container can change
         * the mac address of NIC name, so we can't easily
         * find out which guest NIC it maps to
    case VIR_DOMAIN_NET_TYPE_DIRECT:
        */

    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Only bridged veth devices can be detached"));
        goto cleanup;
    }

    virDomainAuditNet(vm, detach, NULL, "detach", true);

    virDomainConfNWFilterTeardown(detach);

    vport = virDomainNetGetActualVirtPortProfile(detach);
    if (vport && vport->virtPortType == VIR_NETDEV_VPORT_PROFILE_OPENVSWITCH)
        ignore_value(virNetDevOpenvswitchRemovePort(
                        virDomainNetGetActualBridgeName(detach),
                        detach->ifname));
    ret = 0;
4468
 cleanup:
4469
    if (!ret) {
4470
        virDomainNetReleaseActualDevice(vm->def, detach);
4471 4472 4473 4474 4475 4476 4477
        virDomainNetRemove(vm->def, detachidx);
        virDomainNetDefFree(detach);
    }
    return ret;
}


4478 4479 4480 4481 4482 4483 4484 4485
static int
lxcDomainDetachDeviceHostdevUSBLive(virLXCDriverPtr driver,
                                    virDomainObjPtr vm,
                                    virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    virDomainHostdevDefPtr def = NULL;
    int idx, ret = -1;
J
John Ferlan 已提交
4486
    char *dst = NULL;
4487
    virUSBDevicePtr usb = NULL;
4488
    virHostdevManagerPtr hostdev_mgr = driver->hostdevMgr;
4489
    virDomainHostdevSubsysUSBPtr usbsrc;
4490 4491 4492 4493 4494 4495 4496 4497 4498

    if ((idx = virDomainHostdevFind(vm->def,
                                    dev->data.hostdev,
                                    &def)) < 0) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("usb device not found"));
        goto cleanup;
    }

4499
    usbsrc = &def->source.subsys.u.usb;
4500
    if (virAsprintf(&dst, "/dev/bus/usb/%03d/%03d",
4501
                    usbsrc->bus, usbsrc->device) < 0)
4502 4503
        goto cleanup;

4504
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES)) {
4505 4506 4507 4508 4509
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("devices cgroup isn't mounted"));
        goto cleanup;
    }

4510
    if (!(usb = virUSBDeviceNew(usbsrc->bus, usbsrc->device, NULL)))
4511 4512
        goto cleanup;

4513
    if (lxcDomainAttachDeviceUnlink(vm, dst) < 0) {
4514 4515 4516 4517 4518
        virDomainAuditHostdev(vm, def, "detach", false);
        goto cleanup;
    }
    virDomainAuditHostdev(vm, def, "detach", true);

4519
    if (virUSBDeviceFileIterate(usb,
4520
                                virLXCTeardownHostUSBDeviceCgroup,
4521
                                priv->cgroup) < 0)
4522 4523 4524
        VIR_WARN("cannot deny device %s for domain %s",
                 dst, vm->def->name);

4525 4526 4527
    virObjectLock(hostdev_mgr->activeUSBHostdevs);
    virUSBDeviceListDel(hostdev_mgr->activeUSBHostdevs, usb);
    virObjectUnlock(hostdev_mgr->activeUSBHostdevs);
4528 4529 4530 4531 4532 4533

    virDomainHostdevRemove(vm->def, idx);
    virDomainHostdevDefFree(def);

    ret = 0;

4534
 cleanup:
4535
    virUSBDeviceFree(usb);
4536 4537 4538 4539
    VIR_FREE(dst);
    return ret;
}

4540 4541

static int
4542
lxcDomainDetachDeviceHostdevStorageLive(virDomainObjPtr vm,
4543 4544 4545 4546
                                        virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    virDomainHostdevDefPtr def = NULL;
4547
    int idx, ret = -1;
4548 4549 4550 4551 4552 4553 4554

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Cannot attach disk until init PID is known"));
        goto cleanup;
    }

4555 4556 4557
    if ((idx = virDomainHostdevFind(vm->def,
                                    dev->data.hostdev,
                                    &def)) < 0) {
4558 4559 4560 4561 4562 4563
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("hostdev %s not found"),
                       dev->data.hostdev->source.caps.u.storage.block);
        goto cleanup;
    }

4564
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES)) {
4565 4566 4567 4568 4569
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("devices cgroup isn't mounted"));
        goto cleanup;
    }

4570
    if (lxcDomainAttachDeviceUnlink(vm, def->source.caps.u.storage.block) < 0) {
4571 4572 4573 4574 4575
        virDomainAuditHostdev(vm, def, "detach", false);
        goto cleanup;
    }
    virDomainAuditHostdev(vm, def, "detach", true);

4576 4577
    if (virCgroupDenyDevicePath(priv->cgroup, def->source.caps.u.storage.block,
                                VIR_CGROUP_DEVICE_RWM, false) != 0)
4578 4579 4580
        VIR_WARN("cannot deny device %s for domain %s",
                 def->source.caps.u.storage.block, vm->def->name);

4581
    virDomainHostdevRemove(vm->def, idx);
4582 4583 4584 4585
    virDomainHostdevDefFree(def);

    ret = 0;

4586
 cleanup:
4587 4588 4589 4590
    return ret;
}


4591
static int
4592
lxcDomainDetachDeviceHostdevMiscLive(virDomainObjPtr vm,
4593 4594 4595 4596
                                     virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    virDomainHostdevDefPtr def = NULL;
4597
    int idx, ret = -1;
4598 4599 4600 4601 4602 4603 4604

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Cannot attach disk until init PID is known"));
        goto cleanup;
    }

4605 4606 4607
    if ((idx = virDomainHostdevFind(vm->def,
                                    dev->data.hostdev,
                                    &def)) < 0) {
4608 4609 4610 4611 4612 4613
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("hostdev %s not found"),
                       dev->data.hostdev->source.caps.u.misc.chardev);
        goto cleanup;
    }

4614
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES)) {
4615 4616 4617 4618 4619
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("devices cgroup isn't mounted"));
        goto cleanup;
    }

4620
    if (lxcDomainAttachDeviceUnlink(vm, def->source.caps.u.misc.chardev) < 0) {
4621 4622 4623 4624 4625
        virDomainAuditHostdev(vm, def, "detach", false);
        goto cleanup;
    }
    virDomainAuditHostdev(vm, def, "detach", true);

4626 4627
    if (virCgroupDenyDevicePath(priv->cgroup, def->source.caps.u.misc.chardev,
                                VIR_CGROUP_DEVICE_RWM, false) != 0)
4628 4629 4630
        VIR_WARN("cannot deny device %s for domain %s",
                 def->source.caps.u.misc.chardev, vm->def->name);

4631
    virDomainHostdevRemove(vm->def, idx);
4632 4633 4634 4635
    virDomainHostdevDefFree(def);

    ret = 0;

4636
 cleanup:
4637 4638 4639 4640
    return ret;
}


4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658
static int
lxcDomainDetachDeviceHostdevSubsysLive(virLXCDriverPtr driver,
                                       virDomainObjPtr vm,
                                       virDomainDeviceDefPtr dev)
{
    switch (dev->data.hostdev->source.subsys.type) {
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB:
        return lxcDomainDetachDeviceHostdevUSBLive(driver, vm, dev);

    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported host device type %s"),
                       virDomainHostdevSubsysTypeToString(dev->data.hostdev->source.subsys.type));
        return -1;
    }
}


4659
static int
4660 4661
lxcDomainDetachDeviceHostdevCapsLive(virDomainObjPtr vm,
                                     virDomainDeviceDefPtr dev)
4662 4663 4664
{
    switch (dev->data.hostdev->source.caps.type) {
    case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_STORAGE:
4665
        return lxcDomainDetachDeviceHostdevStorageLive(vm, dev);
4666

4667
    case VIR_DOMAIN_HOSTDEV_CAPS_TYPE_MISC:
4668
        return lxcDomainDetachDeviceHostdevMiscLive(vm, dev);
4669

4670 4671 4672 4673 4674 4675 4676 4677 4678
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported host device type %s"),
                       virDomainHostdevCapsTypeToString(dev->data.hostdev->source.caps.type));
        return -1;
    }
}


4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695
static int
lxcDomainDetachDeviceHostdevLive(virLXCDriverPtr driver,
                                 virDomainObjPtr vm,
                                 virDomainDeviceDefPtr dev)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Cannot attach hostdev until init PID is known"));
        return -1;
    }

    switch (dev->data.hostdev->mode) {
    case VIR_DOMAIN_HOSTDEV_MODE_SUBSYS:
        return lxcDomainDetachDeviceHostdevSubsysLive(driver, vm, dev);

4696
    case VIR_DOMAIN_HOSTDEV_MODE_CAPABILITIES:
4697
        return lxcDomainDetachDeviceHostdevCapsLive(vm, dev);
4698

4699 4700 4701 4702 4703 4704 4705 4706 4707
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported host device mode %s"),
                       virDomainHostdevModeTypeToString(dev->data.hostdev->mode));
        return -1;
    }
}


4708 4709 4710
static int
lxcDomainDetachDeviceLive(virLXCDriverPtr driver,
                          virDomainObjPtr vm,
4711 4712 4713 4714 4715
                          virDomainDeviceDefPtr dev)
{
    int ret = -1;

    switch (dev->type) {
4716
    case VIR_DOMAIN_DEVICE_DISK:
4717
        ret = lxcDomainDetachDeviceDiskLive(vm, dev);
4718 4719
        break;

4720 4721 4722 4723
    case VIR_DOMAIN_DEVICE_NET:
        ret = lxcDomainDetachDeviceNetLive(vm, dev);
        break;

4724 4725 4726 4727
    case VIR_DOMAIN_DEVICE_HOSTDEV:
        ret = lxcDomainDetachDeviceHostdevLive(driver, vm, dev);
        break;

4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738
    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("device type '%s' cannot be detached"),
                       virDomainDeviceTypeToString(dev->type));
        break;
    }

    return ret;
}


4739 4740 4741
static int lxcDomainAttachDeviceFlags(virDomainPtr dom,
                                      const char *xml,
                                      unsigned int flags)
4742 4743
{
    virLXCDriverPtr driver = dom->conn->privateData;
4744
    virCapsPtr caps = NULL;
4745 4746 4747 4748
    virDomainObjPtr vm = NULL;
    virDomainDefPtr vmdef = NULL;
    virDomainDeviceDefPtr dev = NULL, dev_copy = NULL;
    int ret = -1;
4749
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
4750 4751

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
4752
                  VIR_DOMAIN_AFFECT_CONFIG, -1);
4753

M
Michal Privoznik 已提交
4754
    if (!(vm = lxcDomObjFromDomain(dom)))
4755 4756
        goto cleanup;

4757 4758 4759
    if (virDomainAttachDeviceFlagsEnsureACL(dom->conn, vm->def, flags) < 0)
        goto cleanup;

4760
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
4761 4762
        goto cleanup;

4763 4764 4765
    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
        goto endjob;

4766
    if (virDomainObjUpdateModificationImpact(vm, &flags) < 0)
4767
        goto endjob;
4768

4769
    dev = dev_copy = virDomainDeviceDefParse(xml, vm->def,
4770
                                             caps, driver->xmlopt,
4771
                                             VIR_DOMAIN_DEF_PARSE_INACTIVE);
4772
    if (dev == NULL)
4773
        goto endjob;
4774 4775 4776 4777 4778 4779 4780

    if (flags & VIR_DOMAIN_AFFECT_CONFIG &&
        flags & VIR_DOMAIN_AFFECT_LIVE) {
        /* If we are affecting both CONFIG and LIVE
         * create a deep copy of device as adding
         * to CONFIG takes one instance.
         */
4781
        dev_copy = virDomainDeviceDefCopy(dev, vm->def,
4782
                                          caps, driver->xmlopt);
4783
        if (!dev_copy)
4784
            goto endjob;
4785 4786 4787 4788
    }

    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
        /* Make a copy for updated domain. */
4789
        vmdef = virDomainObjCopyPersistentDef(vm, caps, driver->xmlopt);
4790
        if (!vmdef)
4791
            goto endjob;
4792

4793
        if (virDomainDefCompatibleDevice(vmdef, dev) < 0)
4794
            goto endjob;
4795

4796
        if ((ret = lxcDomainAttachDeviceConfig(vmdef, dev)) < 0)
4797
            goto endjob;
4798 4799 4800
    }

    if (flags & VIR_DOMAIN_AFFECT_LIVE) {
4801
        if (virDomainDefCompatibleDevice(vm->def, dev_copy) < 0)
4802
            goto endjob;
4803

4804
        if ((ret = lxcDomainAttachDeviceLive(dom->conn, driver, vm, dev_copy)) < 0)
4805
            goto endjob;
4806 4807 4808 4809 4810
        /*
         * update domain status forcibly because the domain status may be
         * changed even if we failed to attach the device. For example,
         * a new controller may be created.
         */
4811
        if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0) {
4812
            ret = -1;
4813
            goto endjob;
4814 4815 4816 4817 4818
        }
    }

    /* Finally, if no error until here, we can save config. */
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
4819
        ret = virDomainSaveConfig(cfg->configDir, driver->caps, vmdef);
4820
        if (!ret) {
4821
            virDomainObjAssignDef(vm, vmdef, false, NULL);
4822 4823 4824 4825
            vmdef = NULL;
        }
    }

4826
 endjob:
4827 4828
    virLXCDomainObjEndJob(driver, vm);

4829
 cleanup:
4830 4831 4832 4833
    virDomainDefFree(vmdef);
    if (dev != dev_copy)
        virDomainDeviceDefFree(dev_copy);
    virDomainDeviceDefFree(dev);
4834
    virDomainObjEndAPI(&vm);
4835
    virObjectUnref(caps);
4836
    virObjectUnref(cfg);
4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852
    return ret;
}


static int lxcDomainAttachDevice(virDomainPtr dom,
                                 const char *xml)
{
    return lxcDomainAttachDeviceFlags(dom, xml,
                                       VIR_DOMAIN_AFFECT_LIVE);
}


static int lxcDomainUpdateDeviceFlags(virDomainPtr dom,
                                      const char *xml,
                                      unsigned int flags)
{
4853
    virLXCDriverPtr driver = dom->conn->privateData;
4854
    virCapsPtr caps = NULL;
4855 4856 4857 4858
    virDomainObjPtr vm = NULL;
    virDomainDefPtr vmdef = NULL;
    virDomainDeviceDefPtr dev = NULL, dev_copy = NULL;
    int ret = -1;
4859
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
4860 4861 4862 4863 4864

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG |
                  VIR_DOMAIN_DEVICE_MODIFY_FORCE, -1);

M
Michal Privoznik 已提交
4865
    if (!(vm = lxcDomObjFromDomain(dom)))
4866 4867
        goto cleanup;

4868 4869 4870
    if (virDomainUpdateDeviceFlagsEnsureACL(dom->conn, vm->def, flags) < 0)
        goto cleanup;

4871
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
4872
        goto cleanup;
4873

4874 4875 4876
    if (virDomainObjUpdateModificationImpact(vm, &flags) < 0)
        goto endjob;

4877
    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
4878
        goto endjob;
4879

4880
    dev = dev_copy = virDomainDeviceDefParse(xml, vm->def,
4881
                                             caps, driver->xmlopt,
4882
                                             VIR_DOMAIN_DEF_PARSE_INACTIVE);
4883
    if (dev == NULL)
4884
        goto endjob;
4885 4886 4887 4888 4889 4890 4891 4892

    if (flags & VIR_DOMAIN_AFFECT_CONFIG &&
        flags & VIR_DOMAIN_AFFECT_LIVE) {
        /* If we are affecting both CONFIG and LIVE
         * create a deep copy of device as adding
         * to CONFIG takes one instance.
         */
        dev_copy = virDomainDeviceDefCopy(dev, vm->def,
4893
                                          caps, driver->xmlopt);
4894
        if (!dev_copy)
4895
            goto endjob;
4896 4897 4898 4899
    }

    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
        /* Make a copy for updated domain. */
4900
        vmdef = virDomainObjCopyPersistentDef(vm, caps, driver->xmlopt);
4901
        if (!vmdef)
4902
            goto endjob;
4903

4904
        if (virDomainDefCompatibleDevice(vmdef, dev) < 0)
4905
            goto endjob;
4906

4907
        if ((ret = lxcDomainUpdateDeviceConfig(vmdef, dev)) < 0)
4908
            goto endjob;
4909 4910 4911
    }

    if (flags & VIR_DOMAIN_AFFECT_LIVE) {
4912
        if (virDomainDefCompatibleDevice(vm->def, dev_copy) < 0)
4913
            goto endjob;
4914 4915 4916 4917

        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("Unable to modify live devices"));

4918
        goto endjob;
4919 4920 4921 4922
    }

    /* Finally, if no error until here, we can save config. */
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
4923
        ret = virDomainSaveConfig(cfg->configDir, driver->caps, vmdef);
4924 4925 4926 4927 4928
        if (!ret) {
            virDomainObjAssignDef(vm, vmdef, false, NULL);
            vmdef = NULL;
        }
    }
4929
 endjob:
4930 4931
    virLXCDomainObjEndJob(driver, vm);

4932
 cleanup:
4933 4934 4935 4936
    virDomainDefFree(vmdef);
    if (dev != dev_copy)
        virDomainDeviceDefFree(dev_copy);
    virDomainDeviceDefFree(dev);
4937
    virDomainObjEndAPI(&vm);
4938
    virObjectUnref(caps);
4939
    virObjectUnref(cfg);
4940
    return ret;
4941 4942 4943 4944 4945 4946 4947
}


static int lxcDomainDetachDeviceFlags(virDomainPtr dom,
                                      const char *xml,
                                      unsigned int flags)
{
4948
    virLXCDriverPtr driver = dom->conn->privateData;
4949
    virCapsPtr caps = NULL;
4950 4951 4952 4953
    virDomainObjPtr vm = NULL;
    virDomainDefPtr vmdef = NULL;
    virDomainDeviceDefPtr dev = NULL, dev_copy = NULL;
    int ret = -1;
4954
    virLXCDriverConfigPtr cfg = virLXCDriverGetConfig(driver);
4955 4956 4957 4958

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

M
Michal Privoznik 已提交
4959
    if (!(vm = lxcDomObjFromDomain(dom)))
4960 4961
        goto cleanup;

4962 4963 4964
    if (virDomainDetachDeviceFlagsEnsureACL(dom->conn, vm->def, flags) < 0)
        goto cleanup;

4965
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
4966
        goto cleanup;
4967

4968 4969 4970
    if (virDomainObjUpdateModificationImpact(vm, &flags) < 0)
        goto endjob;

4971
    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
4972
        goto endjob;
4973

4974
    dev = dev_copy = virDomainDeviceDefParse(xml, vm->def,
4975
                                             caps, driver->xmlopt,
4976 4977
                                             VIR_DOMAIN_DEF_PARSE_INACTIVE |
                                             VIR_DOMAIN_DEF_PARSE_SKIP_VALIDATE);
4978
    if (dev == NULL)
4979
        goto endjob;
4980 4981 4982 4983 4984 4985 4986 4987

    if (flags & VIR_DOMAIN_AFFECT_CONFIG &&
        flags & VIR_DOMAIN_AFFECT_LIVE) {
        /* If we are affecting both CONFIG and LIVE
         * create a deep copy of device as adding
         * to CONFIG takes one instance.
         */
        dev_copy = virDomainDeviceDefCopy(dev, vm->def,
4988
                                          caps, driver->xmlopt);
4989
        if (!dev_copy)
4990
            goto endjob;
4991 4992 4993 4994
    }

    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
        /* Make a copy for updated domain. */
4995
        vmdef = virDomainObjCopyPersistentDef(vm, caps, driver->xmlopt);
4996
        if (!vmdef)
4997
            goto endjob;
4998 4999

        if ((ret = lxcDomainDetachDeviceConfig(vmdef, dev)) < 0)
5000
            goto endjob;
5001 5002 5003 5004
    }

    if (flags & VIR_DOMAIN_AFFECT_LIVE) {
        if ((ret = lxcDomainDetachDeviceLive(driver, vm, dev_copy)) < 0)
5005
            goto endjob;
5006 5007 5008 5009 5010
        /*
         * update domain status forcibly because the domain status may be
         * changed even if we failed to attach the device. For example,
         * a new controller may be created.
         */
5011
        if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0) {
5012
            ret = -1;
5013
            goto endjob;
5014 5015 5016 5017 5018
        }
    }

    /* Finally, if no error until here, we can save config. */
    if (flags & VIR_DOMAIN_AFFECT_CONFIG) {
5019
        ret = virDomainSaveConfig(cfg->configDir, driver->caps, vmdef);
5020 5021 5022 5023 5024 5025
        if (!ret) {
            virDomainObjAssignDef(vm, vmdef, false, NULL);
            vmdef = NULL;
        }
    }

5026
 endjob:
5027 5028
    virLXCDomainObjEndJob(driver, vm);

5029
 cleanup:
5030 5031 5032 5033
    virDomainDefFree(vmdef);
    if (dev != dev_copy)
        virDomainDeviceDefFree(dev_copy);
    virDomainDeviceDefFree(dev);
5034
    virDomainObjEndAPI(&vm);
5035
    virObjectUnref(caps);
5036
    virObjectUnref(cfg);
5037
    return ret;
5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048
}


static int lxcDomainDetachDevice(virDomainPtr dom,
                                 const char *xml)
{
    return lxcDomainDetachDeviceFlags(dom, xml,
                                      VIR_DOMAIN_AFFECT_LIVE);
}


5049 5050 5051
static int lxcDomainLxcOpenNamespace(virDomainPtr dom,
                                     int **fdlist,
                                     unsigned int flags)
5052
{
5053
    virLXCDriverPtr driver = dom->conn->privateData;
5054 5055 5056 5057 5058 5059 5060 5061
    virDomainObjPtr vm;
    virLXCDomainObjPrivatePtr priv;
    int ret = -1;
    size_t nfds = 0;

    *fdlist = NULL;
    virCheckFlags(0, -1);

M
Michal Privoznik 已提交
5062
    if (!(vm = lxcDomObjFromDomain(dom)))
5063
        goto cleanup;
M
Michal Privoznik 已提交
5064

5065 5066
    priv = vm->privateData;

5067 5068 5069
    if (virDomainLxcOpenNamespaceEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

5070 5071 5072
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_QUERY) < 0)
        goto cleanup;

5073 5074 5075
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is not running"));
5076
        goto endjob;
5077 5078 5079 5080 5081
    }

    if (!priv->initpid) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("Init pid is not yet available"));
5082
        goto endjob;
5083 5084 5085
    }

    if (virProcessGetNamespaces(priv->initpid, &nfds, fdlist) < 0)
5086
        goto endjob;
5087 5088

    ret = nfds;
5089 5090

 endjob:
5091
    virLXCDomainObjEndJob(driver, vm);
5092

5093
 cleanup:
5094
    virDomainObjEndAPI(&vm);
5095 5096 5097 5098
    return ret;
}


5099
static char *
5100
lxcConnectGetSysinfo(virConnectPtr conn, unsigned int flags)
5101 5102 5103 5104 5105 5106
{
    virLXCDriverPtr driver = conn->privateData;
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    virCheckFlags(0, NULL);

5107 5108 5109
    if (virConnectGetSysinfoEnsureACL(conn) < 0)
        return NULL;

5110 5111 5112 5113 5114 5115 5116 5117
    if (!driver->hostsysinfo) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Host SMBIOS information is not available"));
        return NULL;
    }

    if (virSysinfoFormat(&buf, driver->hostsysinfo) < 0)
        return NULL;
5118
    if (virBufferCheckError(&buf) < 0)
5119 5120 5121 5122 5123
        return NULL;
    return virBufferContentAndReset(&buf);
}


5124
static int
5125
lxcNodeGetInfo(virConnectPtr conn,
5126 5127
               virNodeInfoPtr nodeinfo)
{
5128 5129 5130
    if (virNodeGetInfoEnsureACL(conn) < 0)
        return -1;

M
Martin Kletzander 已提交
5131
    return virCapabilitiesGetNodeInfo(nodeinfo);
5132 5133 5134
}


5135 5136
static int
lxcDomainMemoryStats(virDomainPtr dom,
5137
                     virDomainMemoryStatPtr stats,
5138 5139 5140 5141 5142 5143 5144 5145
                     unsigned int nr_stats,
                     unsigned int flags)
{
    virDomainObjPtr vm;
    int ret = -1;
    virLXCDomainObjPrivatePtr priv;
    unsigned long long swap_usage;
    unsigned long mem_usage;
5146
    virLXCDriverPtr driver = dom->conn->privateData;
5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157

    virCheckFlags(0, -1);

    if (!(vm = lxcDomObjFromDomain(dom)))
        goto cleanup;

    priv = vm->privateData;

    if (virDomainMemoryStatsEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

5158 5159 5160
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_QUERY) < 0)
        goto cleanup;

5161 5162 5163
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("domain is not active"));
5164
        goto endjob;
5165
    }
5166

5167
    if (virCgroupGetMemSwapUsage(priv->cgroup, &swap_usage) < 0)
5168
        goto endjob;
5169

5170
    if (virCgroupGetMemoryUsage(priv->cgroup, &mem_usage) < 0)
5171
        goto endjob;
5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189

    ret = 0;
    if (ret < nr_stats) {
        stats[ret].tag = VIR_DOMAIN_MEMORY_STAT_ACTUAL_BALLOON;
        stats[ret].val = vm->def->mem.cur_balloon;
        ret++;
    }
    if (ret < nr_stats) {
        stats[ret].tag = VIR_DOMAIN_MEMORY_STAT_SWAP_IN;
        stats[ret].val = swap_usage;
        ret++;
    }
    if (ret < nr_stats) {
        stats[ret].tag = VIR_DOMAIN_MEMORY_STAT_RSS;
        stats[ret].val = mem_usage;
        ret++;
    }

5190
 endjob:
5191 5192
    virLXCDomainObjEndJob(driver, vm);

5193
 cleanup:
5194
    virDomainObjEndAPI(&vm);
5195 5196 5197 5198
    return ret;
}


5199
static int
5200
lxcNodeGetCPUStats(virConnectPtr conn,
5201 5202 5203 5204 5205
                   int cpuNum,
                   virNodeCPUStatsPtr params,
                   int *nparams,
                   unsigned int flags)
{
5206 5207 5208
    if (virNodeGetCPUStatsEnsureACL(conn) < 0)
        return -1;

5209
    return virHostCPUGetStats(cpuNum, params, nparams, flags);
5210 5211 5212 5213
}


static int
5214
lxcNodeGetMemoryStats(virConnectPtr conn,
5215 5216 5217 5218 5219
                      int cellNum,
                      virNodeMemoryStatsPtr params,
                      int *nparams,
                      unsigned int flags)
{
5220 5221 5222
    if (virNodeGetMemoryStatsEnsureACL(conn) < 0)
        return -1;

5223
    return virHostMemGetStats(cellNum, params, nparams, flags);
5224 5225 5226 5227
}


static int
5228
lxcNodeGetCellsFreeMemory(virConnectPtr conn,
5229 5230 5231 5232
                          unsigned long long *freeMems,
                          int startCell,
                          int maxCells)
{
5233 5234 5235
    if (virNodeGetCellsFreeMemoryEnsureACL(conn) < 0)
        return -1;

5236
    return virHostMemGetCellsFree(freeMems, startCell, maxCells);
5237 5238 5239 5240
}


static unsigned long long
5241
lxcNodeGetFreeMemory(virConnectPtr conn)
5242
{
5243 5244
    unsigned long long freeMem;

5245 5246 5247
    if (virNodeGetFreeMemoryEnsureACL(conn) < 0)
        return 0;

5248
    if (virHostMemGetInfo(NULL, &freeMem) < 0)
5249 5250 5251
        return 0;

    return freeMem;
5252 5253 5254 5255
}


static int
5256
lxcNodeGetMemoryParameters(virConnectPtr conn,
5257 5258 5259 5260
                           virTypedParameterPtr params,
                           int *nparams,
                           unsigned int flags)
{
5261 5262 5263
    if (virNodeGetMemoryParametersEnsureACL(conn) < 0)
        return -1;

5264
    return virHostMemGetParameters(params, nparams, flags);
5265 5266 5267 5268
}


static int
5269
lxcNodeSetMemoryParameters(virConnectPtr conn,
5270 5271 5272 5273
                           virTypedParameterPtr params,
                           int nparams,
                           unsigned int flags)
{
5274 5275 5276
    if (virNodeSetMemoryParametersEnsureACL(conn) < 0)
        return -1;

5277
    return virHostMemSetParameters(params, nparams, flags);
5278 5279 5280 5281
}


static int
5282
lxcNodeGetCPUMap(virConnectPtr conn,
5283 5284 5285 5286
                 unsigned char **cpumap,
                 unsigned int *online,
                 unsigned int flags)
{
5287 5288 5289
    if (virNodeGetCPUMapEnsureACL(conn) < 0)
        return -1;

5290
    return virHostCPUGetMap(cpumap, online, flags);
5291 5292
}

5293 5294

static int
5295
lxcNodeSuspendForDuration(virConnectPtr conn,
5296 5297 5298 5299
                          unsigned int target,
                          unsigned long long duration,
                          unsigned int flags)
{
5300 5301 5302
    if (virNodeSuspendForDurationEnsureACL(conn) < 0)
        return -1;

5303
    return virNodeSuspend(target, duration, flags);
5304 5305 5306
}


5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334
static int
lxcDomainSetMetadata(virDomainPtr dom,
                      int type,
                      const char *metadata,
                      const char *key,
                      const char *uri,
                      unsigned int flags)
{
    virLXCDriverPtr driver = dom->conn->privateData;
    virDomainObjPtr vm;
    virLXCDriverConfigPtr cfg = NULL;
    virCapsPtr caps = NULL;
    int ret = -1;

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

    if (!(vm = lxcDomObjFromDomain(dom)))
        return -1;

    cfg = virLXCDriverGetConfig(driver);

    if (virDomainSetMetadataEnsureACL(dom->conn, vm->def, flags) < 0)
        goto cleanup;

    if (!(caps = virLXCDriverGetCapabilities(driver, false)))
        goto cleanup;

5335 5336 5337
    if (virLXCDomainObjBeginJob(driver, vm, LXC_JOB_MODIFY) < 0)
        goto cleanup;

5338
    ret = virDomainObjSetMetadata(vm, type, metadata, key, uri, caps,
5339 5340
                                  driver->xmlopt, cfg->stateDir,
                                  cfg->configDir, flags);
5341

5342 5343 5344 5345 5346 5347
    if (ret == 0) {
        virObjectEventPtr ev = NULL;
        ev = virDomainEventMetadataChangeNewFromObj(vm, type, uri);
        virObjectEventStateQueue(driver->domainEventState, ev);
    }

5348
    virLXCDomainObjEndJob(driver, vm);
5349

5350
 cleanup:
5351
    virDomainObjEndAPI(&vm);
5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372
    virObjectUnref(caps);
    virObjectUnref(cfg);
    return ret;
}


static char *
lxcDomainGetMetadata(virDomainPtr dom,
                      int type,
                      const char *uri,
                      unsigned int flags)
{
    virDomainObjPtr vm;
    char *ret = NULL;

    if (!(vm = lxcDomObjFromDomain(dom)))
        return NULL;

    if (virDomainGetMetadataEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

5373
    ret = virDomainObjGetMetadata(vm, type, uri, flags);
5374

5375
 cleanup:
5376
    virDomainObjEndAPI(&vm);
5377 5378 5379 5380
    return ret;
}


5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419
static int
lxcDomainGetCPUStats(virDomainPtr dom,
                     virTypedParameterPtr params,
                     unsigned int nparams,
                     int start_cpu,
                     unsigned int ncpus,
                     unsigned int flags)
{
    virDomainObjPtr vm = NULL;
    int ret = -1;
    virLXCDomainObjPrivatePtr priv;

    virCheckFlags(VIR_TYPED_PARAM_STRING_OKAY, -1);

    if (!(vm = lxcDomObjFromDomain(dom)))
        return ret;

    priv = vm->privateData;

    if (virDomainGetCPUStatsEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

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

    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPUACCT)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("cgroup CPUACCT controller is not mounted"));
        goto cleanup;
    }

    if (start_cpu == -1)
        ret = virCgroupGetDomainTotalCpuStats(priv->cgroup,
                                              params, nparams);
    else
        ret = virCgroupGetPercpuStats(priv->cgroup, params,
5420
                                      nparams, start_cpu, ncpus, NULL);
5421
 cleanup:
5422
    virDomainObjEndAPI(&vm);
5423 5424 5425 5426
    return ret;
}


5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440
static int
lxcNodeGetFreePages(virConnectPtr conn,
                    unsigned int npages,
                    unsigned int *pages,
                    int startCell,
                    unsigned int cellCount,
                    unsigned long long *counts,
                    unsigned int flags)
{
    virCheckFlags(0, -1);

    if (virNodeGetFreePagesEnsureACL(conn) < 0)
        return -1;

5441
    return virHostMemGetFreePages(npages, pages, startCell, cellCount, counts);
5442 5443 5444
}


5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460
static int
lxcNodeAllocPages(virConnectPtr conn,
                  unsigned int npages,
                  unsigned int *pageSizes,
                  unsigned long long *pageCounts,
                  int startCell,
                  unsigned int cellCount,
                  unsigned int flags)
{
    bool add = !(flags & VIR_NODE_ALLOC_PAGES_SET);

    virCheckFlags(VIR_NODE_ALLOC_PAGES_SET, -1);

    if (virNodeAllocPagesEnsureACL(conn) < 0)
        return -1;

5461 5462
    return virHostMemAllocPages(npages, pageSizes, pageCounts,
                                startCell, cellCount, add);
5463 5464 5465
}


5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482
static int
lxcDomainHasManagedSaveImage(virDomainPtr dom, unsigned int flags)
{
    virDomainObjPtr vm = NULL;
    int ret = -1;

    virCheckFlags(0, -1);

    if (!(vm = lxcDomObjFromDomain(dom)))
        return ret;

    if (virDomainHasManagedSaveImageEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
5483
    virDomainObjEndAPI(&vm);
5484 5485 5486 5487
    return ret;
}


D
Daniel Veillard 已提交
5488
/* Function Tables */
5489
static virHypervisorDriver lxcHypervisorDriver = {
5490
    .name = LXC_DRIVER_NAME,
5491 5492
    .connectOpen = lxcConnectOpen, /* 0.4.2 */
    .connectClose = lxcConnectClose, /* 0.4.2 */
5493
    .connectSupportsFeature = lxcConnectSupportsFeature, /* 1.2.2 */
5494
    .connectGetVersion = lxcConnectGetVersion, /* 0.4.6 */
5495
    .connectGetHostname = lxcConnectGetHostname, /* 0.6.3 */
5496
    .connectGetSysinfo = lxcConnectGetSysinfo, /* 1.0.5 */
5497
    .nodeGetInfo = lxcNodeGetInfo, /* 0.6.5 */
5498 5499 5500 5501 5502
    .connectGetCapabilities = lxcConnectGetCapabilities, /* 0.6.5 */
    .connectListDomains = lxcConnectListDomains, /* 0.4.2 */
    .connectNumOfDomains = lxcConnectNumOfDomains, /* 0.4.2 */
    .connectListAllDomains = lxcConnectListAllDomains, /* 0.9.13 */
    .domainCreateXML = lxcDomainCreateXML, /* 0.4.4 */
5503
    .domainCreateXMLWithFiles = lxcDomainCreateXMLWithFiles, /* 1.1.1 */
5504 5505 5506 5507 5508 5509
    .domainLookupByID = lxcDomainLookupByID, /* 0.4.2 */
    .domainLookupByUUID = lxcDomainLookupByUUID, /* 0.4.2 */
    .domainLookupByName = lxcDomainLookupByName, /* 0.4.2 */
    .domainSuspend = lxcDomainSuspend, /* 0.7.2 */
    .domainResume = lxcDomainResume, /* 0.7.2 */
    .domainDestroy = lxcDomainDestroy, /* 0.4.4 */
5510
    .domainDestroyFlags = lxcDomainDestroyFlags, /* 0.9.4 */
5511
    .domainGetOSType = lxcDomainGetOSType, /* 0.4.2 */
5512 5513 5514
    .domainGetMaxMemory = lxcDomainGetMaxMemory, /* 0.7.2 */
    .domainSetMaxMemory = lxcDomainSetMaxMemory, /* 0.7.2 */
    .domainSetMemory = lxcDomainSetMemory, /* 0.7.2 */
5515
    .domainSetMemoryFlags = lxcDomainSetMemoryFlags, /* 1.2.7 */
5516 5517
    .domainSetMemoryParameters = lxcDomainSetMemoryParameters, /* 0.8.5 */
    .domainGetMemoryParameters = lxcDomainGetMemoryParameters, /* 0.8.5 */
5518 5519
    .domainSetBlkioParameters = lxcDomainSetBlkioParameters, /* 0.9.8 */
    .domainGetBlkioParameters = lxcDomainGetBlkioParameters, /* 0.9.8 */
5520 5521
    .domainGetInfo = lxcDomainGetInfo, /* 0.4.2 */
    .domainGetState = lxcDomainGetState, /* 0.9.2 */
5522 5523
    .domainGetSecurityLabel = lxcDomainGetSecurityLabel, /* 0.9.10 */
    .nodeGetSecurityModel = lxcNodeGetSecurityModel, /* 0.9.10 */
5524
    .domainGetXMLDesc = lxcDomainGetXMLDesc, /* 0.4.2 */
5525
    .connectDomainXMLFromNative = lxcConnectDomainXMLFromNative, /* 1.2.2 */
5526 5527 5528 5529
    .connectListDefinedDomains = lxcConnectListDefinedDomains, /* 0.4.2 */
    .connectNumOfDefinedDomains = lxcConnectNumOfDefinedDomains, /* 0.4.2 */
    .domainCreate = lxcDomainCreate, /* 0.4.4 */
    .domainCreateWithFlags = lxcDomainCreateWithFlags, /* 0.8.2 */
5530
    .domainCreateWithFiles = lxcDomainCreateWithFiles, /* 1.1.1 */
5531
    .domainDefineXML = lxcDomainDefineXML, /* 0.4.2 */
5532
    .domainDefineXMLFlags = lxcDomainDefineXMLFlags, /* 1.2.12 */
5533
    .domainUndefine = lxcDomainUndefine, /* 0.4.2 */
5534
    .domainUndefineFlags = lxcDomainUndefineFlags, /* 0.9.4 */
5535 5536 5537 5538 5539
    .domainAttachDevice = lxcDomainAttachDevice, /* 1.0.1 */
    .domainAttachDeviceFlags = lxcDomainAttachDeviceFlags, /* 1.0.1 */
    .domainDetachDevice = lxcDomainDetachDevice, /* 1.0.1 */
    .domainDetachDeviceFlags = lxcDomainDetachDeviceFlags, /* 1.0.1 */
    .domainUpdateDeviceFlags = lxcDomainUpdateDeviceFlags, /* 1.0.1 */
5540 5541
    .domainGetAutostart = lxcDomainGetAutostart, /* 0.7.0 */
    .domainSetAutostart = lxcDomainSetAutostart, /* 0.7.0 */
5542 5543 5544 5545 5546
    .domainGetSchedulerType = lxcDomainGetSchedulerType, /* 0.5.0 */
    .domainGetSchedulerParameters = lxcDomainGetSchedulerParameters, /* 0.5.0 */
    .domainGetSchedulerParametersFlags = lxcDomainGetSchedulerParametersFlags, /* 0.9.2 */
    .domainSetSchedulerParameters = lxcDomainSetSchedulerParameters, /* 0.5.0 */
    .domainSetSchedulerParametersFlags = lxcDomainSetSchedulerParametersFlags, /* 0.9.2 */
5547 5548
    .domainBlockStats = lxcDomainBlockStats, /* 1.2.2 */
    .domainBlockStatsFlags = lxcDomainBlockStatsFlags, /* 1.2.2 */
5549
    .domainInterfaceStats = lxcDomainInterfaceStats, /* 0.7.3 */
5550
    .domainMemoryStats = lxcDomainMemoryStats, /* 1.2.2 */
5551 5552 5553 5554 5555
    .nodeGetCPUStats = lxcNodeGetCPUStats, /* 0.9.3 */
    .nodeGetMemoryStats = lxcNodeGetMemoryStats, /* 0.9.3 */
    .nodeGetCellsFreeMemory = lxcNodeGetCellsFreeMemory, /* 0.6.5 */
    .nodeGetFreeMemory = lxcNodeGetFreeMemory, /* 0.6.5 */
    .nodeGetCPUMap = lxcNodeGetCPUMap, /* 1.0.0 */
5556 5557 5558 5559
    .connectDomainEventRegister = lxcConnectDomainEventRegister, /* 0.7.0 */
    .connectDomainEventDeregister = lxcConnectDomainEventDeregister, /* 0.7.0 */
    .connectIsEncrypted = lxcConnectIsEncrypted, /* 0.7.3 */
    .connectIsSecure = lxcConnectIsSecure, /* 0.7.3 */
5560 5561 5562
    .domainIsActive = lxcDomainIsActive, /* 0.7.3 */
    .domainIsPersistent = lxcDomainIsPersistent, /* 0.7.3 */
    .domainIsUpdated = lxcDomainIsUpdated, /* 0.8.6 */
5563 5564
    .connectDomainEventRegisterAny = lxcConnectDomainEventRegisterAny, /* 0.8.0 */
    .connectDomainEventDeregisterAny = lxcConnectDomainEventDeregisterAny, /* 0.8.0 */
5565
    .domainOpenConsole = lxcDomainOpenConsole, /* 0.8.6 */
5566
    .connectIsAlive = lxcConnectIsAlive, /* 0.9.8 */
5567
    .nodeSuspendForDuration = lxcNodeSuspendForDuration, /* 0.9.8 */
5568 5569
    .domainSetMetadata = lxcDomainSetMetadata, /* 1.1.3 */
    .domainGetMetadata = lxcDomainGetMetadata, /* 1.1.3 */
5570
    .domainGetCPUStats = lxcDomainGetCPUStats, /* 1.2.2 */
5571 5572
    .nodeGetMemoryParameters = lxcNodeGetMemoryParameters, /* 0.10.2 */
    .nodeSetMemoryParameters = lxcNodeSetMemoryParameters, /* 0.10.2 */
5573
    .domainSendProcessSignal = lxcDomainSendProcessSignal, /* 1.0.1 */
5574 5575 5576
    .domainShutdown = lxcDomainShutdown, /* 1.0.1 */
    .domainShutdownFlags = lxcDomainShutdownFlags, /* 1.0.1 */
    .domainReboot = lxcDomainReboot, /* 1.0.1 */
5577
    .domainLxcOpenNamespace = lxcDomainLxcOpenNamespace, /* 1.0.2 */
5578
    .nodeGetFreePages = lxcNodeGetFreePages, /* 1.2.6 */
5579
    .nodeAllocPages = lxcNodeAllocPages, /* 1.2.9 */
5580
    .domainHasManagedSaveImage = lxcDomainHasManagedSaveImage, /* 1.2.13 */
D
Daniel Veillard 已提交
5581 5582
};

5583 5584 5585 5586
static virConnectDriver lxcConnectDriver = {
    .hypervisorDriver = &lxcHypervisorDriver,
};

5587
static virStateDriver lxcStateDriver = {
5588
    .name = LXC_DRIVER_NAME,
5589
    .stateInitialize = lxcStateInitialize,
5590
    .stateAutoStart = lxcStateAutoStart,
5591 5592
    .stateCleanup = lxcStateCleanup,
    .stateReload = lxcStateReload,
5593 5594
};

D
Daniel Veillard 已提交
5595 5596
int lxcRegister(void)
{
5597 5598
    if (virRegisterConnectDriver(&lxcConnectDriver,
                                 true) < 0)
5599 5600 5601
        return -1;
    if (virRegisterStateDriver(&lxcStateDriver) < 0)
        return -1;
D
Daniel Veillard 已提交
5602 5603
    return 0;
}