qemu_cgroup.c 28.9 KB
Newer Older
1 2 3
/*
 * qemu_cgroup.c: QEMU cgroup management
 *
E
Eric Blake 已提交
4
 * Copyright (C) 2006-2013 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include "qemu_cgroup.h"
27
#include "qemu_domain.h"
28
#include "qemu_process.h"
29
#include "vircgroup.h"
30
#include "virlog.h"
31
#include "viralloc.h"
32
#include "virerror.h"
33
#include "domain_audit.h"
34
#include "virscsi.h"
35
#include "virstring.h"
36
#include "virfile.h"
37 38 39 40 41 42 43

#define VIR_FROM_THIS VIR_FROM_QEMU

static const char *const defaultDeviceACL[] = {
    "/dev/null", "/dev/full", "/dev/zero",
    "/dev/random", "/dev/urandom",
    "/dev/ptmx", "/dev/kvm", "/dev/kqemu",
44
    "/dev/rtc", "/dev/hpet", "/dev/vfio/vfio",
45 46 47 48 49
    NULL,
};
#define DEVICE_PTY_MAJOR 136
#define DEVICE_SND_MAJOR 116

50
static int
51
qemuSetupDiskPathAllow(virDomainDiskDefPtr disk,
52 53 54
                       const char *path,
                       size_t depth ATTRIBUTE_UNUSED,
                       void *opaque)
55
{
56 57
    virDomainObjPtr vm = opaque;
    qemuDomainObjPrivatePtr priv = vm->privateData;
58
    int ret;
59 60

    VIR_DEBUG("Process path %s for disk", path);
61 62 63
    ret = virCgroupAllowDevicePath(priv->cgroup, path,
                                   (disk->readonly ? VIR_CGROUP_DEVICE_READ
                                    : VIR_CGROUP_DEVICE_RW));
64
    virDomainAuditCgroupPath(vm, priv->cgroup, "allow", path,
65 66 67 68 69 70 71 72
                             disk->readonly ? "r" : "rw", ret == 0);

    /* Get this for root squash NFS */
    if (ret < 0 &&
        virLastErrorIsSystemErrno(EACCES)) {
        VIR_DEBUG("Ignoring EACCES for %s", path);
        virResetLastError();
        ret = 0;
73
    }
74
    return ret;
75 76 77
}


78 79 80
int
qemuSetupDiskCgroup(virDomainObjPtr vm,
                    virDomainDiskDefPtr disk)
81
{
82 83 84 85 86 87
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!virCgroupHasController(priv->cgroup,
                                VIR_CGROUP_CONTROLLER_DEVICES))
        return 0;

88
    return virDomainDiskDefForeachPath(disk, true, qemuSetupDiskPathAllow, vm);
89 90 91
}


92 93 94 95 96
static int
qemuTeardownDiskPathDeny(virDomainDiskDefPtr disk ATTRIBUTE_UNUSED,
                         const char *path,
                         size_t depth ATTRIBUTE_UNUSED,
                         void *opaque)
97
{
98 99
    virDomainObjPtr vm = opaque;
    qemuDomainObjPrivatePtr priv = vm->privateData;
100
    int ret;
101 102

    VIR_DEBUG("Process path %s for disk", path);
103 104 105 106 107 108 109 110 111 112
    ret = virCgroupDenyDevicePath(priv->cgroup, path,
                                  VIR_CGROUP_DEVICE_RWM);
    virDomainAuditCgroupPath(vm, priv->cgroup, "deny", path, "rwm", ret == 0);

    /* Get this for root squash NFS */
    if (ret < 0 &&
        virLastErrorIsSystemErrno(EACCES)) {
        VIR_DEBUG("Ignoring EACCES for %s", path);
        virResetLastError();
        ret = 0;
113
    }
114
    return ret;
115 116 117
}


118 119 120
int
qemuTeardownDiskCgroup(virDomainObjPtr vm,
                       virDomainDiskDefPtr disk)
121
{
122 123 124 125 126 127
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!virCgroupHasController(priv->cgroup,
                                VIR_CGROUP_CONTROLLER_DEVICES))
        return 0;

