cgroup.c 22.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * cgroup.c: Tools for managing cgroups
 *
 * Copyright IBM Corp. 2008
 *
 * See COPYING.LIB for the License of this software
 *
 * Authors:
 *  Dan Smith <danms@us.ibm.com>
 */
#include <config.h>

#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <mntent.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <stdbool.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <libgen.h>

#include "internal.h"
#include "util.h"
#include "memory.h"
#include "cgroup.h"
30
#include "logging.h"
31 32 33

#define CGROUP_MAX_VAL 512

34
VIR_ENUM_IMPL(virCgroupController, VIR_CGROUP_CONTROLLER_LAST,
R
Ryota Ozaki 已提交
35 36
              "cpu", "cpuacct", "cpuset", "memory", "devices",
              "freezer");
37 38 39 40 41 42

struct virCgroupController {
    int type;
    char *mountPoint;
    char *placement;
};
43 44 45

struct virCgroup {
    char *path;
46 47

    struct virCgroupController controllers[VIR_CGROUP_CONTROLLER_LAST];
48 49 50 51 52 53 54 55 56
};

/**
 * virCgroupFree:
 *
 * @group: The group structure to free
 */
void virCgroupFree(virCgroupPtr *group)
{
57 58 59 60 61 62 63 64
    int i;

    if (*group == NULL)
        return;

    for (i = 0 ; i < VIR_CGROUP_CONTROLLER_LAST ; i++) {
        VIR_FREE((*group)->controllers[i].mountPoint);
        VIR_FREE((*group)->controllers[i].placement);
65
    }
66 67 68

    VIR_FREE((*group)->path);
    VIR_FREE(*group);
69 70
}

71 72 73 74 75 76

/*
 * Process /proc/mounts figuring out what controllers are
 * mounted and where
 */
static int virCgroupDetectMounts(virCgroupPtr group)
77
{
78
    int i;
79
    FILE *mounts = NULL;
80 81 82 83 84
    struct mntent entry;
    char buf[CGROUP_MAX_VAL];

    mounts = fopen("/proc/mounts", "r");
    if (mounts == NULL) {
85 86
        VIR_ERROR0("Unable to open /proc/mounts");
        return -ENOENT;
87 88 89
    }

    while (getmntent_r(mounts, &entry, buf, sizeof(buf)) != NULL) {
90 91
        if (STRNEQ(entry.mnt_type, "cgroup"))
            continue;
92

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
        for (i = 0 ; i < VIR_CGROUP_CONTROLLER_LAST ; i++) {
            const char *typestr = virCgroupControllerTypeToString(i);
            int typelen = strlen(typestr);
            char *tmp = entry.mnt_opts;
            while (tmp) {
                char *next = strchr(tmp, ',');
                int len;
                if (next) {
                    len = next-tmp;
                    next++;
                } else {
                    len = strlen(tmp);
                }
                if (typelen == len && STREQLEN(typestr, tmp, len) &&
                    !(group->controllers[i].mountPoint = strdup(entry.mnt_dir)))
                    goto no_memory;
                tmp = next;
            }
        }
112 113 114 115
    }

    fclose(mounts);

116
    return 0;
117

118 119 120 121
no_memory:
    if (mounts)
        fclose(mounts);
    return -ENOMEM;
122 123
}

124 125 126 127 128

/*
 * Process /proc/self/cgroup figuring out what cgroup
 * sub-path the current process is assigned to. ie not
 * neccessarily in the root
129
 */
