qemu_cgroup.c 28.8 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 37 38 39 40 41 42

#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",
43
    "/dev/rtc", "/dev/hpet", "/dev/vfio/vfio",
44 45 46 47 48
    NULL,
};
#define DEVICE_PTY_MAJOR 136
#define DEVICE_SND_MAJOR 116

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

    VIR_DEBUG("Process path %s for disk", path);
60 61 62
    ret = virCgroupAllowDevicePath(priv->cgroup, path,
                                   (disk->readonly ? VIR_CGROUP_DEVICE_READ
                                    : VIR_CGROUP_DEVICE_RW));
63
    virDomainAuditCgroupPath(vm, priv->cgroup, "allow", path,
64 65 66 67 68 69 70 71
                             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;
72
    }
73
    return ret;
74 75 76
}


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

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

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


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

    VIR_DEBUG("Process path %s for disk", path);
102 103 104 105 106 107 108 109 110 111
    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;
112
    }
113
    return ret;
114 115 116
}


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

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

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

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

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

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

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

152
    return ret;
153 154
}

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


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

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

180
    return ret;
181 182
}

183

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

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

198
    return ret;
199 200
}

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

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

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

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

220
    return ret;
221
}
222

223 224 225 226 227 228 229
int
qemuSetupHostdevCGroup(virDomainObjPtr vm,
                       virDomainHostdevDefPtr dev)
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virPCIDevicePtr pci = NULL;
230
    virUSBDevicePtr usb = NULL;
231
    virSCSIDevicePtr scsi = NULL;
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
    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
247
                == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
248
                int rv;
249 250 251 252 253 254 255 256

                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;

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

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

        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;
291 292 293 294 295 296 297 298 299 300 301 302 303 304

        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;

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

    ret = 0;
cleanup:
    virPCIDeviceFree(pci);
313
    virUSBDeviceFree(usb);
314
    virSCSIDeviceFree(scsi);
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
    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
341
                == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
342
                int rv;
343 344 345 346 347 348 349 350

                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;

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

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

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

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

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

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

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

    return 0;
}

413

414 415 416 417 418 419 420 421 422 423 424 425
static int
qemuSetupMemoryCgroup(virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!virCgroupHasController(priv->cgroup,VIR_CGROUP_CONTROLLER_MEMORY)) {
        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 已提交
426 427
        } else {
            return 0;
428 429 430
        }
    }

431 432
    if (virCgroupSetMemoryHardLimit(priv->cgroup,
                                    qemuDomainMemoryLimit(vm->def)) < 0)
433 434
        return -1;

435 436 437 438 439 440 441
    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;
442 443 444 445 446

    return 0;
}


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

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

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

        goto cleanup;
    }

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

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

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

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

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

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


542 543
static int
qemuSetupCpusetCgroup(virDomainObjPtr vm,
544 545
                      virBitmapPtr nodemask,
                      virCapsPtr caps)
546 547
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
548 549
    char *mem_mask = NULL;
    char *cpu_mask = NULL;
550 551 552 553 554 555 556 557 558 559 560 561
    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)
562
            mem_mask = virBitmapFormat(nodemask);
563
        else
564
            mem_mask = virBitmapFormat(vm->def->numatune.memory.nodemask);
565

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

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

576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
    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;
        }

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

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


607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
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;
       }
    }

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

    return 0;
}


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

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

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

644 645
    virCgroupFree(&priv->cgroup);

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

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

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

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

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

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

680 681
        goto cleanup;
    }
682

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

690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718

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

    if (virCgroupNewDetect(vm->pid, &priv->cgroup) < 0) {
        if (virCgroupNewIgnoreError())
            goto done;
        goto cleanup;
    }

    if (!virCgroupIsValidMachineGroup(priv->cgroup,
                                      vm->def->name,
                                      "qemu")) {
        VIR_DEBUG("Cgroup name is not valid for machine");
        virCgroupFree(&priv->cgroup);
        goto done;
719 720 721
    }

done:
722
    ret = 0;
723 724
cleanup:
    virObjectUnref(cfg);