128 129 130
    return virDomainDiskDefForeachPath(disk,
                                       true,
                                       qemuTeardownDiskPathDeny,
131
                                       vm);
132 133
}

134
static int
135
qemuSetupChrSourceCgroup(virDomainDefPtr def ATTRIBUTE_UNUSED,
136
                         virDomainChrSourceDefPtr dev,
137
                         void *opaque)
138
{
139 140
    virDomainObjPtr vm = opaque;
    qemuDomainObjPrivatePtr priv = vm->privateData;
141
    int ret;
142

143
    if (dev->type != VIR_DOMAIN_CHR_TYPE_DEV)
144 145
        return 0;

146
    VIR_DEBUG("Process path '%s' for device", dev->data.file.path);
147

148 149
    ret = virCgroupAllowDevicePath(priv->cgroup, dev->data.file.path,
                                   VIR_CGROUP_DEVICE_RW);
150
    virDomainAuditCgroupPath(vm, priv->cgroup, "allow",
151
                             dev->data.file.path, "rw", ret == 0);
152

153
    return ret;
154 155
}

156 157 158 159 160
static int
qemuSetupChardevCgroup(virDomainDefPtr def,
                       virDomainChrDefPtr dev,
                       void *opaque)
{
161
    return qemuSetupChrSourceCgroup(def, &dev->source, opaque);
162 163 164 165 166 167
}


static int
qemuSetupTPMCgroup(virDomainDefPtr def,
                   virDomainTPMDefPtr dev,
168
                   void *opaque)
169
{
170
    int ret = 0;
171 172 173

    switch (dev->type) {
    case VIR_DOMAIN_TPM_TYPE_PASSTHROUGH:
174 175
        ret = qemuSetupChrSourceCgroup(def, &dev->data.passthrough.source,
                                       opaque);
176 177 178 179 180
        break;
    case VIR_DOMAIN_TPM_TYPE_LAST:
        break;
    }

181
    return ret;
182 183
}

184

185 186 187 188
static int
qemuSetupHostUsbDeviceCgroup(virUSBDevicePtr dev ATTRIBUTE_UNUSED,
                             const char *path,
                             void *opaque)
189
{
190 191
    virDomainObjPtr vm = opaque;
    qemuDomainObjPrivatePtr priv = vm->privateData;
192
    int ret;
193 194

    VIR_DEBUG("Process path '%s' for USB device", path);
195 196 197
    ret = virCgroupAllowDevicePath(priv->cgroup, path,
                                   VIR_CGROUP_DEVICE_RW);
    virDomainAuditCgroupPath(vm, priv->cgroup, "allow", path, "rw", ret == 0);
198

199
    return ret;
200 201
}

202 203 204 205 206 207 208
static int
qemuSetupHostScsiDeviceCgroup(virSCSIDevicePtr dev ATTRIBUTE_UNUSED,
                              const char *path,
                              void *opaque)
{
    virDomainObjPtr vm = opaque;
    qemuDomainObjPrivatePtr priv = vm->privateData;
209
    int ret;
210 211 212

    VIR_DEBUG("Process path '%s' for SCSI device", path);

213 214 215 216
    ret = virCgroupAllowDevicePath(priv->cgroup, path,
                                   virSCSIDeviceGetReadonly(dev) ?
                                   VIR_CGROUP_DEVICE_READ :
                                   VIR_CGROUP_DEVICE_RW);
217 218

    virDomainAuditCgroupPath(vm, priv->cgroup, "allow", path,
219
                             virSCSIDeviceGetReadonly(dev) ? "r" : "rw", ret == 0);
220

221
    return ret;
222
}
223

224 225 226 227 228 229 230
int
qemuSetupHostdevCGroup(virDomainObjPtr vm,
                       virDomainHostdevDefPtr dev)
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virPCIDevicePtr pci = NULL;
231
    virUSBDevicePtr usb = NULL;