130
static int virCgroupDetectPlacement(virCgroupPtr group)
131 132
{
    int i;
133 134
    FILE *mapping  = NULL;
    char line[1024];
135

136 137 138 139
    mapping = fopen("/proc/self/cgroup", "r");
    if (mapping == NULL) {
        VIR_ERROR0("Unable to open /proc/self/cgroup");
        return -ENOENT;
140 141
    }

142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
    while (fgets(line, sizeof(line), mapping) != NULL) {
        char *controllers = strchr(line, ':');
        char *path = controllers ? strchr(controllers+1, ':') : NULL;
        char *nl = path ? strchr(path, '\n') : NULL;

        if (!controllers || !path)
            continue;

        if (nl)
            *nl = '\0';

        *path = '\0';
        controllers++;
        path++;

        for (i = 0 ; i < VIR_CGROUP_CONTROLLER_LAST ; i++) {
            const char *typestr = virCgroupControllerTypeToString(i);
            int typelen = strlen(typestr);
            char *tmp = controllers;
            while (tmp) {
                char *next = strchr(tmp, ',');
                int len;
                if (next) {
                    len = next-tmp;
                    next++;
                } else {
                    len = strlen(tmp);
                }
                if (typelen == len && STREQLEN(typestr, tmp, len) &&
                    !(group->controllers[i].placement = strdup(STREQ(path, "/") ? "" : path)))
                    goto no_memory;

                tmp = next;
            }
        }
    }

    fclose(mapping);

181
    return 0;
182 183 184 185

no_memory:
    return -ENOMEM;

186 187
}

188
static int virCgroupDetect(virCgroupPtr group)
189
{
190 191 192
    int any = 0;
    int rc;
    int i;
193

194 195 196 197
    rc = virCgroupDetectMounts(group);
    if (rc < 0) {
        VIR_ERROR("Failed to detect mounts for %s", group->path);
        return rc;
198 199
    }

200 201 202 203 204 205 206
    /* Check that at least 1 controller is available */
    for (i = 0 ; i < VIR_CGROUP_CONTROLLER_LAST ; i++) {
        if (group->controllers[i].mountPoint != NULL)
            any = 1;
    }
    if (!any)
        return -ENXIO;
207 208


209
    rc = virCgroupDetectPlacement(group);
210

211 212 213 214 215
    if (rc == 0) {
        /* Check that for every mounted controller, we found our placement */
        for (i = 0 ; i < VIR_CGROUP_CONTROLLER_LAST ; i++) {
            if (!group->controllers[i].mountPoint)
                continue;
216

217 218 219 220 221 222 223
            if (!group->controllers[i].placement) {
                VIR_ERROR("Could not find placement for controller %s at %s",
                          virCgroupControllerTypeToString(i),
                          group->controllers[i].placement);
                rc = -ENOENT;
                break;
            }
224

225 226 227 228 229 230 231
            VIR_DEBUG("Detected mount/mapping %i:%s at %s in %s", i,
                      virCgroupControllerTypeToString(i),
                      group->controllers[i].mountPoint,
                      group->controllers[i].placement);
        }
    } else {
        VIR_ERROR("Failed to detect mapping for %s", group->path);
232 233 234 235 236
    }

    return rc;
}

237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259

static int virCgroupPathOfController(virCgroupPtr group,
                                     int controller,
                                     const char *key,
                                     char **path)
{
    if (group->controllers[controller].mountPoint == NULL)
        return -ENOENT;

    if (group->controllers[controller].placement == NULL)
        return -ENOENT;

    if (virAsprintf(path, "%s%s%s/%s",
                    group->controllers[controller].mountPoint,
                    group->controllers[controller].placement,
                    STREQ(group->path, "/") ? "" : group->path,
                    key ? key : "") == -1)
        return -ENOMEM;

    return 0;
}


260
static int virCgroupSetValueStr(virCgroupPtr group,
261
                                int controller,
262 263 264 265 266 267
                                const char *key,
                                const char *value)
{
    int rc = 0;
    char *keypath = NULL;

268
    rc = virCgroupPathOfController(group, controller, key, &keypath);
269 270 271
    if (rc != 0)
        return rc;

272 273
    VIR_DEBUG("Set value %s", keypath);
    rc = virFileWriteStr(keypath, value);
274 275 276
    if (rc < 0) {
        DEBUG("Failed to write value '%s': %m", value);
        rc = -errno;
277 278
    } else {
        rc = 0;
279 280 281 282 283 284 285 286
    }

    VIR_FREE(keypath);

    return rc;
}

