mirror of
https://github.com/systemd/systemd.git
synced 2024-11-07 09:56:51 +03:00
2bf25eeff8
The result of unit_get_sibling_mask returns bits for the sibling cgroups even if they are not supported in the local system. I caught this on a machine where my kernel was misconfigured with CONFIG_MEMCG unset, but the rest of the cgroup infrastructure enabled. Tested with `make check` on a host running a kernel where CONFIG_MEMCG is not set.
105 lines
4.9 KiB
C
105 lines
4.9 KiB
C
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
|
|
|
|
/***
|
|
This file is part of systemd.
|
|
|
|
Copyright 2013 David Strauss
|
|
|
|
systemd 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.
|
|
|
|
systemd is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
|
***/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "manager.h"
|
|
#include "unit.h"
|
|
#include "macro.h"
|
|
#include "test-helper.h"
|
|
|
|
static int test_cgroup_mask(void) {
|
|
Manager *m = NULL;
|
|
Unit *son, *daughter, *parent, *root, *grandchild, *parent_deep;
|
|
FILE *serial = NULL;
|
|
FDSet *fdset = NULL;
|
|
int r;
|
|
|
|
/* Prepare the manager. */
|
|
assert_se(set_unit_path(TEST_DIR) >= 0);
|
|
r = manager_new(MANAGER_USER, true, &m);
|
|
if (r == -EPERM || r == -EACCES) {
|
|
puts("manager_new: Permission denied. Skipping test.");
|
|
return EXIT_TEST_SKIP;
|
|
}
|
|
assert_se(r >= 0);
|
|
assert_se(manager_startup(m, serial, fdset) >= 0);
|
|
|
|
/* Load units and verify hierarchy. */
|
|
assert_se(manager_load_unit(m, "parent.slice", NULL, NULL, &parent) >= 0);
|
|
assert_se(manager_load_unit(m, "son.service", NULL, NULL, &son) >= 0);
|
|
assert_se(manager_load_unit(m, "daughter.service", NULL, NULL, &daughter) >= 0);
|
|
assert_se(manager_load_unit(m, "grandchild.service", NULL, NULL, &grandchild) >= 0);
|
|
assert_se(manager_load_unit(m, "parent-deep.slice", NULL, NULL, &parent_deep) >= 0);
|
|
assert_se(parent->load_state == UNIT_LOADED);
|
|
assert_se(son->load_state == UNIT_LOADED);
|
|
assert_se(daughter->load_state == UNIT_LOADED);
|
|
assert_se(grandchild->load_state == UNIT_LOADED);
|
|
assert_se(parent_deep->load_state == UNIT_LOADED);
|
|
assert_se(UNIT_DEREF(son->slice) == parent);
|
|
assert_se(UNIT_DEREF(daughter->slice) == parent);
|
|
assert_se(UNIT_DEREF(parent_deep->slice) == parent);
|
|
assert_se(UNIT_DEREF(grandchild->slice) == parent_deep);
|
|
root = UNIT_DEREF(parent->slice);
|
|
|
|
/* Verify per-unit cgroups settings. */
|
|
assert_se(unit_get_cgroup_mask(son) == (CGROUP_CPU | CGROUP_CPUACCT));
|
|
assert_se(unit_get_cgroup_mask(daughter) == 0);
|
|
assert_se(unit_get_cgroup_mask(grandchild) == 0);
|
|
assert_se(unit_get_cgroup_mask(parent_deep) == CGROUP_MEMORY);
|
|
assert_se(unit_get_cgroup_mask(parent) == CGROUP_BLKIO);
|
|
assert_se(unit_get_cgroup_mask(root) == 0);
|
|
|
|
/* Verify aggregation of member masks */
|
|
assert_se(unit_get_members_mask(son) == 0);
|
|
assert_se(unit_get_members_mask(daughter) == 0);
|
|
assert_se(unit_get_members_mask(grandchild) == 0);
|
|
assert_se(unit_get_members_mask(parent_deep) == 0);
|
|
assert_se(unit_get_members_mask(parent) == (CGROUP_CPU | CGROUP_CPUACCT | CGROUP_MEMORY));
|
|
assert_se(unit_get_members_mask(root) == (CGROUP_CPU | CGROUP_CPUACCT | CGROUP_BLKIO | CGROUP_MEMORY));
|
|
|
|
/* Verify aggregation of sibling masks. */
|
|
assert_se(unit_get_siblings_mask(son) == (CGROUP_CPU | CGROUP_CPUACCT | CGROUP_MEMORY));
|
|
assert_se(unit_get_siblings_mask(daughter) == (CGROUP_CPU | CGROUP_CPUACCT | CGROUP_MEMORY));
|
|
assert_se(unit_get_siblings_mask(grandchild) == 0);
|
|
assert_se(unit_get_siblings_mask(parent_deep) == (CGROUP_CPU | CGROUP_CPUACCT | CGROUP_MEMORY));
|
|
assert_se(unit_get_siblings_mask(parent) == (CGROUP_CPU | CGROUP_CPUACCT | CGROUP_BLKIO | CGROUP_MEMORY));
|
|
assert_se(unit_get_siblings_mask(root) == (CGROUP_CPU | CGROUP_CPUACCT | CGROUP_BLKIO | CGROUP_MEMORY));
|
|
|
|
/* Verify aggregation of target masks. */
|
|
assert_se(unit_get_target_mask(son) == ((CGROUP_CPU | CGROUP_CPUACCT | CGROUP_MEMORY) & m->cgroup_supported));
|
|
assert_se(unit_get_target_mask(daughter) == ((CGROUP_CPU | CGROUP_CPUACCT | CGROUP_MEMORY) & m->cgroup_supported));
|
|
assert_se(unit_get_target_mask(grandchild) == 0);
|
|
assert_se(unit_get_target_mask(parent_deep) == ((CGROUP_CPU | CGROUP_CPUACCT | CGROUP_MEMORY) & m->cgroup_supported));
|
|
assert_se(unit_get_target_mask(parent) == ((CGROUP_CPU | CGROUP_CPUACCT | CGROUP_BLKIO | CGROUP_MEMORY) & m->cgroup_supported));
|
|
assert_se(unit_get_target_mask(root) == ((CGROUP_CPU | CGROUP_CPUACCT | CGROUP_BLKIO | CGROUP_MEMORY) & m->cgroup_supported));
|
|
|
|
manager_free(m);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
int rc = 0;
|
|
TEST_REQ_RUNNING_SYSTEMD(rc = test_cgroup_mask());
|
|
return rc;
|
|
}
|