232
    virSCSIDevicePtr scsi = NULL;
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    char *path = NULL;

    /* currently this only does something for PCI devices using vfio
     * for device assignment, but it is called for *all* hostdev
     * devices.
     */

    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES))
        return 0;

    if (dev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS) {

        switch (dev->source.subsys.type) {
        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI:
            if (dev->source.subsys.u.pci.backend
248
                == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
249
                int rv;
250 251 252 253 254 255 256 257

                pci = virPCIDeviceNew(dev->source.subsys.u.pci.addr.domain,
                                      dev->source.subsys.u.pci.addr.bus,
                                      dev->source.subsys.u.pci.addr.slot,
                                      dev->source.subsys.u.pci.addr.function);
                if (!pci)
                    goto cleanup;

258
                if (!(path = virPCIDeviceGetIOMMUGroupDev(pci)))
259 260 261
                    goto cleanup;

                VIR_DEBUG("Cgroup allow %s for PCI device assignment", path);
262
                rv = virCgroupAllowDevicePath(priv->cgroup, path,
263 264
                                              VIR_CGROUP_DEVICE_RW);
                virDomainAuditCgroupPath(vm, priv->cgroup,
265 266
                                         "allow", path, "rw", rv == 0);
                if (rv < 0)
267 268 269
                    goto cleanup;
            }
            break;
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291

        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB:
            /* NB: hostdev->missing wasn't previously checked in the
             * case of hotplug, only when starting a domain. Now it is
             * always checked, and the cgroup setup skipped if true.
             */
            if (dev->missing)
                break;
            if ((usb = virUSBDeviceNew(dev->source.subsys.u.usb.bus,
                                       dev->source.subsys.u.usb.device,
                                       NULL)) == NULL) {
                goto cleanup;
            }

            /* oddly, qemuSetupHostUsbDeviceCgroup doesn't ever
             * reference the usb object we just created
             */
            if (virUSBDeviceFileIterate(usb, qemuSetupHostUsbDeviceCgroup,
                                        vm) < 0) {
                goto cleanup;
            }
            break;
292 293 294 295 296 297 298 299 300 301 302 303 304 305

        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI:
            if ((scsi = virSCSIDeviceNew(dev->source.subsys.u.scsi.adapter,
                                         dev->source.subsys.u.scsi.bus,
                                         dev->source.subsys.u.scsi.target,
                                         dev->source.subsys.u.scsi.unit,
                                         dev->readonly)) == NULL)
                goto cleanup;

            if (virSCSIDeviceFileIterate(scsi,
                                         qemuSetupHostScsiDeviceCgroup,
                                         vm) < 0)
                goto cleanup;

306 307 308 309 310 311 312 313
        default:
            break;
        }
    }

    ret = 0;
cleanup:
    virPCIDeviceFree(pci);
314
    virUSBDeviceFree(usb);
315
    virSCSIDeviceFree(scsi);
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
    VIR_FREE(path);
    return ret;
}

int
qemuTeardownHostdevCgroup(virDomainObjPtr vm,
                       virDomainHostdevDefPtr dev)
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virPCIDevicePtr pci = NULL;
    char *path = NULL;

    /* currently this only does something for PCI devices using vfio
     * for device assignment, but it is called for *all* hostdev
     * devices.
     */

    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES))
        return 0;

    if (dev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS) {

        switch (dev->source.subsys.type) {
        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI:
            if (dev->source.subsys.u.pci.backend
342
                == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
343
                int rv;
344 345 346 347 348 349 350 351

                pci = virPCIDeviceNew(dev->source.subsys.u.pci.addr.domain,
                                      dev->source.subsys.u.pci.addr.bus,
                                      dev->source.subsys.u.pci.addr.slot,
                                      dev->source.subsys.u.pci.addr.function);
                if (!pci)
                    goto cleanup;

352
                if (!(path = virPCIDeviceGetIOMMUGroupDev(pci)))
353 354 355
                    goto cleanup;

                VIR_DEBUG("Cgroup deny %s for PCI device assignment", path);
356
                rv = virCgroupDenyDevicePath(priv->cgroup, path,
357 358
                                             VIR_CGROUP_DEVICE_RWM);
                virDomainAuditCgroupPath(vm, priv->cgroup,
359 360
                                         "deny", path, "rwm", rv == 0);
                if (rv < 0)
361 362 363
                    goto cleanup;
            }
            break;
364 365 366
        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB:
            /* nothing to tear down for USB */
            break;
367 368 369 370 371 372 373 374 375 376 377 378
        default:
            break;
        }
    }

    ret = 0;