static int virCgroupGetValueStr(virCgroupPtr group,
287
                                int controller,
288 289 290 291 292 293
                                const char *key,
                                char **value)
{
    int rc;
    char *keypath = NULL;

294
    *value = NULL;
295

296
    rc = virCgroupPathOfController(group, controller, key, &keypath);
297 298 299 300 301
    if (rc != 0) {
        DEBUG("No path of %s, %s", group->path, key);
        return rc;
    }

302
    VIR_DEBUG("Get value %s", keypath);
303

304
    rc = virFileReadAll(keypath, 1024, value);
305 306 307
    if (rc < 0) {
        DEBUG("Failed to read %s: %m\n", keypath);
        rc = -errno;
308 309
    } else {
        rc = 0;
310 311 312 313 314 315 316
    }

    VIR_FREE(keypath);

    return rc;
}

317
static int virCgroupSetValueU64(virCgroupPtr group,
318
                                int controller,
319 320 321 322 323 324 325 326 327
                                const char *key,
                                uint64_t value)
{
    char *strval = NULL;
    int rc;

    if (virAsprintf(&strval, "%" PRIu64, value) == -1)
        return -ENOMEM;

328
    rc = virCgroupSetValueStr(group, controller, key, strval);
329 330 331 332 333 334 335

    VIR_FREE(strval);

    return rc;
}


336 337 338 339
#if 0
/* This is included for completeness, but not yet used */

static int virCgroupSetValueI64(virCgroupPtr group,
340
                                int controller,
341
                                const char *key,
342 343 344 345 346
                                int64_t value)
{
    char *strval = NULL;
    int rc;

347
    if (virAsprintf(&strval, "%" PRIi64, value) == -1)
348 349
        return -ENOMEM;

350
    rc = virCgroupSetValueStr(group, controller, key, strval);
351 352 353 354 355 356 357

    VIR_FREE(strval);

    return rc;
}

static int virCgroupGetValueI64(virCgroupPtr group,
358
                                int controller,
359 360
                                const char *key,
                                int64_t *value)
361 362 363 364
{
    char *strval = NULL;
    int rc = 0;

365
    rc = virCgroupGetValueStr(group, controller, key, &strval);
366 367 368
    if (rc != 0)
        goto out;

369
    if (sscanf(strval, "%" SCNi64, value) != 1)
370 371 372 373 374 375
        rc = -EINVAL;
out:
    VIR_FREE(strval);

    return rc;
}
376
#endif
377

378
static int virCgroupGetValueU64(virCgroupPtr group,
379
                                int controller,
380
                                const char *key,
381
                                uint64_t *value)
382 383 384 385
{
    char *strval = NULL;
    int rc = 0;

386
    rc = virCgroupGetValueStr(group, controller, key, &strval);
387 388 389
    if (rc != 0)
        goto out;

390
    if (sscanf(strval, "%" SCNu64, value) != 1)
391 392 393 394 395 396 397 398
        rc = -EINVAL;
out:
    VIR_FREE(strval);

    return rc;
}