725
    return ret;
726 727
}

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

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

743
    if (qemuInitCgroup(driver, vm) < 0)
744
        return -1;
745

746
    if (!priv->cgroup)
747
        return 0;
748

749 750 751
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

752 753
    if (qemuSetupDevicesCgroup(driver, vm) < 0)
        goto cleanup;
754

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

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

761 762
    if (qemuSetupCpuCgroup(vm) < 0)
        goto cleanup;
763

764
    if (qemuSetupCpusetCgroup(vm, nodemask, caps) < 0)
765
        goto cleanup;
766

767
    ret = 0;
768
cleanup:
769
    virObjectUnref(caps);
770
    return ret;
771 772
}

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

788
        if (virCgroupSetCpuCfsPeriod(cgroup, period) < 0)
789 790 791
            return -1;
    }

792 793 794
    if (quota &&
        virCgroupSetCpuCfsQuota(cgroup, quota) < 0)
        goto error;
795 796 797

    return 0;

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

    return -1;
}

811 812 813 814 815
int
qemuSetupCgroupVcpuPin(virCgroupPtr cgroup,
                       virDomainVcpuPinDefPtr *vcpupin,
                       int nvcpupin,
                       int vcpuid)
816
{
817
    size_t i;
818 819 820

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

825 826 827
    return -1;
}

828 829 830
int
qemuSetupCgroupEmulatorPin(virCgroupPtr cgroup,
                           virBitmapPtr cpumask)
831
{
832
    int ret = -1;
833 834
    char *new_cpus = NULL;

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

842
    if (virCgroupSetCpusetCpus(cgroup, new_cpus) < 0)
843 844
        goto cleanup;

845
    ret = 0;
846 847
cleanup:
    VIR_FREE(new_cpus);
848
    return ret;
849 850
}

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

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

868 869 870 871
    /* 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.
     */
872
    if (priv->cgroup == NULL)
873 874
        return 0;

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

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

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

        if (period || quota) {
H
Hu Tao 已提交
892 893
            if (qemuSetupCgroupVcpuBW(cgroup_vcpu, period, quota) < 0)
                goto cleanup;
894 895
        }

896
        /* Set vcpupin in cgroup if vcpupin xml is provided */
897
        if (virCgroupHasController(priv->cgroup, VIR_CGROUP_CONTROLLER_CPUSET)) {
M
Martin Kletzander 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
            /* 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;
            }
        }
913

914 915 916 917 918 919
        virCgroupFree(&cgroup_vcpu);
    }

    return 0;

cleanup:
920 921 922 923 924
    if (cgroup_vcpu) {
        virCgroupRemove(cgroup_vcpu);
        virCgroupFree(&cgroup_vcpu);
    }

925 926 927
    return -1;
}

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

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

948
    if (priv->cgroup == NULL)
949 950
        return 0; /* Not supported, so claim success */

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

954
    if (virCgroupMoveTask(priv->cgroup, cgroup_emulator) < 0)
955
        goto cleanup;
956

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

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

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

980
    virCgroupFree(&cgroup_emulator);
981
    virBitmapFree(cpumap);
982 983 984
    return 0;

cleanup:
985 986
    virBitmapFree(cpumap);

987 988 989 990 991
    if (cgroup_emulator) {
        virCgroupRemove(cgroup_emulator);
        virCgroupFree(&cgroup_emulator);
    }

992
    return -1;
993
}
994

995 996
int
qemuRemoveCgroup(virDomainObjPtr vm)
997
{
998
    qemuDomainObjPrivatePtr priv = vm->privateData;
999

1000
    if (priv->cgroup == NULL)
1001 1002
        return 0; /* Not supported, so claim success */

1003
    return virCgroupRemove(priv->cgroup);
1004 1005
}

1006 1007
int
qemuAddToCgroup(virDomainObjPtr vm)
1008
{
1009
    qemuDomainObjPrivatePtr priv = vm->privateData;
1010

1011
    if (priv->cgroup == NULL)
1012 1013
        return 0; /* Not supported, so claim success */

1014
    return 0;
1015
}