cleanup:
    virPCIDeviceFree(pci);
    VIR_FREE(path);
    return ret;
}

379 380 381 382
static int
qemuSetupBlkioCgroup(virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
383
    size_t i;
384 385 386 387 388 389 390 391 392 393 394 395

    if (!virCgroupHasController(priv->cgroup,
                                VIR_CGROUP_CONTROLLER_BLKIO)) {
        if (vm->def->blkio.weight || vm->def->blkio.ndevices) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Block I/O tuning is not available on this host"));
            return -1;
        } else {
            return 0;
        }
    }

396 397 398
    if (vm->def->blkio.weight != 0 &&
        virCgroupSetBlkioWeight(priv->cgroup, vm->def->blkio.weight) < 0)
        return -1;
399 400 401

    if (vm->def->blkio.ndevices) {
        for (i = 0; i < vm->def->blkio.ndevices; i++) {
402 403
            virBlkioDevicePtr dev = &vm->def->blkio.devices[i];
            if (!dev->weight)
404
                continue;
405 406
            if (virCgroupSetBlkioDeviceWeight(priv->cgroup, dev->path,
                                              dev->weight) < 0)
407 408 409 410 411 412 413
                return -1;
        }
    }

    return 0;
}

414

415 416 417 418 419
static int
qemuSetupMemoryCgroup(virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

E
Eric Blake 已提交
420
    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_MEMORY)) {
421 422 423 424 425 426
        if (vm->def->mem.hard_limit != 0 ||
            vm->def->mem.soft_limit != 0 ||
            vm->def->mem.swap_hard_limit != 0) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Memory cgroup is not available on this host"));
            return -1;
O
Osier Yang 已提交
427 428
        } else {
            return 0;
429 430 431
        }
    }

432 433
    if (vm->def->mem.hard_limit != 0 &&
        virCgroupSetMemoryHardLimit(priv->cgroup, vm->def->mem.hard_limit) < 0)
434 435
        return -1;

436 437 438 439 440 441 442
    if (vm->def->mem.soft_limit != 0 &&
        virCgroupSetMemorySoftLimit(priv->cgroup, vm->def->mem.soft_limit) < 0)
        return -1;

    if (vm->def->mem.swap_hard_limit != 0 &&
        virCgroupSetMemSwapHardLimit(priv->cgroup, vm->def->mem.swap_hard_limit) < 0)
        return -1;
443 444 445 446 447

    return 0;
}


448 449 450 451 452 453 454
static int
qemuSetupDevicesCgroup(virQEMUDriverPtr driver,
                       virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virQEMUDriverConfigPtr cfg = NULL;
    const char *const *deviceACL = NULL;
455
    int rv = -1;
456
    int ret = -1;
457
    size_t i;
458 459 460 461

    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_DEVICES))
        return 0;

462 463 464 465 466
    rv = virCgroupDenyAllDevices(priv->cgroup);
    virDomainAuditCgroup(vm, priv->cgroup, "deny", "all", rv == 0);
    if (rv < 0) {
        if (virLastErrorIsSystemErrno(EPERM)) {
            virResetLastError();
467 468 469 470 471 472 473
            VIR_WARN("Group devices ACL is not accessible, disabling whitelisting");
            return 0;
        }

        goto cleanup;
    }

474
    for (i = 0; i < vm->def->ndisks; i++) {
475 476 477 478
        if (qemuSetupDiskCgroup(vm, vm->def->disks[i]) < 0)
            goto cleanup;
    }

479
    rv = virCgroupAllowDeviceMajor(priv->cgroup, 'c', DEVICE_PTY_MAJOR,
480 481
                                   VIR_CGROUP_DEVICE_RW);
    virDomainAuditCgroupMajor(vm, priv->cgroup, "allow", DEVICE_PTY_MAJOR,
482 483
                              "pty", "rw", rv == 0);
    if (rv < 0)