399
static int virCgroupCpuSetInherit(virCgroupPtr parent, virCgroupPtr group)
400 401 402 403 404 405 406 407
{
    int i;
    int rc = 0;
    const char *inherit_values[] = {
        "cpuset.cpus",
        "cpuset.mems",
    };

408 409 410
    VIR_DEBUG("Setting up inheritance %s -> %s", parent->path, group->path);
    for (i = 0; i < ARRAY_CARDINALITY(inherit_values) ; i++) {
        char *value;
411

412 413 414 415
        rc = virCgroupGetValueStr(parent,
                                  VIR_CGROUP_CONTROLLER_CPUSET,
                                  inherit_values[i],
                                  &value);
416
        if (rc != 0) {
417 418 419 420 421 422 423 424 425 426 427 428 429
            VIR_ERROR("Failed to get %s %d", inherit_values[i], rc);
            break;
        }

        VIR_DEBUG("Inherit %s = %s", inherit_values[i], value);

        rc = virCgroupSetValueStr(group,
                                  VIR_CGROUP_CONTROLLER_CPUSET,
                                  inherit_values[i],
                                  value);

        if (rc != 0) {
            VIR_ERROR("Failed to set %s %d", inherit_values[i], rc);
430 431 432 433 434 435 436
            break;
        }
    }

    return rc;
}

437
static int virCgroupMakeGroup(virCgroupPtr parent, virCgroupPtr group)
438 439 440 441
{
    int i;
    int rc = 0;

442
    VIR_DEBUG("Make group %s", group->path);
443
    for (i = 0 ; i < VIR_CGROUP_CONTROLLER_LAST ; i++) {
444 445
        char *path = NULL;

446 447
        /* Skip over controllers that aren't mounted */
        if (!group->controllers[i].mountPoint)
448 449
            continue;

450 451 452
        rc = virCgroupPathOfController(group, i, "", &path);
        if (rc < 0)
            return rc;
453

454
        VIR_DEBUG("Make controller %s", path);
455
        if (access(path, F_OK) != 0) {
456
            if (mkdir(path, 0755) < 0) {
457 458 459 460
                rc = -errno;
                VIR_FREE(path);
                break;
            }
461 462 463 464 465 466 467
            if (group->controllers[VIR_CGROUP_CONTROLLER_CPUSET].mountPoint != NULL &&
                (i == VIR_CGROUP_CONTROLLER_CPUSET ||
                 STREQ(group->controllers[i].mountPoint, group->controllers[VIR_CGROUP_CONTROLLER_CPUSET].mountPoint))) {
                rc = virCgroupCpuSetInherit(parent, group);
                if (rc != 0)
                    break;
            }
468 469 470 471 472 473 474 475
        }

        VIR_FREE(path);
    }

    return rc;
}

476 477 478

static int virCgroupNew(const char *path,
                        virCgroupPtr *group)
479 480 481 482
{
    int rc = 0;
    char *typpath = NULL;

483 484
    VIR_DEBUG("New group %s", path);
    *group = NULL;
485

486
    if (VIR_ALLOC((*group)) != 0) {
487 488 489 490
        rc = -ENOMEM;
        goto err;
    }

491
    if (!((*group)->path = strdup(path))) {
492 493 494 495
        rc = -ENOMEM;
        goto err;
    }

496 497 498
    rc = virCgroupDetect(*group);
    if (rc < 0)
        goto err;
499 500 501

    return rc;
err:
502 503
    virCgroupFree(group);
    *group = NULL;
504 505 506 507 508 509

    VIR_FREE(typpath);

    return rc;
}

510 511
static int virCgroupAppRoot(int privileged,
                            virCgroupPtr *group)
512
{
513 514
    virCgroupPtr rootgrp = NULL;
    int rc;
515

516 517 518
    rc = virCgroupNew("/", &rootgrp);
    if (rc != 0)
        return rc;
519

520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
    if (privileged) {
        rc = virCgroupNew("/libvirt", group);
    } else {
        char *rootname;
        char *username;
        username = virGetUserName(NULL, getuid());
        if (!username) {
            rc = -ENOMEM;
            goto cleanup;
        }
        rc = virAsprintf(&rootname, "/libvirt-%s", username);
        VIR_FREE(username);
        if (rc < 0) {
            rc = -ENOMEM;
            goto cleanup;
        }
536

537 538
        rc = virCgroupNew(rootname, group);
        VIR_FREE(rootname);
539 540
    }
    if (rc != 0)
541
        goto cleanup;
542

543
    rc = virCgroupMakeGroup(rootgrp, *group);
544

545 546
cleanup:
    virCgroupFree(&rootgrp);
547 548 549
    return rc;
}

550

551 552 553 554 555 556 557 558 559 560 561 562 563
/**
 * virCgroupRemove:
 *
 * @group: The group to be removed
 *
 * Returns: 0 on success
 */
int virCgroupRemove(virCgroupPtr group)
{
    int rc = 0;
    int i;
    char *grppath = NULL;

564
    for (i = 0 ; i < VIR_CGROUP_CONTROLLER_LAST ; i++) {
565 566
        /* Skip over controllers not mounted */
        if (!group->controllers[i].mountPoint)
567 568
            continue;

569 570 571 572 573
        if (virCgroupPathOfController(group,
                                      i,
                                      NULL,
                                      &grppath) != 0)
            continue;
574

575 576 577 578
        DEBUG("Removing cgroup %s", grppath);
        if (rmdir(grppath) != 0 && errno != ENOENT) {
            rc = -errno;
        }
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
        VIR_FREE(grppath);
    }

    return rc;
}

/**
 * virCgroupAddTask:
 *
 * @group: The cgroup to add a task to
 * @pid: The pid of the task to add
 *
 * Returns: 0 on success
 */
int virCgroupAddTask(virCgroupPtr group, pid_t pid)
{
    int rc = 0;
    int i;

598
    for (i = 0 ; i < VIR_CGROUP_CONTROLLER_LAST ; i++) {
599 600 601
        /* Skip over controllers not mounted */
        if (!group->controllers[i].mountPoint)
            continue;
602

603
        rc = virCgroupSetValueU64(group, i, "tasks", (unsigned long long)pid);
604 605 606 607 608 609 610
        if (rc != 0)
            break;
    }

    return rc;
}

611

612
/**
613
 * virCgroupForDriver:
614
 *
615
 * @name: name of this driver (e.g., xen, qemu, lxc)
616 617 618 619
 * @group: Pointer to returned virCgroupPtr
 *
 * Returns 0 on success
 */
620 621 622 623
int virCgroupForDriver(const char *name,
                       virCgroupPtr *group,
                       int privileged,
                       int create)
624 625
{
    int rc;
626
    char *path = NULL;
627
    virCgroupPtr rootgrp = NULL;
628

629
    rc = virCgroupAppRoot(privileged, &rootgrp);
630
    if (rc != 0)
631 632
        goto out;

633 634
    if (virAsprintf(&path, "%s/%s", rootgrp->path, name) < 0) {
        rc = -ENOMEM;
635
        goto out;
636
    }
637

638 639 640 641 642 643 644 645 646
    rc = virCgroupNew(path, group);
    VIR_FREE(path);

    if (rc == 0 &&
        create) {
        rc = virCgroupMakeGroup(rootgrp, *group);
        if (rc != 0)
            virCgroupFree(group);
    }
647

648
out:
649
    virCgroupFree(&rootgrp);
650 651 652 653

    return rc;
}

654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687

/**
 * virCgroupForDomain:
 *
 * @driver: group for driver owning the domain
 * @name: name of the domain
 * @group: Pointer to returned virCgroupPtr
 *
 * Returns 0 on success
 */
int virCgroupForDomain(virCgroupPtr driver,
                       const char *name,
                       virCgroupPtr *group,
                       int create)
{
    int rc;
    char *path;

    if (virAsprintf(&path, "%s/%s", driver->path, name) < 0)
        return -ENOMEM;

    rc = virCgroupNew(path, group);
    VIR_FREE(path);

    if (rc == 0 &&
        create) {
        rc = virCgroupMakeGroup(driver, *group);
        if (rc != 0)
            virCgroupFree(group);
    }

    return rc;
}

688 689 690 691 692 693 694 695 696 697 698
/**
 * virCgroupSetMemory:
 *
 * @group: The cgroup to change memory for
 * @kb: The memory amount in kilobytes
 *
 * Returns: 0 on success
 */