484 485 486 487 488 489 490 491
        goto cleanup;

    cfg = virQEMUDriverGetConfig(driver);
    deviceACL = cfg->cgroupDeviceACL ?
                (const char *const *)cfg->cgroupDeviceACL :
                defaultDeviceACL;

    if (vm->def->nsounds &&
492
        ((!vm->def->ngraphics && cfg->nogfxAllowHostAudio) ||
493 494
         (vm->def->graphics &&
          ((vm->def->graphics[0]->type == VIR_DOMAIN_GRAPHICS_TYPE_VNC &&
495
           cfg->vncAllowHostAudio) ||
496
           (vm->def->graphics[0]->type == VIR_DOMAIN_GRAPHICS_TYPE_SDL))))) {
497
        rv = virCgroupAllowDeviceMajor(priv->cgroup, 'c', DEVICE_SND_MAJOR,
498 499
                                       VIR_CGROUP_DEVICE_RW);
        virDomainAuditCgroupMajor(vm, priv->cgroup, "allow", DEVICE_SND_MAJOR,
500 501
                                  "sound", "rw", rv == 0);
        if (rv < 0)
502 503 504
            goto cleanup;
    }

505
    for (i = 0; deviceACL[i] != NULL; i++) {
506 507
        if (!virFileExists(deviceACL[i])) {
            VIR_DEBUG("Ignoring non-existant device %s", deviceACL[i]);
508 509 510
            continue;
        }

511
        rv = virCgroupAllowDevicePath(priv->cgroup, deviceACL[i],
512
                                      VIR_CGROUP_DEVICE_RW);
513 514 515
        virDomainAuditCgroupPath(vm, priv->cgroup, "allow", deviceACL[i], "rw", rv == 0);
        if (rv < 0 &&
            !virLastErrorIsSystemErrno(ENOENT))
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
            goto cleanup;
    }

    if (virDomainChrDefForeach(vm->def,
                               true,
                               qemuSetupChardevCgroup,
                               vm) < 0)
        goto cleanup;

    if (vm->def->tpm &&
        (qemuSetupTPMCgroup(vm->def,
                            vm->def->tpm,
                            vm) < 0))
        goto cleanup;

    for (i = 0; i < vm->def->nhostdevs; i++) {
        if (qemuSetupHostdevCGroup(vm, vm->def->hostdevs[i]) < 0)
            goto cleanup;
    }

    ret = 0;
cleanup:
    virObjectUnref(cfg);
    return ret;
}


543 544
static int
qemuSetupCpusetCgroup(virDomainObjPtr vm,
545 546
                      virBitmapPtr nodemask,
                      virCapsPtr caps)
547 548
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
549 550
    char *mem_mask = NULL;
    char *cpu_mask = NULL;
551 552 553 554 555 556 557 558 559 560 561 562
    int ret = -1;

    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPUSET))
        return 0;

    if ((vm->def->numatune.memory.nodemask ||
         (vm->def->numatune.memory.placement_mode ==
          VIR_NUMA_TUNE_MEM_PLACEMENT_MODE_AUTO)) &&
        vm->def->numatune.memory.mode == VIR_DOMAIN_NUMATUNE_MEM_STRICT) {

        if (vm->def->numatune.memory.placement_mode ==
            VIR_NUMA_TUNE_MEM_PLACEMENT_MODE_AUTO)
563
            mem_mask = virBitmapFormat(nodemask);
564
        else
565
            mem_mask = virBitmapFormat(vm->def->numatune.memory.nodemask);
566

567
        if (!mem_mask) {
568 569 570 571 572
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("failed to convert memory nodemask"));
            goto cleanup;
        }

573
        if (virCgroupSetCpusetMems(priv->cgroup, mem_mask) < 0)
574 575 576
            goto cleanup;
    }

577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
    if (vm->def->cpumask ||
        (vm->def->placement_mode == VIR_DOMAIN_CPU_PLACEMENT_MODE_AUTO)) {

        if (vm->def->placement_mode == VIR_DOMAIN_CPU_PLACEMENT_MODE_AUTO) {
            virBitmapPtr cpumap;
            if (!(cpumap = virCapabilitiesGetCpusForNodemask(caps, nodemask)))
                goto cleanup;
            cpu_mask = virBitmapFormat(cpumap);
            virBitmapFree(cpumap);
        } else {
            cpu_mask = virBitmapFormat(vm->def->cpumask);
        }

        if (!cpu_mask) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("failed to convert cpu mask"));
            goto cleanup;
        }