int virCgroupSetMemory(virCgroupPtr group, unsigned long kb)
{
    return virCgroupSetValueU64(group,
699
                                VIR_CGROUP_CONTROLLER_MEMORY,
700 701 702 703
                                "memory.limit_in_bytes",
                                kb << 10);
}

R
Ryota Ozaki 已提交
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
/**
 * virCgroupGetMemoryUsage:
 *
 * @group: The cgroup to change memory for
 * @kb: Pointer to returned used memory in kilobytes
 *
 * Returns: 0 on success
 */
int virCgroupGetMemoryUsage(virCgroupPtr group, unsigned long *kb)
{
    uint64_t usage_in_bytes;
    int ret;
    ret = virCgroupGetValueU64(group,
                               VIR_CGROUP_CONTROLLER_MEMORY,
                               "memory.usage_in_bytes", &usage_in_bytes);
    if (ret == 0)
        *kb = (unsigned long) usage_in_bytes >> 10;
    return ret;
}

724 725 726 727 728 729 730 731 732 733
/**
 * virCgroupDenyAllDevices:
 *
 * @group: The cgroup to deny devices for
 *
 * Returns: 0 on success
 */
int virCgroupDenyAllDevices(virCgroupPtr group)
{
    return virCgroupSetValueStr(group,
734 735 736
                                VIR_CGROUP_CONTROLLER_DEVICES,
                                "devices.deny",
                                "a");
737 738 739 740 741 742 743 744 745 746 747 748
}

/**
 * virCgroupAllowDevice:
 *
 * @group: The cgroup to allow a device for
 * @type: The device type (i.e., 'c' or 'b')
 * @major: The major number of the device
 * @minor: The minor number of the device
 *
 * Returns: 0 on success
 */
749
int virCgroupAllowDevice(virCgroupPtr group, char type, int major, int minor)
750 751 752 753
{
    int rc;
    char *devstr = NULL;

754
    if (virAsprintf(&devstr, "%c %i:%i rwm", type, major, minor) == -1) {
755 756 757 758 759
        rc = -ENOMEM;
        goto out;
    }

    rc = virCgroupSetValueStr(group,
760
                              VIR_CGROUP_CONTROLLER_DEVICES,
761 762 763 764 765 766 767
                              "devices.allow",
                              devstr);
out:
    VIR_FREE(devstr);

    return rc;
}
768

769 770 771 772 773 774 775 776 777
/**
 * virCgroupAllowDeviceMajor:
 *
 * @group: The cgroup to allow an entire device major type for
 * @type: The device type (i.e., 'c' or 'b')
 * @major: The major number of the device type
 *
 * Returns: 0 on success
 */
778
int virCgroupAllowDeviceMajor(virCgroupPtr group, char type, int major)
779 780 781 782
{
    int rc;
    char *devstr = NULL;

783
    if (virAsprintf(&devstr, "%c %i:* rwm", type, major) == -1) {
784 785 786 787 788
        rc = -ENOMEM;
        goto out;
    }

    rc = virCgroupSetValueStr(group,
789
                              VIR_CGROUP_CONTROLLER_DEVICES,
790 791 792 793 794 795 796 797
                              "devices.allow",
                              devstr);
 out:
    VIR_FREE(devstr);

    return rc;
}

798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
/**
 * virCgroupAllowDevicePath:
 *
 * @group: The cgroup to allow the device for
 * @path: the device to allow
 *
 * Queries the type of device and its major/minor number, and
 * adds that to the cgroup ACL
 *
 * Returns: 0 on success
 */
int virCgroupAllowDevicePath(virCgroupPtr group, const char *path)
{
    struct stat sb;

    if (stat(path, &sb) < 0)
        return -errno;

    if (!S_ISCHR(sb.st_mode) && !S_ISBLK(sb.st_mode))
        return -EINVAL;

    return virCgroupAllowDevice(group,
                                S_ISCHR(sb.st_mode) ? 'c' : 'b',
                                major(sb.st_rdev),
                                minor(sb.st_rdev));
}