596
        if (virCgroupSetCpusetCpus(priv->cgroup, cpu_mask) < 0)
597 598 599
            goto cleanup;
    }

600 601
    ret = 0;
cleanup:
602 603
    VIR_FREE(mem_mask);
    VIR_FREE(cpu_mask);
604 605 606 607
    return ret;
}


608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
static int
qemuSetupCpuCgroup(virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPU)) {
       if (vm->def->cputune.shares) {
           virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                          _("CPU tuning is not available on this host"));
           return -1;
       } else {
           return 0;
       }
    }

623 624 625
    if (vm->def->cputune.shares &&
        virCgroupSetCpuShares(priv->cgroup, vm->def->cputune.shares) < 0)
        return -1;
626 627 628 629 630

    return 0;
}


631
static int
632
qemuInitCgroup(virQEMUDriverPtr driver,
633
               virDomainObjPtr vm)
634
{
635
    int ret = -1;
636 637 638
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);

639 640 641
    if (!cfg->privileged)
        goto done;

642 643 644
    if (!virCgroupAvailable())
        goto done;

645 646
    virCgroupFree(&priv->cgroup);

647
    if (!vm->def->resource) {
648 649
        virDomainResourceDefPtr res;

650
        if (VIR_ALLOC(res) < 0)
651
            goto cleanup;
652

653
        if (VIR_STRDUP(res->partition, "/machine") < 0) {
654 655 656 657 658
            VIR_FREE(res);
            goto cleanup;
        }

        vm->def->resource = res;
659 660
    }

661 662 663 664 665 666
    if (vm->def->resource->partition[0] != '/') {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Resource partition '%s' must start with '/'"),
                       vm->def->resource->partition);
        goto cleanup;
    }
667 668 669 670 671 672 673 674 675 676 677

    if (virCgroupNewMachine(vm->def->name,
                            "qemu",
                            cfg->privileged,
                            vm->def->uuid,
                            NULL,
                            vm->pid,
                            false,
                            vm->def->resource->partition,
                            cfg->cgroupControllers,
                            &priv->cgroup) < 0) {
678 679
        if (virCgroupNewIgnoreError())
            goto done;
680

681 682
        goto cleanup;
    }
683

684 685 686 687 688 689
done:
    ret = 0;
cleanup:
    virObjectUnref(cfg);
    return ret;
}
690

691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707

int
qemuConnectCgroup(virQEMUDriverPtr driver,
                  virDomainObjPtr vm)
{
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;

    if (!cfg->privileged)
        goto done;

    if (!virCgroupAvailable())
        goto done;

    virCgroupFree(&priv->cgroup);

708 709 710
    if (virCgroupNewDetectMachine(vm->def->name,
                                  "qemu",
                                  vm->pid,
711 712 713
                                  vm->def->resource ?
                                  vm->def->resource->partition :
                                  NULL,
714
                                  cfg->cgroupControllers,
715
                                  &priv->cgroup) < 0)
716
        goto cleanup;
717 718

done:
719
    ret = 0;
720 721
cleanup:
    virObjectUnref(cfg);
722
    return ret;
723 724
}

725 726 727 728
int
qemuSetupCgroup(virQEMUDriverPtr driver,
                virDomainObjPtr vm,
                virBitmapPtr nodemask)
729
{
730
    qemuDomainObjPrivatePtr priv = vm->privateData;
731
    virCapsPtr caps = NULL;
732
    int ret = -1;
733

734 735 736 737 738 739
    if (!vm->pid) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Cannot setup cgroups until process is started"));
        return -1;
    }

740
    if (qemuInitCgroup(driver, vm) < 0)
741
        return -1;
742

743
    if (!priv->cgroup)
744
        return 0;
745

746 747 748
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

749 750
    if (qemuSetupDevicesCgroup(driver, vm) < 0)
        goto cleanup;
751

752 753
    if (qemuSetupBlkioCgroup(vm) < 0)
        goto cleanup;
754

755 756
    if (qemuSetupMemoryCgroup(vm) < 0)
        goto cleanup;
757

758 759
    if (qemuSetupCpuCgroup(vm) < 0)
        goto cleanup;
760

761
    if (qemuSetupCpusetCgroup(vm, nodemask, caps) < 0)
762
        goto cleanup;
763

764
    ret = 0;
765
cleanup:
766
    virObjectUnref(caps);
767
    return ret;
768 769
}

770 771 772 773
int
qemuSetupCgroupVcpuBW(virCgroupPtr cgroup,
                      unsigned long long period,
                      long long quota)
774 775 776 777 778 779 780 781
{
    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 */
782
        if (virCgroupGetCpuCfsPeriod(cgroup, &old_period) < 0)
783 784
            return -1;

785
        if (virCgroupSetCpuCfsPeriod(cgroup, period) < 0)
786 787 788
            return -1;
    }

789 790 791
    if (quota &&
        virCgroupSetCpuCfsQuota(cgroup, quota) < 0)
        goto error;
792 793 794

    return 0;

795
error:
796
    if (period) {
797 798 799 800 801 802
        virErrorPtr saved = virSaveLastError();
        ignore_value(virCgroupSetCpuCfsPeriod(cgroup, old_period));
        if (saved) {
            virSetError(saved);
            virFreeError(saved);
        }
803 804 805 806 807
    }

    return -1;
}

808 809 810 811 812
int
qemuSetupCgroupVcpuPin(virCgroupPtr cgroup,
                       virDomainVcpuPinDefPtr *vcpupin,
                       int nvcpupin,
                       int vcpuid)
813
{
814
    size_t i;
815 816 817

    for (i = 0; i < nvcpupin; i++) {
        if (vcpuid == vcpupin[i]->vcpuid) {
818
            return qemuSetupCgroupEmulatorPin(cgroup, vcpupin[i]->cpumask);
819 820 821
        }
    }

822 823 824
    return -1;
}

825 826 827
int
qemuSetupCgroupEmulatorPin(virCgroupPtr cgroup,
                           virBitmapPtr cpumask)
828
{
829
    int ret = -1;
830 831
    char *new_cpus = NULL;

832
    new_cpus = virBitmapFormat(cpumask);
833 834 835 836 837 838
    if (!new_cpus) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to convert cpu mask"));
        goto cleanup;
    }

839
    if (virCgroupSetCpusetCpus(cgroup, new_cpus) < 0)
840 841
        goto cleanup;

842
    ret = 0;
843 844
cleanup:
    VIR_FREE(new_cpus);
845
    return ret;
846 847
}

848 849
int
qemuSetupCgroupForVcpu(virDomainObjPtr vm)
850 851 852
{
    virCgroupPtr cgroup_vcpu = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;
853
    virDomainDefPtr def = vm->def;
854
    size_t i, j;
855 856 857
    unsigned long long period = vm->def->cputune.period;
    long long quota = vm->def->cputune.quota;

858
    if ((period || quota) &&
859
        !virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPU)) {
860 861
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("cgroup cpu is required for scheduler tuning"));
H
Hu Tao 已提交
862 863 864
        return -1;
    }

865 866 867 868
    /* We are trying to setup cgroups for CPU pinning, which can also be done
     * with virProcessInfoSetAffinity, thus the lack of cgroups is not fatal
     * here.
     */
869
    if (priv->cgroup == NULL)
870 871
        return 0;

872
    if (priv->nvcpupids == 0 || priv->vcpupids[0] == vm->pid) {
873
        /* If we don't know VCPU<->PID mapping or all vcpu runs in the same
W
Wen Congyang 已提交
874
         * thread, we cannot control each vcpu.
875
         */
876 877
        VIR_WARN("Unable to get vcpus' pids.");
        return 0;
878 879 880
    }

    for (i = 0; i < priv->nvcpupids; i++) {
881
        if (virCgroupNewVcpu(priv->cgroup, i, true, &cgroup_vcpu) < 0)
882 883 884
            goto cleanup;

        /* move the thread for vcpu to sub dir */
885
        if (virCgroupAddTask(cgroup_vcpu, priv->vcpupids[i]) < 0)
886 887 888
            goto cleanup;

        if (period || quota) {
H
Hu Tao 已提交
889 890
            if (qemuSetupCgroupVcpuBW(cgroup_vcpu, period, quota) < 0)
                goto cleanup;
891 892
        }

893
        /* Set vcpupin in cgroup if vcpupin xml is provided */
894
        if (virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPUSET)) {
M
Martin Kletzander 已提交
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
            /* find the right CPU to pin, otherwise
             * qemuSetupCgroupVcpuPin will fail. */
            for (j = 0; j < def->cputune.nvcpupin; j++) {
                if (def->cputune.vcpupin[j]->vcpuid != i)
                    continue;

                if (qemuSetupCgroupVcpuPin(cgroup_vcpu,
                                           def->cputune.vcpupin,
                                           def->cputune.nvcpupin,
                                           i) < 0)
                    goto cleanup;

                break;
            }
        }