/**
 * virCgroupDenyDevice:
 *
 * @group: The cgroup to deny a device for
 * @type: The device type (i.e., 'c' or 'b')
 * @major: The major number of the device
 * @minor: The minor number of the device
 *
 * Returns: 0 on success
 */
int virCgroupDenyDevice(virCgroupPtr group, char type, int major, int minor)
{
    int rc;
    char *devstr = NULL;

    if (virAsprintf(&devstr, "%c %i:%i rwm", type, major, minor) == -1) {
        rc = -ENOMEM;
        goto out;
    }

    rc = virCgroupSetValueStr(group,
                              VIR_CGROUP_CONTROLLER_DEVICES,
                              "devices.deny",
                              devstr);
out:
    VIR_FREE(devstr);

    return rc;
}

/**
 * virCgroupDenyDeviceMajor:
 *
 * @group: The cgroup to deny an entire device major type for
 * @type: The device type (i.e., 'c' or 'b')
 * @major: The major number of the device type
 *
 * Returns: 0 on success
 */
int virCgroupDenyDeviceMajor(virCgroupPtr group, char type, int major)
{
    int rc;
    char *devstr = NULL;

    if (virAsprintf(&devstr, "%c %i:* rwm", type, major) == -1) {
        rc = -ENOMEM;
        goto out;
    }

    rc = virCgroupSetValueStr(group,
                              VIR_CGROUP_CONTROLLER_DEVICES,
                              "devices.deny",
                              devstr);
 out:
    VIR_FREE(devstr);

    return rc;
}

int virCgroupDenyDevicePath(virCgroupPtr group, const char *path)
{
    struct stat sb;

    if (stat(path, &sb) < 0)
        return -errno;

    if (!S_ISCHR(sb.st_mode) && !S_ISBLK(sb.st_mode))
        return -EINVAL;

    return virCgroupDenyDevice(group,
                               S_ISCHR(sb.st_mode) ? 'c' : 'b',
                               major(sb.st_rdev),
                               minor(sb.st_rdev));
}

900
int virCgroupSetCpuShares(virCgroupPtr group, unsigned long long shares)
901
{
902 903
    return virCgroupSetValueU64(group,
                                VIR_CGROUP_CONTROLLER_CPU,
D
Daniel P. Berrange 已提交
904
                                "cpu.shares", (uint64_t)shares);
905 906
}

907
int virCgroupGetCpuShares(virCgroupPtr group, unsigned long long *shares)
908
{
909 910
    return virCgroupGetValueU64(group,
                                VIR_CGROUP_CONTROLLER_CPU,
D
Daniel P. Berrange 已提交
911
                                "cpu.shares", (uint64_t *)shares);
912
}
913 914 915

int virCgroupGetCpuacctUsage(virCgroupPtr group, unsigned long long *usage)
{
916 917
    return virCgroupGetValueU64(group,
                                VIR_CGROUP_CONTROLLER_CPUACCT,
D
Daniel P. Berrange 已提交
918
                                "cpuacct.usage", (uint64_t *)usage);
919
}
R
Ryota Ozaki 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939

int virCgroupSetFreezerState(virCgroupPtr group, const char *state)
{
    return virCgroupSetValueStr(group,
                                VIR_CGROUP_CONTROLLER_CPU,
                                "freezer.state", state);
}

int virCgroupGetFreezerState(virCgroupPtr group, char **state)
{
    int ret;
    ret = virCgroupGetValueStr(group,
                                VIR_CGROUP_CONTROLLER_CPU,
                                "freezer.state", state);
    if (ret == 0) {
        char *p = strchr(*state, '\n');
        if (p) *p = '\0';
    }
    return ret;
}