910

911 912 913 914 915 916
        virCgroupFree(&cgroup_vcpu);
    }

    return 0;

cleanup:
917 918 919 920 921
    if (cgroup_vcpu) {
        virCgroupRemove(cgroup_vcpu);
        virCgroupFree(&cgroup_vcpu);
    }

922 923 924
    return -1;
}

925 926 927 928
int
qemuSetupCgroupForEmulator(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           virBitmapPtr nodemask)
929
{
930
    virBitmapPtr cpumask = NULL;
931
    virBitmapPtr cpumap = NULL;
932
    virCgroupPtr cgroup_emulator = NULL;
933
    virDomainDefPtr def = vm->def;
934
    qemuDomainObjPrivatePtr priv = vm->privateData;
935 936
    unsigned long long period = vm->def->cputune.emulator_period;
    long long quota = vm->def->cputune.emulator_quota;
937

938
    if ((period || quota) &&
939
        !virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPU)) {
940 941 942 943 944
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("cgroup cpu is required for scheduler tuning"));
        return -1;
    }

945
    if (priv->cgroup == NULL)
946 947
        return 0; /* Not supported, so claim success */

948
    if (virCgroupNewEmulator(priv->cgroup, true, &cgroup_emulator) < 0)
949 950
        goto cleanup;

951
    if (virCgroupMoveTask(priv->cgroup, cgroup_emulator) < 0)
952
        goto cleanup;
953

954 955 956 957 958
    if (def->placement_mode == VIR_DOMAIN_CPU_PLACEMENT_MODE_AUTO) {
        if (!(cpumap = qemuPrepareCpumap(driver, nodemask)))
            goto cleanup;
        cpumask = cpumap;
    } else if (def->cputune.emulatorpin) {
959
        cpumask = def->cputune.emulatorpin->cpumask;
960
    } else if (def->cpumask) {
961
        cpumask = def->cpumask;
962
    }
963 964

    if (cpumask) {
965 966 967
        if (virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPUSET) &&
            qemuSetupCgroupEmulatorPin(cgroup_emulator, cpumask) < 0)
            goto cleanup;
H
Hu Tao 已提交
968
    }
969

970
    if (period || quota) {
971 972 973 974
        if (virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPU) &&
            qemuSetupCgroupVcpuBW(cgroup_emulator, period,
                                  quota) < 0)
            goto cleanup;
975 976
    }

977
    virCgroupFree(&cgroup_emulator);
978
    virBitmapFree(cpumap);
979 980 981
    return 0;

cleanup:
982 983
    virBitmapFree(cpumap);

984 985 986 987 988
    if (cgroup_emulator) {
        virCgroupRemove(cgroup_emulator);
        virCgroupFree(&cgroup_emulator);
    }

989
    return -1;
990
}
991

992 993
int
qemuRemoveCgroup(virDomainObjPtr vm)
994
{
995
    qemuDomainObjPrivatePtr priv = vm->privateData;
996

997
    if (priv->cgroup == NULL)
998 999
        return 0; /* Not supported, so claim success */

1000
    return virCgroupRemove(priv->cgroup);
1001 1002
}

1003 1004
int
qemuAddToCgroup(virDomainObjPtr vm)
1005
{
1006
    qemuDomainObjPrivatePtr priv = vm->privateData;
1007

1008
    if (priv->cgroup == NULL)
1009 1010
        return 0; /* Not supported, so claim success */

1011
    return 0;
1012
}