mirror of
https://github.com/kata-containers/cgroups-rs.git
synced 2026-08-05 02:13:23 +00:00
Compare commits
94 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
799d02d266 | ||
|
|
c2abd0229d | ||
|
|
091d694c00 | ||
|
|
7a7fd32e4f | ||
|
|
3961c4b0dd | ||
|
|
fdcf75b27b | ||
|
|
7cd1cda42f | ||
|
|
0236d210d5 | ||
|
|
0d1029646c | ||
|
|
a32f96e473 | ||
|
|
acad18f4a5 | ||
|
|
3eeab4ef1c | ||
|
|
b99114bf40 | ||
|
|
f44ae5d4da | ||
|
|
cf4c62dd34 | ||
|
|
c1a99fff50 | ||
|
|
6a11b32b64 | ||
|
|
a30729bcf1 | ||
|
|
69e3897a6d | ||
|
|
c49bee218f | ||
|
|
5d74a1dfc9 | ||
|
|
daa71aca91 | ||
|
|
fefbdc8665 | ||
|
|
c774e9e123 | ||
|
|
d69517847b | ||
|
|
0c26caecfc | ||
|
|
4a68c762e1 | ||
|
|
1250cbe182 | ||
|
|
b8031f1a21 | ||
|
|
6e273cd2fb | ||
|
|
bce4b0bb3b | ||
|
|
f5a67c632e | ||
|
|
c8febbc67d | ||
|
|
2536e33696 | ||
|
|
694627e2fc | ||
|
|
de9625ff57 | ||
|
|
b6b65f79d1 | ||
|
|
547fb08c03 | ||
|
|
ec9f3547ed | ||
|
|
82a6aa491a | ||
|
|
65c36214b7 | ||
|
|
e0d0b8f4bc | ||
|
|
db822470e5 | ||
|
|
362373b3ec | ||
|
|
eadbf53140 | ||
|
|
b3c57840ee | ||
|
|
b10e52d85f | ||
|
|
7d4d4579a3 | ||
|
|
eb3e37a4bc | ||
|
|
4005ad844d | ||
|
|
ef3497646f | ||
|
|
69ef63a0ef | ||
|
|
346844ca72 | ||
|
|
4f1fe13d91 | ||
|
|
17a6c6b842 | ||
|
|
3c4b724433 | ||
|
|
01885adb99 | ||
|
|
ce5f5f638e | ||
|
|
be837166e9 | ||
|
|
8d29c194e3 | ||
|
|
8a82ad0ac2 | ||
|
|
369f3bebed | ||
|
|
0b6b229a38 | ||
|
|
f55bdb1775 | ||
|
|
55505e0b3e | ||
|
|
df347c1db8 | ||
|
|
66a93b1c3d | ||
|
|
ca66292f5f | ||
|
|
89edba0f85 | ||
|
|
1b61c07b69 | ||
|
|
45e1f0c274 | ||
|
|
41b5f9c25c | ||
|
|
93a59571e3 | ||
|
|
257012f2bb | ||
|
|
3dd0735324 | ||
|
|
6b338cf997 | ||
|
|
225be2cdbb | ||
|
|
51779d6915 | ||
|
|
5ea28f076c | ||
|
|
aa74f34a91 | ||
|
|
328428ace4 | ||
|
|
c8bb7e1c7e | ||
|
|
25a1340123 | ||
|
|
4203075f19 | ||
|
|
a45ecf0884 | ||
|
|
2f60f213cc | ||
|
|
91146f0ea3 | ||
|
|
e845665b3a | ||
|
|
55034f5b05 | ||
|
|
e2c2618707 | ||
|
|
07878325c3 | ||
|
|
88fb33113d | ||
|
|
1211754b62 | ||
|
|
c9d02afe33 |
119
.github/workflows/bvt.yaml
vendored
119
.github/workflows/bvt.yaml
vendored
@@ -1,13 +1,13 @@
|
|||||||
name: BVT
|
name: BVT
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
env:
|
env:
|
||||||
RUST_VERSION: 1.52
|
RUST_VERSION: 1.90.0
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v6
|
||||||
- run: rustup install ${{ env.RUST_VERSION }} && rustup default ${{ env.RUST_VERSION }}
|
- run: rustup install ${{ env.RUST_VERSION }} && rustup default ${{ env.RUST_VERSION }}
|
||||||
- run: make debug
|
- run: make debug
|
||||||
|
|
||||||
@@ -15,7 +15,7 @@ jobs:
|
|||||||
name: Format Check
|
name: Format Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v6
|
||||||
- run: rustup install ${{ env.RUST_VERSION }} && rustup default ${{ env.RUST_VERSION }}
|
- run: rustup install ${{ env.RUST_VERSION }} && rustup default ${{ env.RUST_VERSION }}
|
||||||
- run: rustup component add rustfmt
|
- run: rustup component add rustfmt
|
||||||
- run: make fmt
|
- run: make fmt
|
||||||
@@ -23,16 +23,117 @@ jobs:
|
|||||||
name: Clippy Check
|
name: Clippy Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v6
|
||||||
- run: rustup install ${{ env.RUST_VERSION }} && rustup default ${{ env.RUST_VERSION }}
|
- run: rustup install ${{ env.RUST_VERSION }} && rustup default ${{ env.RUST_VERSION }}
|
||||||
- run: rustup component add clippy
|
- run: rustup component add clippy
|
||||||
- run: make clippy
|
- run: make clippy
|
||||||
test:
|
test:
|
||||||
name: Run Unit Test
|
name: Unit and Integration Test / ${{ matrix.hierarchy }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
|
timeout-minutes: 45
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- hierarchy: v1
|
||||||
|
unexpected_skip: Skipping test in cgroups v2 mode
|
||||||
|
- hierarchy: v2
|
||||||
|
unexpected_skip: Skipping test in cgroups v1 mode
|
||||||
|
env:
|
||||||
|
CGROUP_HIERARCHY: ${{ matrix.hierarchy }}
|
||||||
|
CGROUP_IMAGE_NAME: ubuntu-22.04-server-cloudimg-amd64.img
|
||||||
|
CGROUP_IMAGE_SHA256: 757908b2fd6d5b1431bb45070fc1f56cbf017d4025568d292ece37d9cc75e812
|
||||||
|
CGROUP_IMAGE_URL: https://cloud-images.ubuntu.com/releases/jammy/release-20260722/ubuntu-22.04-server-cloudimg-amd64.img
|
||||||
|
UNEXPECTED_SKIP: ${{ matrix.unexpected_skip }}
|
||||||
|
QEMU_ACCEL: tcg
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v6
|
||||||
- run: rustup install ${{ env.RUST_VERSION }} && rustup default ${{ env.RUST_VERSION }}
|
|
||||||
- run: make test
|
|
||||||
|
|
||||||
|
- name: Install Rust
|
||||||
|
run: |
|
||||||
|
rustup toolchain install "${RUST_VERSION}" --profile minimal
|
||||||
|
rustup default "${RUST_VERSION}"
|
||||||
|
rustup target add x86_64-unknown-linux-musl
|
||||||
|
|
||||||
|
- name: Install QEMU and build dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y \
|
||||||
|
binutils \
|
||||||
|
cloud-image-utils \
|
||||||
|
jq \
|
||||||
|
musl-tools \
|
||||||
|
ovmf \
|
||||||
|
qemu-system-x86 \
|
||||||
|
qemu-utils
|
||||||
|
|
||||||
|
- name: Restore pinned Ubuntu cloud image
|
||||||
|
id: image-cache
|
||||||
|
uses: actions/cache@v5
|
||||||
|
with:
|
||||||
|
path: ${{ runner.temp }}/cgroup-image
|
||||||
|
key: ubuntu-jammy-20260722-amd64
|
||||||
|
|
||||||
|
- name: Download Ubuntu cloud image
|
||||||
|
if: steps.image-cache.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
|
mkdir -p "${RUNNER_TEMP}/cgroup-image"
|
||||||
|
curl --fail --location --retry 3 \
|
||||||
|
--output "${RUNNER_TEMP}/cgroup-image/${CGROUP_IMAGE_NAME}" \
|
||||||
|
"${CGROUP_IMAGE_URL}"
|
||||||
|
|
||||||
|
- name: Verify Ubuntu cloud image
|
||||||
|
run: |
|
||||||
|
echo "${CGROUP_IMAGE_SHA256} ${RUNNER_TEMP}/cgroup-image/${CGROUP_IMAGE_NAME}" \
|
||||||
|
| sha256sum --check -
|
||||||
|
|
||||||
|
- name: Build static test executables
|
||||||
|
run: |
|
||||||
|
ci/qemu/build-static-test-binaries.sh \
|
||||||
|
"${RUNNER_TEMP}/cgroup-test-binaries"
|
||||||
|
|
||||||
|
- name: Create guest SSH key
|
||||||
|
run: |
|
||||||
|
mkdir -p "${RUNNER_TEMP}/cgroup-ssh"
|
||||||
|
ssh-keygen \
|
||||||
|
-q \
|
||||||
|
-t ed25519 \
|
||||||
|
-N "" \
|
||||||
|
-f "${RUNNER_TEMP}/cgroup-ssh/id_ed25519"
|
||||||
|
|
||||||
|
- name: Start cgroup ${{ matrix.hierarchy }} guest
|
||||||
|
run: |
|
||||||
|
ci/qemu/boot-cgroup-test-vm.sh \
|
||||||
|
"${RUNNER_TEMP}/cgroup-vm" \
|
||||||
|
"${RUNNER_TEMP}/cgroup-image/${CGROUP_IMAGE_NAME}" \
|
||||||
|
"${RUNNER_TEMP}/cgroup-ssh/id_ed25519.pub" \
|
||||||
|
"${CGROUP_HIERARCHY}"
|
||||||
|
|
||||||
|
- name: Run cgroupfs and systemd tests
|
||||||
|
run: |
|
||||||
|
set -o pipefail
|
||||||
|
ci/qemu/run-tests-in-cgroup-vm.sh \
|
||||||
|
"${RUNNER_TEMP}/cgroup-vm" \
|
||||||
|
"${RUNNER_TEMP}/cgroup-test-binaries" \
|
||||||
|
"${RUNNER_TEMP}/cgroup-ssh/id_ed25519" \
|
||||||
|
"${CGROUP_HIERARCHY}" \
|
||||||
|
2>&1 | tee "${RUNNER_TEMP}/cgroup-tests.log"
|
||||||
|
if grep -q "${UNEXPECTED_SKIP}" \
|
||||||
|
"${RUNNER_TEMP}/cgroup-tests.log"; then
|
||||||
|
echo "A ${CGROUP_HIERARCHY} test unexpectedly skipped" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Upload QEMU diagnostics
|
||||||
|
if: failure()
|
||||||
|
uses: actions/upload-artifact@v7
|
||||||
|
with:
|
||||||
|
name: cgroup-${{ matrix.hierarchy }}-qemu-diagnostics
|
||||||
|
path: |
|
||||||
|
${{ runner.temp }}/cgroup-vm/console.log
|
||||||
|
${{ runner.temp }}/cgroup-vm/qemu.log
|
||||||
|
if-no-files-found: ignore
|
||||||
|
|
||||||
|
- name: Stop cgroup guest
|
||||||
|
if: always()
|
||||||
|
run: ci/qemu/stop-cgroup-test-vm.sh "${RUNNER_TEMP}/cgroup-vm"
|
||||||
|
|||||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -8,7 +8,3 @@ Cargo.lock
|
|||||||
|
|
||||||
# These are backup files generated by rustfmt
|
# These are backup files generated by rustfmt
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
|
|
||||||
/target
|
|
||||||
**/*.rs.bk
|
|
||||||
Cargo.lock
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ repository = "https://github.com/kata-containers/cgroups-rs"
|
|||||||
keywords = ["linux", "cgroup", "containers", "isolation"]
|
keywords = ["linux", "cgroup", "containers", "isolation"]
|
||||||
categories = ["os", "api-bindings", "os::unix-apis"]
|
categories = ["os", "api-bindings", "os::unix-apis"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.2.11"
|
version = "0.5.1"
|
||||||
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>", "Levente Kurusa <lkurusa@acm.org>", "Sam Wilson <tecywiz121@hotmail.com>"]
|
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>", "Levente Kurusa <lkurusa@acm.org>", "Sam Wilson <tecywiz121@hotmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
homepage = "https://github.com/kata-containers/cgroups-rs"
|
homepage = "https://github.com/kata-containers/cgroups-rs"
|
||||||
@@ -13,14 +13,19 @@ readme = "README.md"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
regex = "1.1"
|
|
||||||
nix = { version = "0.25.0", default-features = false, features = ["event", "fs", "process"] }
|
nix = { version = "0.25.0", default-features = false, features = ["event", "fs", "process"] }
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
|
oci-spec = { version = "0.10.0", optional = true }
|
||||||
|
zbus = "5.8"
|
||||||
|
bit-vec = "0.6"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
libc = "0.2.76"
|
libc = "0.2.76"
|
||||||
|
rand = "0.8"
|
||||||
|
nix = "0.25"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
oci = ["oci-spec"]
|
||||||
|
|||||||
34
Makefile
34
Makefile
@@ -19,9 +19,37 @@ build: debug
|
|||||||
# Tests and linters
|
# Tests and linters
|
||||||
#
|
#
|
||||||
|
|
||||||
.PHONY: test
|
# Tests that manipulate cgroups should run in sequence, so that
|
||||||
test:
|
# `--test-threads=1` is used.
|
||||||
cargo test -- --color always --nocapture
|
test: test-systemd test-fs-manager test-systemd-manager
|
||||||
|
cargo test --all-features -- --color always \
|
||||||
|
--nocapture \
|
||||||
|
--skip systemd::dbus::client::tests \
|
||||||
|
--skip manager::fs::tests \
|
||||||
|
--skip manager::systemd::tests
|
||||||
|
|
||||||
|
.PHONY: test-systemd
|
||||||
|
# Tests that manipulate cgroups should run in sequence, so that
|
||||||
|
# `--test-threads=1` is used.
|
||||||
|
test-systemd:
|
||||||
|
cargo test --package cgroups-rs --lib \
|
||||||
|
-- systemd::dbus::client::tests \
|
||||||
|
--color always --nocapture \
|
||||||
|
--test-threads=1
|
||||||
|
|
||||||
|
.PHONY: test-fs-manager
|
||||||
|
# See test-systemd
|
||||||
|
test-fs-manager:
|
||||||
|
cargo test --all-features --package cgroups-rs \
|
||||||
|
--lib -- manager::fs::tests \
|
||||||
|
--color always --nocapture --test-threads=1
|
||||||
|
|
||||||
|
.PHONY: test-systemd-manager
|
||||||
|
# See test-systemd
|
||||||
|
test-systemd-manager:
|
||||||
|
cargo test --all-features --package cgroups-rs \
|
||||||
|
--lib -- manager::systemd::tests \
|
||||||
|
--color always --nocapture --test-threads=1
|
||||||
|
|
||||||
.PHONY: check
|
.PHONY: check
|
||||||
check: fmt clippy
|
check: fmt clippy
|
||||||
|
|||||||
15
README.md
15
README.md
@@ -1,15 +1,14 @@
|
|||||||
# cgroups-rs 
|
# cgroups-rs
|
||||||
Native Rust library for managing control groups under Linux
|
|
||||||
|
|
||||||
Both v1 and v2 of cgroups are supported.
|
[](https://crates.io/crates/cgroups-rs)
|
||||||
|
|
||||||
# Examples
|
Native Rust library for managing Linux control groups. Supports both cgroups v1 and v2.
|
||||||
|
|
||||||
## Create a control group using the builder pattern
|
## Examples
|
||||||
|
|
||||||
``` rust
|
|
||||||
|
|
||||||
|
### Create a control group using the builder pattern
|
||||||
|
|
||||||
|
```rust
|
||||||
use cgroups_rs::*;
|
use cgroups_rs::*;
|
||||||
use cgroups_rs::cgroup_builder::*;
|
use cgroups_rs::cgroup_builder::*;
|
||||||
|
|
||||||
@@ -44,7 +43,7 @@ cg.delete();
|
|||||||
// major version change.
|
// major version change.
|
||||||
```
|
```
|
||||||
|
|
||||||
# Disclaimer
|
## Disclaimer
|
||||||
|
|
||||||
This crate is licensed under:
|
This crate is licensed under:
|
||||||
|
|
||||||
|
|||||||
38
ci/qemu/README.md
Normal file
38
ci/qemu/README.md
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
# Reproducible cgroup QEMU test environments
|
||||||
|
|
||||||
|
These scripts boot the same pinned Ubuntu 22.04 guest in explicit cgroup v1
|
||||||
|
and cgroup v2 modes. Both the cgroupfs and systemd backends are therefore
|
||||||
|
tested against real kernel interfaces without inheriting the GitHub runner's
|
||||||
|
cgroup hierarchy, systemd version, mount layout, or delegation policy.
|
||||||
|
|
||||||
|
The workflow intentionally defaults to QEMU TCG software emulation. GitHub
|
||||||
|
documents Android SDK hardware acceleration on Linux runners, but it does not
|
||||||
|
promise general-purpose nested virtualization or `/dev/kvm` access.
|
||||||
|
|
||||||
|
To keep TCG practical, Rust test executables are cross-compiled as static musl
|
||||||
|
binaries on the GitHub runner. Only the completed executables run inside the
|
||||||
|
guest. `run-tests-in-cgroup-vm.sh` transfers them together with
|
||||||
|
`run-test-binaries-in-guest.sh`, which contains the guest-side test ordering
|
||||||
|
and failure cleanup.
|
||||||
|
|
||||||
|
The scripts are named for their responsibilities:
|
||||||
|
|
||||||
|
| Script | Responsibility |
|
||||||
|
| --- | --- |
|
||||||
|
| `build-static-test-binaries.sh` | Cross-compile portable Rust test harnesses |
|
||||||
|
| `boot-cgroup-test-vm.sh` | Configure, boot, and verify a v1 or v2 QEMU guest |
|
||||||
|
| `run-tests-in-cgroup-vm.sh` | Transfer tests and coordinate execution over SSH |
|
||||||
|
| `run-test-binaries-in-guest.sh` | Execute test harnesses inside the guest |
|
||||||
|
| `stop-cgroup-test-vm.sh` | Stop the disposable QEMU guest |
|
||||||
|
|
||||||
|
The test matrix runs entirely in QEMU:
|
||||||
|
|
||||||
|
| Guest mode | Filesystem backend | systemd backend |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| Ubuntu 22.04, cgroup v1 | cgroup v1 | cgroup v1 |
|
||||||
|
| Ubuntu 22.04, cgroup v2 | cgroup v2 | cgroup v2 |
|
||||||
|
|
||||||
|
Both modes are selected with an explicit
|
||||||
|
`systemd.unified_cgroup_hierarchy=<0|1>` kernel argument. Each guest must pass
|
||||||
|
an exact hierarchy check before tests start. This is important because several
|
||||||
|
existing tests return early when their expected cgroup version is unavailable.
|
||||||
201
ci/qemu/boot-cgroup-test-vm.sh
Executable file
201
ci/qemu/boot-cgroup-test-vm.sh
Executable file
@@ -0,0 +1,201 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Start an Ubuntu 22.04 VM in an explicit cgroup mode. TCG is the default
|
||||||
|
# accelerator because standard GitHub-hosted runners do not promise
|
||||||
|
# general-purpose nested virtualization. Set QEMU_ACCEL=kvm explicitly when
|
||||||
|
# running on a host where /dev/kvm is part of the supported environment.
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
readonly USAGE="usage: boot-cgroup-test-vm.sh STATE_DIR BASE_IMAGE PUBLIC_KEY HIERARCHY"
|
||||||
|
readonly STATE_DIR="${1:?${USAGE}}"
|
||||||
|
readonly BASE_IMAGE="${2:?${USAGE}}"
|
||||||
|
readonly PUBLIC_KEY="${3:?${USAGE}}"
|
||||||
|
readonly PRIVATE_KEY="${PUBLIC_KEY%.pub}"
|
||||||
|
readonly HIERARCHY="${4:?${USAGE}}"
|
||||||
|
readonly SSH_PORT="${CGROUP_VM_SSH_PORT:-2222}"
|
||||||
|
readonly QEMU_ACCEL="${QEMU_ACCEL:-tcg}"
|
||||||
|
readonly SSH_USER="runner"
|
||||||
|
|
||||||
|
case "${HIERARCHY}" in
|
||||||
|
v1)
|
||||||
|
unified="0"
|
||||||
|
hierarchy_check='
|
||||||
|
grep -qw systemd.unified_cgroup_hierarchy=0 /proc/cmdline &&
|
||||||
|
test "$(stat -fc %T /sys/fs/cgroup)" != cgroup2fs &&
|
||||||
|
test -n "$(findmnt -rn -t cgroup -o TARGET)"
|
||||||
|
'
|
||||||
|
;;
|
||||||
|
v2)
|
||||||
|
unified="1"
|
||||||
|
hierarchy_check='
|
||||||
|
grep -qw systemd.unified_cgroup_hierarchy=1 /proc/cmdline &&
|
||||||
|
test "$(stat -fc %T /sys/fs/cgroup)" = cgroup2fs &&
|
||||||
|
test -f /sys/fs/cgroup/cgroup.controllers
|
||||||
|
'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "unsupported cgroup hierarchy: ${HIERARCHY}" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
for command in cloud-localds qemu-img qemu-system-x86_64 ssh; do
|
||||||
|
if ! command -v "${command}" >/dev/null; then
|
||||||
|
echo "required command is missing: ${command}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ -e "${STATE_DIR}" ]]; then
|
||||||
|
echo "state directory already exists: ${STATE_DIR}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [[ ! -f "${BASE_IMAGE}" ]]; then
|
||||||
|
echo "base image does not exist: ${BASE_IMAGE}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [[ ! -f "${PUBLIC_KEY}" ]]; then
|
||||||
|
echo "SSH public key does not exist: ${PUBLIC_KEY}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [[ ! -f "${PRIVATE_KEY}" ]]; then
|
||||||
|
echo "SSH private key does not exist: ${PRIVATE_KEY}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p "${STATE_DIR}"
|
||||||
|
|
||||||
|
readonly DISK="${STATE_DIR}/root.qcow2"
|
||||||
|
readonly SEED="${STATE_DIR}/seed.qcow2"
|
||||||
|
readonly USER_DATA="${STATE_DIR}/user-data"
|
||||||
|
readonly META_DATA="${STATE_DIR}/meta-data"
|
||||||
|
readonly CONSOLE_LOG="${STATE_DIR}/console.log"
|
||||||
|
readonly QEMU_LOG="${STATE_DIR}/qemu.log"
|
||||||
|
readonly PID_FILE="${STATE_DIR}/qemu.pid"
|
||||||
|
|
||||||
|
qemu-img create \
|
||||||
|
-q \
|
||||||
|
-f qcow2 \
|
||||||
|
-F qcow2 \
|
||||||
|
-b "$(realpath "${BASE_IMAGE}")" \
|
||||||
|
"${DISK}" \
|
||||||
|
8G
|
||||||
|
|
||||||
|
ssh_key="$(<"${PUBLIC_KEY}")"
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "#cloud-config"
|
||||||
|
echo "users:"
|
||||||
|
echo " - default"
|
||||||
|
echo " - name: ${SSH_USER}"
|
||||||
|
echo " groups: [adm, sudo]"
|
||||||
|
echo " shell: /bin/bash"
|
||||||
|
echo " sudo: ALL=(ALL) NOPASSWD:ALL"
|
||||||
|
echo " ssh_authorized_keys:"
|
||||||
|
printf ' - %s\n' "${ssh_key}"
|
||||||
|
echo "ssh_pwauth: false"
|
||||||
|
echo "disable_root: true"
|
||||||
|
echo "write_files:"
|
||||||
|
echo " - path: /etc/default/grub.d/99-cgroup-hierarchy.cfg"
|
||||||
|
echo " owner: root:root"
|
||||||
|
echo " permissions: '0644'"
|
||||||
|
echo " content: |"
|
||||||
|
echo " GRUB_CMDLINE_LINUX=\"\${GRUB_CMDLINE_LINUX} systemd.unified_cgroup_hierarchy=${unified}\""
|
||||||
|
echo "runcmd:"
|
||||||
|
echo " - [update-grub]"
|
||||||
|
echo " - [touch, /var/lib/cgroup-hierarchy-configured]"
|
||||||
|
echo "power_state:"
|
||||||
|
echo " mode: reboot"
|
||||||
|
echo " delay: now"
|
||||||
|
echo " timeout: 120"
|
||||||
|
echo " condition: test -f /var/lib/cgroup-hierarchy-configured"
|
||||||
|
} >"${USER_DATA}"
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "instance-id: cgroups-rs-${HIERARCHY}"
|
||||||
|
echo "local-hostname: cgroups-rs-${HIERARCHY}"
|
||||||
|
} >"${META_DATA}"
|
||||||
|
|
||||||
|
cloud-localds --disk-format qcow2 "${SEED}" "${USER_DATA}" "${META_DATA}"
|
||||||
|
|
||||||
|
case "${QEMU_ACCEL}" in
|
||||||
|
tcg)
|
||||||
|
accel_args=(-accel "tcg,thread=multi" -cpu max)
|
||||||
|
;;
|
||||||
|
kvm)
|
||||||
|
if [[ ! -r /dev/kvm || ! -w /dev/kvm ]]; then
|
||||||
|
echo "QEMU_ACCEL=kvm requested but /dev/kvm is not accessible" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
accel_args=(-accel kvm -cpu host)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "unsupported QEMU_ACCEL value: ${QEMU_ACCEL}" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
firmware_args=()
|
||||||
|
if [[ -f /usr/share/OVMF/OVMF_CODE.fd && -f /usr/share/OVMF/OVMF_VARS.fd ]]; then
|
||||||
|
cp /usr/share/OVMF/OVMF_VARS.fd "${STATE_DIR}/OVMF_VARS.fd"
|
||||||
|
firmware_args=(
|
||||||
|
-drive "if=pflash,format=raw,readonly=on,file=/usr/share/OVMF/OVMF_CODE.fd"
|
||||||
|
-drive "if=pflash,format=raw,file=${STATE_DIR}/OVMF_VARS.fd"
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Starting cgroup ${HIERARCHY} guest with QEMU accelerator: ${QEMU_ACCEL}"
|
||||||
|
|
||||||
|
qemu-system-x86_64 \
|
||||||
|
-name "cgroups-rs-${HIERARCHY}" \
|
||||||
|
-machine q35 \
|
||||||
|
"${accel_args[@]}" \
|
||||||
|
-smp 2 \
|
||||||
|
-m 4096 \
|
||||||
|
"${firmware_args[@]}" \
|
||||||
|
-drive "file=${DISK},if=virtio,format=qcow2,cache=writeback" \
|
||||||
|
-drive "file=${SEED},if=virtio,format=qcow2,readonly=on" \
|
||||||
|
-device virtio-rng-pci \
|
||||||
|
-device virtio-net-pci,netdev=net0 \
|
||||||
|
-netdev "user,id=net0,hostfwd=tcp:127.0.0.1:${SSH_PORT}-:22" \
|
||||||
|
-display none \
|
||||||
|
-monitor none \
|
||||||
|
-serial "file:${CONSOLE_LOG}" \
|
||||||
|
-D "${QEMU_LOG}" \
|
||||||
|
-pidfile "${PID_FILE}" \
|
||||||
|
-daemonize
|
||||||
|
|
||||||
|
ssh_options=(
|
||||||
|
-i "${PRIVATE_KEY}"
|
||||||
|
-p "${SSH_PORT}"
|
||||||
|
-o BatchMode=yes
|
||||||
|
-o ConnectTimeout=5
|
||||||
|
-o StrictHostKeyChecking=no
|
||||||
|
-o UserKnownHostsFile=/dev/null
|
||||||
|
)
|
||||||
|
|
||||||
|
# The first boot applies the requested hierarchy kernel argument and reboots.
|
||||||
|
# Waiting for the exact filesystem type prevents that first boot from being
|
||||||
|
# mistaken for the requested test environment.
|
||||||
|
deadline=$((SECONDS + 1200))
|
||||||
|
while ((SECONDS < deadline)); do
|
||||||
|
if ! kill -0 "$(<"${PID_FILE}")" 2>/dev/null; then
|
||||||
|
echo "QEMU exited before the guest became ready" >&2
|
||||||
|
tail -n 200 "${CONSOLE_LOG}" >&2 || true
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ssh "${ssh_options[@]}" "${SSH_USER}@127.0.0.1" \
|
||||||
|
"${hierarchy_check}" \
|
||||||
|
>/dev/null 2>&1; then
|
||||||
|
echo "The cgroup ${HIERARCHY} guest is ready"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
sleep 5
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "timed out waiting for the cgroup ${HIERARCHY} guest" >&2
|
||||||
|
tail -n 200 "${CONSOLE_LOG}" >&2 || true
|
||||||
|
exit 1
|
||||||
59
ci/qemu/build-static-test-binaries.sh
Executable file
59
ci/qemu/build-static-test-binaries.sh
Executable file
@@ -0,0 +1,59 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Build portable test executables on the GitHub runner. The executables are
|
||||||
|
# copied into the cgroup VM and run there, avoiding a Rust build under QEMU
|
||||||
|
# software emulation.
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
readonly TARGET="x86_64-unknown-linux-musl"
|
||||||
|
readonly OUTPUT_DIR="${1:?usage: build-static-test-binaries.sh OUTPUT_DIR}"
|
||||||
|
|
||||||
|
if [[ -e "${OUTPUT_DIR}" ]]; then
|
||||||
|
echo "output directory already exists: ${OUTPUT_DIR}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p "${OUTPUT_DIR}"
|
||||||
|
|
||||||
|
messages="$(mktemp)"
|
||||||
|
executables="$(mktemp)"
|
||||||
|
manifest="$(mktemp)"
|
||||||
|
trap 'rm -f "${messages}" "${executables}" "${manifest}"' EXIT
|
||||||
|
|
||||||
|
cargo test \
|
||||||
|
--all-features \
|
||||||
|
--target "${TARGET}" \
|
||||||
|
--no-run \
|
||||||
|
--message-format=json >"${messages}"
|
||||||
|
|
||||||
|
jq -r '
|
||||||
|
select(
|
||||||
|
.reason == "compiler-artifact"
|
||||||
|
and .profile.test == true
|
||||||
|
and .executable != null
|
||||||
|
)
|
||||||
|
| .executable
|
||||||
|
' "${messages}" | sort -u >"${executables}"
|
||||||
|
|
||||||
|
if [[ ! -s "${executables}" ]]; then
|
||||||
|
echo "cargo did not produce any test executables" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
while IFS= read -r executable; do
|
||||||
|
destination="${OUTPUT_DIR}/$(basename "${executable}")"
|
||||||
|
cp "${executable}" "${destination}"
|
||||||
|
strip "${destination}"
|
||||||
|
|
||||||
|
if readelf -l "${destination}" | grep -q "Requesting program interpreter"; then
|
||||||
|
echo "test executable is dynamically linked: ${destination}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done <"${executables}"
|
||||||
|
|
||||||
|
find "${OUTPUT_DIR}" -maxdepth 1 -type f -printf '%f\n' | sort >"${manifest}"
|
||||||
|
mv "${manifest}" "${OUTPUT_DIR}/manifest"
|
||||||
|
|
||||||
|
echo "Built $(wc -l <"${OUTPUT_DIR}/manifest") static test executables:"
|
||||||
|
sed 's/^/ /' "${OUTPUT_DIR}/manifest"
|
||||||
54
ci/qemu/run-test-binaries-in-guest.sh
Executable file
54
ci/qemu/run-test-binaries-in-guest.sh
Executable file
@@ -0,0 +1,54 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Run the compiled Rust test harnesses inside a cgroup test VM.
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
readonly TEST_DIR="${1:?usage: run-test-binaries-in-guest.sh TEST_DIR}"
|
||||||
|
|
||||||
|
cd "${TEST_DIR}"
|
||||||
|
|
||||||
|
cleanup_failed_test() {
|
||||||
|
# A failed test can leave a spawned helper holding the SSH channel open.
|
||||||
|
# The VM is disposable, so terminate only the helper commands used by
|
||||||
|
# this suite before returning.
|
||||||
|
sudo pkill -KILL -x sleep || true
|
||||||
|
sudo pkill -KILL -x yes || true
|
||||||
|
}
|
||||||
|
|
||||||
|
run_test() {
|
||||||
|
local test_binary="$1"
|
||||||
|
shift
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "Running ${test_binary} $*"
|
||||||
|
|
||||||
|
local result=0
|
||||||
|
sudo -E "./${test_binary}" "$@" --color always --nocapture \
|
||||||
|
--test-threads=1 || result=$?
|
||||||
|
if ((result != 0)); then
|
||||||
|
cleanup_failed_test
|
||||||
|
exit "${result}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
library_test="$(grep -E "^cgroups_rs-" manifest)"
|
||||||
|
if [[ "$(wc -l <<<"${library_test}")" -ne 1 ]]; then
|
||||||
|
echo "expected exactly one library test executable" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Match the phases in the Makefile: cgroup-manipulating suites are isolated
|
||||||
|
# and sequential, followed by all remaining unit tests.
|
||||||
|
run_test "${library_test}" systemd::dbus::client::tests
|
||||||
|
run_test "${library_test}" manager::fs::tests
|
||||||
|
run_test "${library_test}" manager::systemd::tests
|
||||||
|
run_test "${library_test}" \
|
||||||
|
--skip systemd::dbus::client::tests \
|
||||||
|
--skip manager::fs::tests \
|
||||||
|
--skip manager::systemd::tests
|
||||||
|
|
||||||
|
while IFS= read -r test_binary; do
|
||||||
|
[[ "${test_binary}" == "${library_test}" ]] && continue
|
||||||
|
run_test "${test_binary}"
|
||||||
|
done < manifest
|
||||||
86
ci/qemu/run-tests-in-cgroup-vm.sh
Executable file
86
ci/qemu/run-tests-in-cgroup-vm.sh
Executable file
@@ -0,0 +1,86 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Copy statically linked test executables into a cgroup VM and run them
|
||||||
|
# sequentially. Running every executable covers library and integration tests.
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
readonly USAGE="usage: run-tests-in-cgroup-vm.sh STATE_DIR TEST_BINARIES PRIVATE_KEY HIERARCHY"
|
||||||
|
readonly STATE_DIR="${1:?${USAGE}}"
|
||||||
|
readonly TEST_BINARIES="${2:?${USAGE}}"
|
||||||
|
readonly SSH_PORT="${CGROUP_VM_SSH_PORT:-2222}"
|
||||||
|
readonly SSH_USER="runner"
|
||||||
|
readonly PRIVATE_KEY="${3:?${USAGE}}"
|
||||||
|
readonly HIERARCHY="${4:?${USAGE}}"
|
||||||
|
readonly SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
readonly GUEST_TEST_RUNNER="${SCRIPT_DIR}/run-test-binaries-in-guest.sh"
|
||||||
|
|
||||||
|
case "${HIERARCHY}" in
|
||||||
|
v1)
|
||||||
|
hierarchy_check='
|
||||||
|
grep -qw systemd.unified_cgroup_hierarchy=0 /proc/cmdline &&
|
||||||
|
test "$(stat -fc %T /sys/fs/cgroup)" != cgroup2fs &&
|
||||||
|
test -n "$(findmnt -rn -t cgroup -o TARGET)"
|
||||||
|
'
|
||||||
|
;;
|
||||||
|
v2)
|
||||||
|
hierarchy_check='
|
||||||
|
grep -qw systemd.unified_cgroup_hierarchy=1 /proc/cmdline &&
|
||||||
|
test "$(stat -fc %T /sys/fs/cgroup)" = cgroup2fs &&
|
||||||
|
test -f /sys/fs/cgroup/cgroup.controllers
|
||||||
|
'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "unsupported cgroup hierarchy: ${HIERARCHY}" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ ! -f "${STATE_DIR}/qemu.pid" ]]; then
|
||||||
|
echo "QEMU pid file is missing from ${STATE_DIR}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [[ ! -f "${TEST_BINARIES}/manifest" ]]; then
|
||||||
|
echo "test manifest is missing from ${TEST_BINARIES}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [[ ! -f "${PRIVATE_KEY}" ]]; then
|
||||||
|
echo "SSH private key is missing: ${PRIVATE_KEY}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [[ ! -f "${GUEST_TEST_RUNNER}" ]]; then
|
||||||
|
echo "guest test runner is missing: ${GUEST_TEST_RUNNER}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
ssh_options=(
|
||||||
|
-i "${PRIVATE_KEY}"
|
||||||
|
-p "${SSH_PORT}"
|
||||||
|
-o BatchMode=yes
|
||||||
|
-o ConnectTimeout=10
|
||||||
|
-o StrictHostKeyChecking=no
|
||||||
|
-o UserKnownHostsFile=/dev/null
|
||||||
|
)
|
||||||
|
|
||||||
|
echo "Guest hierarchy:"
|
||||||
|
ssh "${ssh_options[@]}" "${SSH_USER}@127.0.0.1" \
|
||||||
|
'set -e;
|
||||||
|
systemd --version | head -n 1;
|
||||||
|
findmnt -rn -t cgroup,cgroup2 -o FSTYPE,TARGET,OPTIONS;
|
||||||
|
echo;
|
||||||
|
cat /proc/cgroups'
|
||||||
|
|
||||||
|
ssh "${ssh_options[@]}" "${SSH_USER}@127.0.0.1" \
|
||||||
|
"${hierarchy_check}"
|
||||||
|
|
||||||
|
ssh "${ssh_options[@]}" "${SSH_USER}@127.0.0.1" \
|
||||||
|
'mkdir -p /tmp/cgroups-rs-tests'
|
||||||
|
|
||||||
|
tar -czf - \
|
||||||
|
-C "${TEST_BINARIES}" . \
|
||||||
|
-C "${SCRIPT_DIR}" "$(basename "${GUEST_TEST_RUNNER}")" \
|
||||||
|
| ssh "${ssh_options[@]}" "${SSH_USER}@127.0.0.1" \
|
||||||
|
'tar -xzf - -C /tmp/cgroups-rs-tests'
|
||||||
|
|
||||||
|
ssh "${ssh_options[@]}" "${SSH_USER}@127.0.0.1" \
|
||||||
|
'bash /tmp/cgroups-rs-tests/run-test-binaries-in-guest.sh /tmp/cgroups-rs-tests'
|
||||||
53
ci/qemu/stop-cgroup-test-vm.sh
Executable file
53
ci/qemu/stop-cgroup-test-vm.sh
Executable file
@@ -0,0 +1,53 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Stop a cgroup test VM started by boot-cgroup-test-vm.sh.
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
readonly STATE_DIR="${1:?usage: stop-cgroup-test-vm.sh STATE_DIR}"
|
||||||
|
readonly PID_FILE="${STATE_DIR}/qemu.pid"
|
||||||
|
readonly DISK="${STATE_DIR}/root.qcow2"
|
||||||
|
|
||||||
|
if [[ ! -f "${PID_FILE}" ]]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
pid="$(<"${PID_FILE}")"
|
||||||
|
if ! kill -0 "${pid}" 2>/dev/null; then
|
||||||
|
rm -f -- "${PID_FILE}"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -r "/proc/${pid}/cmdline" ]]; then
|
||||||
|
echo "cannot verify process ${pid} from ${PID_FILE}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cmdline="$(tr '\0' '\n' <"/proc/${pid}/cmdline")"
|
||||||
|
if [[ "${cmdline}" != *"${DISK}"* ]]; then
|
||||||
|
echo "refusing to stop unrelated process ${pid} from stale ${PID_FILE}" >&2
|
||||||
|
rm -f -- "${PID_FILE}"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
kill "${pid}"
|
||||||
|
|
||||||
|
for _ in {1..20}; do
|
||||||
|
if ! kill -0 "${pid}" 2>/dev/null; then
|
||||||
|
rm -f -- "${PID_FILE}"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
kill -KILL "${pid}" 2>/dev/null || true
|
||||||
|
for _ in {1..20}; do
|
||||||
|
if ! kill -0 "${pid}" 2>/dev/null; then
|
||||||
|
rm -f -- "${PID_FILE}"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "QEMU process ${pid} did not stop" >&2
|
||||||
|
exit 1
|
||||||
387
src/cgroup.rs
387
src/cgroup.rs
@@ -1,387 +0,0 @@
|
|||||||
// Copyright (c) 2018 Levente Kurusa
|
|
||||||
// Copyright (c) 2020 Ant Group
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: Apache-2.0 or MIT
|
|
||||||
//
|
|
||||||
|
|
||||||
//! This module handles cgroup operations. Start here!
|
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
|
||||||
use crate::error::*;
|
|
||||||
|
|
||||||
use crate::{CgroupPid, ControllIdentifier, Controller, Hierarchy, Resources, Subsystem};
|
|
||||||
|
|
||||||
use std::collections::HashMap;
|
|
||||||
use std::convert::From;
|
|
||||||
use std::fs;
|
|
||||||
use std::path::{Path, PathBuf};
|
|
||||||
|
|
||||||
/// A control group is the central structure to this crate.
|
|
||||||
///
|
|
||||||
///
|
|
||||||
/// # What are control groups?
|
|
||||||
///
|
|
||||||
/// Lifting over from the Linux kernel sources:
|
|
||||||
///
|
|
||||||
/// > Control Groups provide a mechanism for aggregating/partitioning sets of
|
|
||||||
/// > tasks, and all their future children, into hierarchical groups with
|
|
||||||
/// > specialized behaviour.
|
|
||||||
///
|
|
||||||
/// This crate is an attempt at providing a Rust-native way of managing these cgroups.
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub struct Cgroup {
|
|
||||||
/// The list of subsystems that control this cgroup
|
|
||||||
subsystems: Vec<Subsystem>,
|
|
||||||
|
|
||||||
/// The hierarchy.
|
|
||||||
hier: Box<dyn Hierarchy>,
|
|
||||||
path: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Clone for Cgroup {
|
|
||||||
fn clone(&self) -> Self {
|
|
||||||
Cgroup {
|
|
||||||
subsystems: self.subsystems.clone(),
|
|
||||||
path: self.path.clone(),
|
|
||||||
hier: crate::hierarchies::auto(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for Cgroup {
|
|
||||||
fn default() -> Self {
|
|
||||||
Cgroup {
|
|
||||||
subsystems: Vec::new(),
|
|
||||||
hier: crate::hierarchies::auto(),
|
|
||||||
path: "".to_string(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Cgroup {
|
|
||||||
/// Create this control group.
|
|
||||||
fn create(&self) {
|
|
||||||
if self.hier.v2() {
|
|
||||||
let _ret = create_v2_cgroup(self.hier.root(), &self.path);
|
|
||||||
} else {
|
|
||||||
for subsystem in &self.subsystems {
|
|
||||||
subsystem.to_controller().create();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn v2(&self) -> bool {
|
|
||||||
self.hier.v2()
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create a new control group in the hierarchy `hier`, with name `path`.
|
|
||||||
///
|
|
||||||
/// Returns a handle to the control group that can be used to manipulate it.
|
|
||||||
pub fn new<P: AsRef<Path>>(hier: Box<dyn Hierarchy>, path: P) -> Cgroup {
|
|
||||||
let cg = Cgroup::load(hier, path);
|
|
||||||
cg.create();
|
|
||||||
cg
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create a new control group in the hierarchy `hier`, with name `path` and `relative_paths`
|
|
||||||
///
|
|
||||||
/// Returns a handle to the control group that can be used to manipulate it.
|
|
||||||
///
|
|
||||||
/// Note that this method is only meaningful for cgroup v1, call it is equivalent to call `new` in the v2 mode
|
|
||||||
pub fn new_with_relative_paths<P: AsRef<Path>>(
|
|
||||||
hier: Box<dyn Hierarchy>,
|
|
||||||
path: P,
|
|
||||||
relative_paths: HashMap<String, String>,
|
|
||||||
) -> Cgroup {
|
|
||||||
let cg = Cgroup::load_with_relative_paths(hier, path, relative_paths);
|
|
||||||
cg.create();
|
|
||||||
cg
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create a handle for a control group in the hierarchy `hier`, with name `path`.
|
|
||||||
///
|
|
||||||
/// Returns a handle to the control group (that possibly does not exist until `create()` has
|
|
||||||
/// been called on the cgroup.
|
|
||||||
pub fn load<P: AsRef<Path>>(hier: Box<dyn Hierarchy>, path: P) -> Cgroup {
|
|
||||||
let path = path.as_ref();
|
|
||||||
let mut subsystems = hier.subsystems();
|
|
||||||
if path.as_os_str() != "" {
|
|
||||||
subsystems = subsystems
|
|
||||||
.into_iter()
|
|
||||||
.map(|x| x.enter(path))
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
}
|
|
||||||
|
|
||||||
Cgroup {
|
|
||||||
path: path.to_str().unwrap().to_string(),
|
|
||||||
subsystems,
|
|
||||||
hier,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create a handle for a control group in the hierarchy `hier`, with name `path` and `relative_paths`
|
|
||||||
///
|
|
||||||
/// Returns a handle to the control group (that possibly does not exist until `create()` has
|
|
||||||
/// been called on the cgroup.
|
|
||||||
///
|
|
||||||
/// Note that this method is only meaningful for cgroup v1, call it is equivalent to call `load` in the v2 mode
|
|
||||||
pub fn load_with_relative_paths<P: AsRef<Path>>(
|
|
||||||
hier: Box<dyn Hierarchy>,
|
|
||||||
path: P,
|
|
||||||
relative_paths: HashMap<String, String>,
|
|
||||||
) -> Cgroup {
|
|
||||||
// relative_paths only valid for cgroup v1
|
|
||||||
if hier.v2() {
|
|
||||||
return Self::load(hier, path);
|
|
||||||
}
|
|
||||||
|
|
||||||
let path = path.as_ref();
|
|
||||||
let mut subsystems = hier.subsystems();
|
|
||||||
if path.as_os_str() != "" {
|
|
||||||
subsystems = subsystems
|
|
||||||
.into_iter()
|
|
||||||
.map(|x| {
|
|
||||||
let cn = x.controller_name();
|
|
||||||
if relative_paths.contains_key(&cn) {
|
|
||||||
let rp = relative_paths.get(&cn).unwrap();
|
|
||||||
let valid_path = rp.trim_start_matches('/').to_string();
|
|
||||||
let mut p = PathBuf::from(valid_path);
|
|
||||||
p.push(path);
|
|
||||||
x.enter(p.as_ref())
|
|
||||||
} else {
|
|
||||||
x.enter(path)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
}
|
|
||||||
|
|
||||||
Cgroup {
|
|
||||||
subsystems,
|
|
||||||
hier,
|
|
||||||
path: path.to_str().unwrap().to_string(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The list of subsystems that this control group supports.
|
|
||||||
pub fn subsystems(&self) -> &Vec<Subsystem> {
|
|
||||||
&self.subsystems
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Deletes the control group.
|
|
||||||
///
|
|
||||||
/// Note that this function makes no effort in cleaning up the descendant and the underlying
|
|
||||||
/// system call will fail if there are any descendants. Thus, one should check whether it was
|
|
||||||
/// actually removed, and remove the descendants first if not. In the future, this behavior
|
|
||||||
/// will change.
|
|
||||||
pub fn delete(&self) -> Result<()> {
|
|
||||||
if self.v2() {
|
|
||||||
if !self.path.is_empty() {
|
|
||||||
let mut p = self.hier.root();
|
|
||||||
p.push(self.path.clone());
|
|
||||||
return fs::remove_dir(p).map_err(|e| Error::with_cause(RemoveFailed, e));
|
|
||||||
}
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
|
|
||||||
self.subsystems.iter().try_for_each(|sub| match sub {
|
|
||||||
Subsystem::Pid(pidc) => pidc.delete(),
|
|
||||||
Subsystem::Mem(c) => c.delete(),
|
|
||||||
Subsystem::CpuSet(c) => c.delete(),
|
|
||||||
Subsystem::CpuAcct(c) => c.delete(),
|
|
||||||
Subsystem::Cpu(c) => c.delete(),
|
|
||||||
Subsystem::Devices(c) => c.delete(),
|
|
||||||
Subsystem::Freezer(c) => c.delete(),
|
|
||||||
Subsystem::NetCls(c) => c.delete(),
|
|
||||||
Subsystem::BlkIo(c) => c.delete(),
|
|
||||||
Subsystem::PerfEvent(c) => c.delete(),
|
|
||||||
Subsystem::NetPrio(c) => c.delete(),
|
|
||||||
Subsystem::HugeTlb(c) => c.delete(),
|
|
||||||
Subsystem::Rdma(c) => c.delete(),
|
|
||||||
Subsystem::Systemd(c) => c.delete(),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Apply a set of resource limits to the control group.
|
|
||||||
pub fn apply(&self, res: &Resources) -> Result<()> {
|
|
||||||
self.subsystems
|
|
||||||
.iter()
|
|
||||||
.try_fold((), |_, e| e.to_controller().apply(res))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Retrieve a container based on type inference.
|
|
||||||
///
|
|
||||||
/// ## Example:
|
|
||||||
///
|
|
||||||
/// ```text
|
|
||||||
/// let pids: &PidController = control_group.controller_of()
|
|
||||||
/// .expect("No pids controller attached!");
|
|
||||||
/// let cpu: &CpuController = control_group.controller_of()
|
|
||||||
/// .expect("No cpu controller attached!");
|
|
||||||
/// ```
|
|
||||||
pub fn controller_of<'a, T>(&'a self) -> Option<&'a T>
|
|
||||||
where
|
|
||||||
&'a T: From<&'a Subsystem>,
|
|
||||||
T: Controller + ControllIdentifier,
|
|
||||||
{
|
|
||||||
for i in &self.subsystems {
|
|
||||||
if i.to_controller().control_type() == T::controller_type() {
|
|
||||||
// N.B.:
|
|
||||||
// https://play.rust-lang.org/?gist=978b2846bacebdaa00be62374f4f4334&version=stable&mode=debug&edition=2015
|
|
||||||
return Some(i.into());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
None
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Removes a task from the control group.
|
|
||||||
///
|
|
||||||
/// Note that this means that the task will be moved back to the root control group in the
|
|
||||||
/// hierarchy and any rules applied to that control group will _still_ apply to the task.
|
|
||||||
pub fn remove_task(&self, pid: CgroupPid) {
|
|
||||||
let _ = self.hier.root_control_group().add_task(pid);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Attach a task to the control group.
|
|
||||||
pub fn add_task(&self, pid: CgroupPid) -> Result<()> {
|
|
||||||
if self.v2() {
|
|
||||||
let subsystems = self.subsystems();
|
|
||||||
if !subsystems.is_empty() {
|
|
||||||
let c = subsystems[0].to_controller();
|
|
||||||
c.add_task(&pid)
|
|
||||||
} else {
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
self.subsystems()
|
|
||||||
.iter()
|
|
||||||
.try_for_each(|sub| sub.to_controller().add_task(&pid))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Attach a task to the control group by thread group id.
|
|
||||||
pub fn add_task_by_tgid(&self, pid: CgroupPid) -> Result<()> {
|
|
||||||
self.subsystems()
|
|
||||||
.iter()
|
|
||||||
.try_for_each(|sub| sub.to_controller().add_task_by_tgid(&pid))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Set notify_on_release to the control group.
|
|
||||||
pub fn set_notify_on_release(&self, enable: bool) -> Result<()> {
|
|
||||||
self.subsystems()
|
|
||||||
.iter()
|
|
||||||
.try_for_each(|sub| sub.to_controller().set_notify_on_release(enable))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Set release_agent
|
|
||||||
pub fn set_release_agent(&self, path: &str) -> Result<()> {
|
|
||||||
self.hier
|
|
||||||
.root_control_group()
|
|
||||||
.subsystems()
|
|
||||||
.iter()
|
|
||||||
.try_for_each(|sub| sub.to_controller().set_release_agent(path))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns an Iterator that can be used to iterate over the tasks that are currently in the
|
|
||||||
/// control group.
|
|
||||||
pub fn tasks(&self) -> Vec<CgroupPid> {
|
|
||||||
// Collect the tasks from all subsystems
|
|
||||||
let mut v = if self.v2() {
|
|
||||||
let subsystems = self.subsystems();
|
|
||||||
if !subsystems.is_empty() {
|
|
||||||
let c = subsystems[0].to_controller();
|
|
||||||
c.tasks()
|
|
||||||
} else {
|
|
||||||
vec![]
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
self.subsystems()
|
|
||||||
.iter()
|
|
||||||
.map(|x| x.to_controller().tasks())
|
|
||||||
.fold(vec![], |mut acc, mut x| {
|
|
||||||
acc.append(&mut x);
|
|
||||||
acc
|
|
||||||
})
|
|
||||||
};
|
|
||||||
|
|
||||||
v.sort();
|
|
||||||
v.dedup();
|
|
||||||
v
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub const UNIFIED_MOUNTPOINT: &str = "/sys/fs/cgroup";
|
|
||||||
|
|
||||||
fn enable_controllers(controllers: &[String], path: &Path) {
|
|
||||||
let f = path.join("cgroup.subtree_control");
|
|
||||||
for c in controllers {
|
|
||||||
let body = format!("+{}", c);
|
|
||||||
let _rest = fs::write(f.as_path(), body.as_bytes());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn supported_controllers() -> Vec<String> {
|
|
||||||
let p = format!("{}/{}", UNIFIED_MOUNTPOINT, "cgroup.controllers");
|
|
||||||
let ret = fs::read_to_string(p.as_str());
|
|
||||||
ret.unwrap_or_default()
|
|
||||||
.split(' ')
|
|
||||||
.map(|x| x.to_string())
|
|
||||||
.collect::<Vec<String>>()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn create_v2_cgroup(root: PathBuf, path: &str) -> Result<()> {
|
|
||||||
// controler list ["memory", "cpu"]
|
|
||||||
let controllers = supported_controllers();
|
|
||||||
let mut fp = root;
|
|
||||||
|
|
||||||
// enable for root
|
|
||||||
enable_controllers(&controllers, &fp);
|
|
||||||
|
|
||||||
// path: "a/b/c"
|
|
||||||
let elements = path.split('/').collect::<Vec<&str>>();
|
|
||||||
let last_index = elements.len() - 1;
|
|
||||||
for (i, ele) in elements.iter().enumerate() {
|
|
||||||
// ROOT/a
|
|
||||||
fp.push(ele);
|
|
||||||
// create dir, need not check if is a file or directory
|
|
||||||
if !fp.exists() {
|
|
||||||
if let Err(e) = std::fs::create_dir(fp.clone()) {
|
|
||||||
return Err(Error::with_cause(ErrorKind::FsError, e));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if i < last_index {
|
|
||||||
// enable controllers for substree
|
|
||||||
enable_controllers(&controllers, &fp);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_cgroups_relative_paths() -> Result<HashMap<String, String>> {
|
|
||||||
let path = "/proc/self/cgroup".to_string();
|
|
||||||
get_cgroups_relative_paths_by_path(path)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_cgroups_relative_paths_by_pid(pid: u32) -> Result<HashMap<String, String>> {
|
|
||||||
let path = format!("/proc/{}/cgroup", pid);
|
|
||||||
get_cgroups_relative_paths_by_path(path)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_cgroups_relative_paths_by_path(path: String) -> Result<HashMap<String, String>> {
|
|
||||||
let mut m = HashMap::new();
|
|
||||||
let content =
|
|
||||||
fs::read_to_string(path.clone()).map_err(|e| Error::with_cause(ReadFailed(path), e))?;
|
|
||||||
for l in content.lines() {
|
|
||||||
let fl: Vec<&str> = l.split(':').collect();
|
|
||||||
if fl.len() != 3 {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let keys: Vec<&str> = fl[1].split(',').collect();
|
|
||||||
for key in &keys {
|
|
||||||
m.insert(key.to_string(), fl[2].to_string());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(m)
|
|
||||||
}
|
|
||||||
@@ -11,11 +11,11 @@
|
|||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::{read_string_from, read_u64_from};
|
use crate::fs::{read_string_from, read_u64_from};
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
BlkIoResources, ControllIdentifier, ControllerInternal, Controllers, CustomizedAttribute,
|
BlkIoResources, ControllIdentifier, ControllerInternal, Controllers, CustomizedAttribute,
|
||||||
Resources, Subsystem,
|
Resources, Subsystem,
|
||||||
};
|
};
|
||||||
@@ -43,7 +43,7 @@ pub struct BlkIoData {
|
|||||||
pub data: u64,
|
pub data: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Eq, PartialEq, Debug)]
|
#[derive(Eq, PartialEq, Debug, Default)]
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
/// Per-device activity from the control group.
|
/// Per-device activity from the control group.
|
||||||
pub struct IoService {
|
pub struct IoService {
|
||||||
@@ -59,6 +59,8 @@ pub struct IoService {
|
|||||||
pub sync: u64,
|
pub sync: u64,
|
||||||
/// How many items were asynchronously transferred.
|
/// How many items were asynchronously transferred.
|
||||||
pub r#async: u64,
|
pub r#async: u64,
|
||||||
|
/// How many items were discarded.
|
||||||
|
pub discard: u64,
|
||||||
/// Total number of items transferred.
|
/// Total number of items transferred.
|
||||||
pub total: u64,
|
pub total: u64,
|
||||||
}
|
}
|
||||||
@@ -87,44 +89,62 @@ pub struct IoStat {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn parse_io_service(s: String) -> Result<Vec<IoService>> {
|
fn parse_io_service(s: String) -> Result<Vec<IoService>> {
|
||||||
s.lines()
|
let mut io_services = Vec::<IoService>::new();
|
||||||
|
let mut io_service = IoService::default();
|
||||||
|
|
||||||
|
let lines = s
|
||||||
|
.lines()
|
||||||
.filter(|x| x.split_whitespace().count() == 3)
|
.filter(|x| x.split_whitespace().count() == 3)
|
||||||
.map(|x| {
|
.map(|x| {
|
||||||
let mut spl = x.split_whitespace();
|
let mut spl = x.split_whitespace();
|
||||||
(spl.next().unwrap(), spl.next().unwrap(), spl.next().unwrap())
|
(
|
||||||
|
spl.next().unwrap(),
|
||||||
|
spl.next().unwrap(),
|
||||||
|
spl.next().unwrap(),
|
||||||
|
)
|
||||||
})
|
})
|
||||||
.map(|(a, b, c)| {
|
.map(|(a, b, c)| {
|
||||||
let mut spl = a.split(':');
|
let mut spl = a.split(':');
|
||||||
(spl.next().unwrap(), spl.next().unwrap(), b, c)
|
(
|
||||||
})
|
spl.next().unwrap().parse::<i16>(),
|
||||||
.collect::<Vec<_>>()
|
spl.next().unwrap().parse::<i16>(),
|
||||||
.chunks(5)
|
b,
|
||||||
.map(|x| {
|
c,
|
||||||
match x {
|
)
|
||||||
[(major, minor, "Read", read_val), (_, _, "Write", write_val),
|
|
||||||
(_, _, "Sync", sync_val), (_, _, "Async", async_val),
|
|
||||||
(_, _, "Total", total_val)] =>
|
|
||||||
Some(IoService {
|
|
||||||
major: major.parse::<i16>().unwrap(),
|
|
||||||
minor: minor.parse::<i16>().unwrap(),
|
|
||||||
read: read_val.parse::<u64>().unwrap(),
|
|
||||||
write: write_val.parse::<u64>().unwrap(),
|
|
||||||
sync: sync_val.parse::<u64>().unwrap(),
|
|
||||||
r#async: async_val.parse::<u64>().unwrap(),
|
|
||||||
total: total_val.parse::<u64>().unwrap(),
|
|
||||||
}),
|
|
||||||
_ => None,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.fold(Ok(Vec::new()), |acc, x| {
|
|
||||||
if acc.is_err() || x.is_none() {
|
|
||||||
Err(Error::new(ParseError))
|
|
||||||
} else {
|
|
||||||
let mut acc = acc.unwrap();
|
|
||||||
acc.push(x.unwrap());
|
|
||||||
Ok(acc)
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
for (major_num, minor_num, op, val) in lines.iter() {
|
||||||
|
let major = *major_num.as_ref().map_err(|_| Error::new(ParseError))?;
|
||||||
|
let minor = *minor_num.as_ref().map_err(|_| Error::new(ParseError))?;
|
||||||
|
|
||||||
|
if (major != io_service.major || minor != io_service.minor) && io_service.major != 0 {
|
||||||
|
// new block device
|
||||||
|
io_services.push(io_service);
|
||||||
|
io_service = IoService::default();
|
||||||
|
}
|
||||||
|
|
||||||
|
io_service.major = major;
|
||||||
|
io_service.minor = minor;
|
||||||
|
|
||||||
|
let val = val.parse::<u64>().map_err(|_| Error::new(ParseError))?;
|
||||||
|
|
||||||
|
match *op {
|
||||||
|
"Read" => io_service.read = val,
|
||||||
|
"Write" => io_service.write = val,
|
||||||
|
"Sync" => io_service.sync = val,
|
||||||
|
"Async" => io_service.r#async = val,
|
||||||
|
"Discard" => io_service.discard = val,
|
||||||
|
"Total" => io_service.total = val,
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if io_service.major != 0 {
|
||||||
|
io_services.push(io_service);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(io_services)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_value(s: &str) -> String {
|
fn get_value(s: &str) -> String {
|
||||||
@@ -161,13 +181,14 @@ fn parse_io_stat(s: String) -> Vec<IoStat> {
|
|||||||
|
|
||||||
fn parse_io_service_total(s: String) -> Result<u64> {
|
fn parse_io_service_total(s: String) -> Result<u64> {
|
||||||
s.lines()
|
s.lines()
|
||||||
.filter(|x| x.split_whitespace().count() == 2)
|
.find_map(|line| {
|
||||||
.fold(Err(Error::new(ParseError)), |_, x| {
|
let mut parts = line.split_whitespace();
|
||||||
match x.split_whitespace().collect::<Vec<_>>().as_slice() {
|
match (parts.next(), parts.next(), parts.next()) {
|
||||||
["Total", val] => val.parse::<u64>().map_err(|_| Error::new(ParseError)),
|
(Some("Total"), Some(val), None) => val.parse::<u64>().ok(),
|
||||||
_ => Err(Error::new(ParseError)),
|
_ => None,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
.ok_or_else(|| Error::new(ParseError))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_blkio_data(s: String) -> Result<Vec<BlkIoData>> {
|
fn parse_blkio_data(s: String) -> Result<Vec<BlkIoData>> {
|
||||||
@@ -410,10 +431,10 @@ impl<'a> From<&'a Subsystem> for &'a BlkIoController {
|
|||||||
|
|
||||||
impl BlkIoController {
|
impl BlkIoController {
|
||||||
/// Constructs a new `BlkIoController` with `root` serving as the root of the control group.
|
/// Constructs a new `BlkIoController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf, v2: bool) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf, v2: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
v2,
|
v2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -808,15 +829,16 @@ impl BlkIoController {
|
|||||||
impl CustomizedAttribute for BlkIoController {}
|
impl CustomizedAttribute for BlkIoController {}
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use crate::blkio::{parse_blkio_data, BlkIoData};
|
use crate::fs::blkio::{parse_blkio_data, BlkIoData};
|
||||||
use crate::blkio::{parse_io_service, parse_io_service_total, IoService};
|
use crate::fs::blkio::{parse_io_service, parse_io_service_total, IoService};
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
static TEST_VALUE: &str = "\
|
static TEST_VALUE: &str = "\
|
||||||
8:32 Read 4280320
|
8:32 Read 4280320
|
||||||
8:32 Write 0
|
8:32 Write 0
|
||||||
8:32 Sync 4280320
|
8:32 Sync 4280320
|
||||||
8:32 Async 0
|
8:32 Async 0
|
||||||
|
8:32 Discard 1
|
||||||
8:32 Total 4280320
|
8:32 Total 4280320
|
||||||
8:48 Read 5705479168
|
8:48 Read 5705479168
|
||||||
8:48 Write 56096055296
|
8:48 Write 56096055296
|
||||||
@@ -833,28 +855,6 @@ mod test {
|
|||||||
8:0 Sync 7192576
|
8:0 Sync 7192576
|
||||||
8:0 Async 0
|
8:0 Async 0
|
||||||
8:0 Total 7192576
|
8:0 Total 7192576
|
||||||
Total 61823067136
|
|
||||||
";
|
|
||||||
|
|
||||||
static TEST_WRONG_VALUE: &str = "\
|
|
||||||
8:32 Read 4280320
|
|
||||||
8:32 Write 0
|
|
||||||
8:32 Async 0
|
|
||||||
8:32 Total 4280320 8:48 Read 5705479168
|
|
||||||
8:48 Write 56096055296
|
|
||||||
8:48 Sync 11213923328
|
|
||||||
8:48 Async 50587611136
|
|
||||||
8:48 Total 61801534464
|
|
||||||
8:16 Read 10059776
|
|
||||||
8:16 Write 0
|
|
||||||
8:16 Sync 10059776
|
|
||||||
8:16 Async 0
|
|
||||||
8:16 Total 10059776
|
|
||||||
8:0 Read 7192576
|
|
||||||
8:0 Write 0
|
|
||||||
8:0 Sync 7192576
|
|
||||||
8:0 Async 0
|
|
||||||
8:0 Total 7192576
|
|
||||||
Total 61823067136
|
Total 61823067136
|
||||||
";
|
";
|
||||||
|
|
||||||
@@ -884,6 +884,7 @@ Total 61823067136
|
|||||||
write: 0,
|
write: 0,
|
||||||
sync: 4280320,
|
sync: 4280320,
|
||||||
r#async: 0,
|
r#async: 0,
|
||||||
|
discard: 1,
|
||||||
total: 4280320,
|
total: 4280320,
|
||||||
},
|
},
|
||||||
IoService {
|
IoService {
|
||||||
@@ -893,6 +894,7 @@ Total 61823067136
|
|||||||
write: 56096055296,
|
write: 56096055296,
|
||||||
sync: 11213923328,
|
sync: 11213923328,
|
||||||
r#async: 50587611136,
|
r#async: 50587611136,
|
||||||
|
discard: 0,
|
||||||
total: 61801534464,
|
total: 61801534464,
|
||||||
},
|
},
|
||||||
IoService {
|
IoService {
|
||||||
@@ -902,6 +904,7 @@ Total 61823067136
|
|||||||
write: 0,
|
write: 0,
|
||||||
sync: 10059776,
|
sync: 10059776,
|
||||||
r#async: 0,
|
r#async: 0,
|
||||||
|
discard: 0,
|
||||||
total: 10059776,
|
total: 10059776,
|
||||||
},
|
},
|
||||||
IoService {
|
IoService {
|
||||||
@@ -911,12 +914,34 @@ Total 61823067136
|
|||||||
write: 0,
|
write: 0,
|
||||||
sync: 7192576,
|
sync: 7192576,
|
||||||
r#async: 0,
|
r#async: 0,
|
||||||
|
discard: 0,
|
||||||
total: 7192576,
|
total: 7192576,
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
let err = parse_io_service(TEST_WRONG_VALUE.to_string()).unwrap_err();
|
|
||||||
assert_eq!(err.kind(), &ErrorKind::ParseError,);
|
let invalid_values = vec![
|
||||||
|
"\
|
||||||
|
8:32 Read 4280320
|
||||||
|
8:32 Write a
|
||||||
|
8:32 Async 1
|
||||||
|
",
|
||||||
|
"\
|
||||||
|
8:32 Read 4280320
|
||||||
|
b:32 Write 1
|
||||||
|
8:32 Async 1
|
||||||
|
",
|
||||||
|
"\
|
||||||
|
8:32 Read 4280320
|
||||||
|
8:32 Write 1
|
||||||
|
8:c Async 1
|
||||||
|
",
|
||||||
|
];
|
||||||
|
|
||||||
|
for value in invalid_values {
|
||||||
|
let err = parse_io_service(value.to_string()).unwrap_err();
|
||||||
|
assert_eq!(err.kind(), &ErrorKind::ParseError,);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
636
src/fs/cgroup.rs
Normal file
636
src/fs/cgroup.rs
Normal file
@@ -0,0 +1,636 @@
|
|||||||
|
// Copyright (c) 2018 Levente Kurusa
|
||||||
|
// Copyright (c) 2020 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
//! This module handles cgroup operations. Start here!
|
||||||
|
|
||||||
|
use crate::fs::error::ErrorKind::*;
|
||||||
|
use crate::fs::error::*;
|
||||||
|
|
||||||
|
use crate::fs::hierarchies::V1;
|
||||||
|
use crate::fs::{CgroupPid, ControllIdentifier, Controller, Hierarchy, Resources, Subsystem};
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
use std::convert::From;
|
||||||
|
use std::fs;
|
||||||
|
use std::path::{Path, PathBuf};
|
||||||
|
|
||||||
|
pub const CGROUP_MODE_DOMAIN: &str = "domain";
|
||||||
|
pub const CGROUP_MODE_DOMAIN_THREADED: &str = "domain threaded";
|
||||||
|
pub const CGROUP_MODE_DOMAIN_INVALID: &str = "domain invalid";
|
||||||
|
pub const CGROUP_MODE_THREADED: &str = "threaded";
|
||||||
|
|
||||||
|
/// A control group is the central structure to this crate.
|
||||||
|
///
|
||||||
|
///
|
||||||
|
/// # What are control groups?
|
||||||
|
///
|
||||||
|
/// Lifting over from the Linux kernel sources:
|
||||||
|
///
|
||||||
|
/// > Control Groups provide a mechanism for aggregating/partitioning sets of
|
||||||
|
/// > tasks, and all their future children, into hierarchical groups with
|
||||||
|
/// > specialized behaviour.
|
||||||
|
///
|
||||||
|
/// This crate is an attempt at providing a Rust-native way of managing these cgroups.
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct Cgroup {
|
||||||
|
/// The list of subsystems that control this cgroup
|
||||||
|
subsystems: Vec<Subsystem>,
|
||||||
|
|
||||||
|
/// The hierarchy.
|
||||||
|
hier: Box<dyn Hierarchy>,
|
||||||
|
path: String,
|
||||||
|
|
||||||
|
/// List of controllers specifically enabled in the control group.
|
||||||
|
specified_controllers: Option<Vec<String>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Clone for Cgroup {
|
||||||
|
fn clone(&self) -> Self {
|
||||||
|
Cgroup {
|
||||||
|
subsystems: self.subsystems.clone(),
|
||||||
|
hier: crate::fs::hierarchies::auto(),
|
||||||
|
path: self.path.clone(),
|
||||||
|
specified_controllers: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for Cgroup {
|
||||||
|
fn default() -> Self {
|
||||||
|
Cgroup {
|
||||||
|
subsystems: Vec::new(),
|
||||||
|
hier: crate::fs::hierarchies::auto(),
|
||||||
|
path: "".to_string(),
|
||||||
|
specified_controllers: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Cgroup {
|
||||||
|
pub fn v2(&self) -> bool {
|
||||||
|
self.hier.v2()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Return the path the cgroup is located at.
|
||||||
|
pub fn path(&self) -> &str {
|
||||||
|
&self.path
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create this control group.
|
||||||
|
pub fn create(&self) -> Result<()> {
|
||||||
|
if self.hier.v2() {
|
||||||
|
create_v2_cgroup(self.hier.root(), &self.path, &self.specified_controllers)
|
||||||
|
} else {
|
||||||
|
self.subsystems
|
||||||
|
.iter()
|
||||||
|
.try_for_each(|subsystem| subsystem.to_controller().create())?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a new control group in the hierarchy `hier`, with name `path`.
|
||||||
|
///
|
||||||
|
/// Returns a handle to the control group that can be used to manipulate it.
|
||||||
|
pub fn new<P: AsRef<Path>>(hier: Box<dyn Hierarchy>, path: P) -> Result<Cgroup> {
|
||||||
|
let cg = Cgroup::load(hier, path);
|
||||||
|
cg.create()?;
|
||||||
|
Ok(cg)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a new control group in the hierarchy `hier`, with name `path`.
|
||||||
|
///
|
||||||
|
/// Returns a handle to the control group that can be used to manipulate it.
|
||||||
|
pub fn new_with_specified_controllers<P: AsRef<Path>>(
|
||||||
|
hier: Box<dyn Hierarchy>,
|
||||||
|
path: P,
|
||||||
|
specified_controllers: Option<Vec<String>>,
|
||||||
|
) -> Result<Cgroup> {
|
||||||
|
let cg = if let Some(sc) = specified_controllers {
|
||||||
|
Cgroup::load_with_specified_controllers(hier, path, sc)
|
||||||
|
} else {
|
||||||
|
Cgroup::load(hier, path)
|
||||||
|
};
|
||||||
|
cg.create()?;
|
||||||
|
Ok(cg)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a new control group in the hierarchy `hier`, with name `path` and `relative_paths`
|
||||||
|
///
|
||||||
|
/// Returns a handle to the control group that can be used to manipulate it.
|
||||||
|
///
|
||||||
|
/// Note that this method is only meaningful for cgroup v1, call it is equivalent to call `new` in the v2 mode.
|
||||||
|
pub fn new_with_relative_paths<P: AsRef<Path>>(
|
||||||
|
hier: Box<dyn Hierarchy>,
|
||||||
|
path: P,
|
||||||
|
relative_paths: HashMap<String, String>,
|
||||||
|
) -> Result<Cgroup> {
|
||||||
|
let cg = Cgroup::load_with_relative_paths(hier, path, relative_paths);
|
||||||
|
cg.create()?;
|
||||||
|
Ok(cg)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a handle for a control group in the hierarchy `hier`, with name `path`.
|
||||||
|
///
|
||||||
|
/// Returns a handle to the control group (that possibly does not exist until `create()` has
|
||||||
|
/// been called on the cgroup.
|
||||||
|
pub fn load<P: AsRef<Path>>(hier: Box<dyn Hierarchy>, path: P) -> Cgroup {
|
||||||
|
let path = path.as_ref();
|
||||||
|
let mut subsystems = hier.subsystems();
|
||||||
|
if path.as_os_str() != "" {
|
||||||
|
subsystems = subsystems
|
||||||
|
.into_iter()
|
||||||
|
.map(|x| x.enter(path))
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
}
|
||||||
|
|
||||||
|
Cgroup {
|
||||||
|
path: path.to_str().unwrap().to_string(),
|
||||||
|
subsystems,
|
||||||
|
hier,
|
||||||
|
specified_controllers: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a handle for a specified control group in the hierarchy `hier`, with name `path`.
|
||||||
|
///
|
||||||
|
/// Returns a handle to the control group (that possibly does not exist until `create()` has
|
||||||
|
/// been called on the cgroup.
|
||||||
|
pub fn load_with_specified_controllers<P: AsRef<Path>>(
|
||||||
|
hier: Box<dyn Hierarchy>,
|
||||||
|
path: P,
|
||||||
|
specified_controllers: Vec<String>,
|
||||||
|
) -> Cgroup {
|
||||||
|
let path = path.as_ref();
|
||||||
|
let mut subsystems = hier.subsystems();
|
||||||
|
if path.as_os_str() != "" {
|
||||||
|
subsystems = subsystems
|
||||||
|
.into_iter()
|
||||||
|
.filter(|x| specified_controllers.contains(&x.controller_name()))
|
||||||
|
.map(|x| x.enter(path))
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
}
|
||||||
|
|
||||||
|
Cgroup {
|
||||||
|
path: path.to_str().unwrap().to_string(),
|
||||||
|
subsystems,
|
||||||
|
hier,
|
||||||
|
specified_controllers: Some(specified_controllers),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a handle for a control group in the hierarchy `hier`, with name `path` and `relative_paths`
|
||||||
|
///
|
||||||
|
/// Returns a handle to the control group (that possibly does not exist until `create()` has
|
||||||
|
/// been called on the cgroup.
|
||||||
|
///
|
||||||
|
/// Note that this method is only meaningful for cgroup v1, call it is equivalent to call `load` in the v2 mode
|
||||||
|
pub fn load_with_relative_paths<P: AsRef<Path>>(
|
||||||
|
hier: Box<dyn Hierarchy>,
|
||||||
|
path: P,
|
||||||
|
relative_paths: HashMap<String, String>,
|
||||||
|
) -> Cgroup {
|
||||||
|
// relative_paths only valid for cgroup v1
|
||||||
|
if hier.v2() {
|
||||||
|
return Self::load(hier, path);
|
||||||
|
}
|
||||||
|
|
||||||
|
let path = path.as_ref();
|
||||||
|
let mut subsystems = hier.subsystems();
|
||||||
|
if path.as_os_str() != "" {
|
||||||
|
subsystems = subsystems
|
||||||
|
.into_iter()
|
||||||
|
.map(|x| {
|
||||||
|
let cn = x.controller_name();
|
||||||
|
if relative_paths.contains_key(&cn) {
|
||||||
|
let rp = relative_paths.get(&cn).unwrap();
|
||||||
|
let valid_path = rp.trim_start_matches('/').to_string();
|
||||||
|
let mut p = PathBuf::from(valid_path);
|
||||||
|
p.push(path);
|
||||||
|
x.enter(p.as_ref())
|
||||||
|
} else {
|
||||||
|
x.enter(path)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
}
|
||||||
|
|
||||||
|
Cgroup {
|
||||||
|
subsystems,
|
||||||
|
hier,
|
||||||
|
path: path.to_str().unwrap().to_string(),
|
||||||
|
specified_controllers: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The list of subsystems that this control group supports.
|
||||||
|
pub fn subsystems(&self) -> &Vec<Subsystem> {
|
||||||
|
&self.subsystems
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Deletes the control group.
|
||||||
|
///
|
||||||
|
/// Note that this function makes no effort in cleaning up the descendant and the underlying
|
||||||
|
/// system call will fail if there are any descendants. Thus, one should check whether it was
|
||||||
|
/// actually removed, and remove the descendants first if not. In the future, this behavior
|
||||||
|
/// will change.
|
||||||
|
pub fn delete(&self) -> Result<()> {
|
||||||
|
if self.v2() {
|
||||||
|
if !self.path.is_empty() {
|
||||||
|
let mut p = self.hier.root();
|
||||||
|
p.push(self.path.clone());
|
||||||
|
return fs::remove_dir(p).map_err(|e| Error::with_cause(RemoveFailed, e));
|
||||||
|
}
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
self.subsystems.iter().try_for_each(|sub| match sub {
|
||||||
|
Subsystem::Pid(pidc) => pidc.delete(),
|
||||||
|
Subsystem::Mem(c) => c.delete(),
|
||||||
|
Subsystem::CpuSet(c) => c.delete(),
|
||||||
|
Subsystem::CpuAcct(c) => c.delete(),
|
||||||
|
Subsystem::Cpu(c) => c.delete(),
|
||||||
|
Subsystem::Devices(c) => c.delete(),
|
||||||
|
Subsystem::Freezer(c) => c.delete(),
|
||||||
|
Subsystem::NetCls(c) => c.delete(),
|
||||||
|
Subsystem::BlkIo(c) => c.delete(),
|
||||||
|
Subsystem::PerfEvent(c) => c.delete(),
|
||||||
|
Subsystem::NetPrio(c) => c.delete(),
|
||||||
|
Subsystem::HugeTlb(c) => c.delete(),
|
||||||
|
Subsystem::Rdma(c) => c.delete(),
|
||||||
|
Subsystem::Systemd(c) => c.delete(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Apply a set of resource limits to the control group.
|
||||||
|
pub fn apply(&self, res: &Resources) -> Result<()> {
|
||||||
|
self.subsystems
|
||||||
|
.iter()
|
||||||
|
.try_fold((), |_, e| e.to_controller().apply(res))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Retrieve a container based on type inference.
|
||||||
|
///
|
||||||
|
/// ## Example:
|
||||||
|
///
|
||||||
|
/// ```text
|
||||||
|
/// let pids: &PidController = control_group.controller_of()
|
||||||
|
/// .expect("No pids controller attached!");
|
||||||
|
/// let cpu: &CpuController = control_group.controller_of()
|
||||||
|
/// .expect("No cpu controller attached!");
|
||||||
|
/// ```
|
||||||
|
pub fn controller_of<'a, T>(&'a self) -> Option<&'a T>
|
||||||
|
where
|
||||||
|
&'a T: From<&'a Subsystem>,
|
||||||
|
T: Controller + ControllIdentifier,
|
||||||
|
{
|
||||||
|
for i in &self.subsystems {
|
||||||
|
if i.to_controller().control_type() == T::controller_type() {
|
||||||
|
// N.B.:
|
||||||
|
// https://play.rust-lang.org/?gist=978b2846bacebdaa00be62374f4f4334&version=stable&mode=debug&edition=2015
|
||||||
|
return Some(i.into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Removes tasks from the control group by thread group id.
|
||||||
|
///
|
||||||
|
/// Note that this means that the task will be moved back to the root control group in the
|
||||||
|
/// hierarchy and any rules applied to that control group will _still_ apply to the proc.
|
||||||
|
pub fn remove_task_by_tgid(&self, tgid: CgroupPid) -> Result<()> {
|
||||||
|
self.hier.root_control_group().add_task_by_tgid(tgid)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Removes a task from the control group.
|
||||||
|
///
|
||||||
|
/// Note that this means that the task will be moved back to the root control group in the
|
||||||
|
/// hierarchy and any rules applied to that control group will _still_ apply to the task.
|
||||||
|
pub fn remove_task(&self, tid: CgroupPid) -> Result<()> {
|
||||||
|
self.hier.root_control_group().add_task(tid)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Moves tasks to the parent control group by thread group id.
|
||||||
|
pub fn move_task_to_parent_by_tgid(&self, tgid: CgroupPid) -> Result<()> {
|
||||||
|
self.hier
|
||||||
|
.parent_control_group(&self.path)
|
||||||
|
.add_task_by_tgid(tgid)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Moves a task to the parent control group.
|
||||||
|
pub fn move_task_to_parent(&self, tid: CgroupPid) -> Result<()> {
|
||||||
|
self.hier.parent_control_group(&self.path).add_task(tid)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Return a handle to the parent control group in the hierarchy.
|
||||||
|
pub fn parent_control_group(&self) -> Cgroup {
|
||||||
|
self.hier.parent_control_group(&self.path)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Kill every process in the control group. Only supported for v2 cgroups and on
|
||||||
|
/// kernels 5.14+. This will fail with InvalidOperation if the 'cgroup.kill' file does
|
||||||
|
/// not exist.
|
||||||
|
pub fn kill(&self) -> Result<()> {
|
||||||
|
if !self.v2() {
|
||||||
|
return Err(Error::new(CgroupVersion));
|
||||||
|
}
|
||||||
|
|
||||||
|
let val = "1";
|
||||||
|
let file_name = "cgroup.kill";
|
||||||
|
let p = self.hier.root().join(self.path.clone()).join(file_name);
|
||||||
|
|
||||||
|
// If cgroup.kill doesn't exist they're not on 5.14+ so lets
|
||||||
|
// surface some error the caller can check against.
|
||||||
|
if !p.exists() {
|
||||||
|
return Err(Error::new(InvalidOperation));
|
||||||
|
}
|
||||||
|
|
||||||
|
fs::write(p, val)
|
||||||
|
.map_err(|e| Error::with_cause(WriteFailed(file_name.to_string(), val.to_string()), e))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Attach a task to the control group.
|
||||||
|
pub fn add_task(&self, tid: CgroupPid) -> Result<()> {
|
||||||
|
if self.v2() {
|
||||||
|
let subsystems = self.subsystems();
|
||||||
|
if !subsystems.is_empty() {
|
||||||
|
let c = subsystems[0].to_controller();
|
||||||
|
let cgroup_type = self.get_cgroup_type()?;
|
||||||
|
// In cgroup v2, writing to the cgroup.threads file is only supported in thread mode.
|
||||||
|
if cgroup_type == *CGROUP_MODE_DOMAIN_THREADED
|
||||||
|
|| cgroup_type == *CGROUP_MODE_THREADED
|
||||||
|
{
|
||||||
|
// It is used to move the threads of a process into a cgroup in thread mode.
|
||||||
|
c.add_task(&tid)
|
||||||
|
} else {
|
||||||
|
// When the cgroup type is domain or domain invalid,
|
||||||
|
// cgroup.threads cannot be written.
|
||||||
|
Err(Error::new(CgroupMode))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Err(Error::new(SubsystemsEmpty))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
self.subsystems()
|
||||||
|
.iter()
|
||||||
|
.try_for_each(|sub| sub.to_controller().add_task(&tid))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Attach tasks to the control group by thread group id.
|
||||||
|
pub fn add_task_by_tgid(&self, tgid: CgroupPid) -> Result<()> {
|
||||||
|
if self.v2() {
|
||||||
|
let subsystems = self.subsystems();
|
||||||
|
if !subsystems.is_empty() {
|
||||||
|
let c = subsystems[0].to_controller();
|
||||||
|
// It is used to move a thread of the process to a cgroup,
|
||||||
|
// and other threads of the process will also move together.
|
||||||
|
c.add_task_by_tgid(&tgid)
|
||||||
|
} else {
|
||||||
|
Err(Error::new(SubsystemsEmpty))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
self.subsystems()
|
||||||
|
.iter()
|
||||||
|
.try_for_each(|sub| sub.to_controller().add_task_by_tgid(&tgid))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// set cgroup.type
|
||||||
|
pub fn set_cgroup_type(&self, cgroup_type: &str) -> Result<()> {
|
||||||
|
if self.v2() {
|
||||||
|
let subsystems = self.subsystems();
|
||||||
|
if !subsystems.is_empty() {
|
||||||
|
let c = subsystems[0].to_controller();
|
||||||
|
c.set_cgroup_type(cgroup_type)
|
||||||
|
} else {
|
||||||
|
Err(Error::new(SubsystemsEmpty))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Err(Error::new(CgroupVersion))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// get cgroup.type
|
||||||
|
pub fn get_cgroup_type(&self) -> Result<String> {
|
||||||
|
if self.v2() {
|
||||||
|
let subsystems = self.subsystems();
|
||||||
|
if !subsystems.is_empty() {
|
||||||
|
let c = subsystems[0].to_controller();
|
||||||
|
let cgroup_type = c.get_cgroup_type()?;
|
||||||
|
Ok(cgroup_type)
|
||||||
|
} else {
|
||||||
|
Err(Error::new(SubsystemsEmpty))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Err(Error::new(CgroupVersion))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Set notify_on_release to the control group.
|
||||||
|
pub fn set_notify_on_release(&self, enable: bool) -> Result<()> {
|
||||||
|
self.subsystems()
|
||||||
|
.iter()
|
||||||
|
.try_for_each(|sub| sub.to_controller().set_notify_on_release(enable))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Set release_agent
|
||||||
|
pub fn set_release_agent(&self, path: &str) -> Result<()> {
|
||||||
|
self.hier
|
||||||
|
.root_control_group()
|
||||||
|
.subsystems()
|
||||||
|
.iter()
|
||||||
|
.try_for_each(|sub| sub.to_controller().set_release_agent(path))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns an Iterator that can be used to iterate over the procs that are currently in the
|
||||||
|
/// control group.
|
||||||
|
pub fn procs(&self) -> Vec<CgroupPid> {
|
||||||
|
// Collect the procs from all subsystems
|
||||||
|
let mut v = if self.v2() {
|
||||||
|
let subsystems = self.subsystems();
|
||||||
|
if !subsystems.is_empty() {
|
||||||
|
let c = subsystems[0].to_controller();
|
||||||
|
c.procs()
|
||||||
|
} else {
|
||||||
|
vec![]
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
self.subsystems()
|
||||||
|
.iter()
|
||||||
|
.map(|x| x.to_controller().procs())
|
||||||
|
.fold(vec![], |mut acc, mut x| {
|
||||||
|
acc.append(&mut x);
|
||||||
|
acc
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
v.sort();
|
||||||
|
v.dedup();
|
||||||
|
v
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns an Iterator that can be used to iterate over the tasks that are currently in the
|
||||||
|
/// control group.
|
||||||
|
pub fn tasks(&self) -> Vec<CgroupPid> {
|
||||||
|
// Collect the tasks from all subsystems
|
||||||
|
let mut v = if self.v2() {
|
||||||
|
let subsystems = self.subsystems();
|
||||||
|
if !subsystems.is_empty() {
|
||||||
|
let c = subsystems[0].to_controller();
|
||||||
|
c.tasks()
|
||||||
|
} else {
|
||||||
|
vec![]
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
self.subsystems()
|
||||||
|
.iter()
|
||||||
|
.map(|x| x.to_controller().tasks())
|
||||||
|
.fold(vec![], |mut acc, mut x| {
|
||||||
|
acc.append(&mut x);
|
||||||
|
acc
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
v.sort();
|
||||||
|
v.dedup();
|
||||||
|
v
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Checks if the cgroup exists.
|
||||||
|
///
|
||||||
|
/// Returns true if at least one subsystem exists.
|
||||||
|
pub fn exists(&self) -> bool {
|
||||||
|
self.subsystems().iter().any(|e| e.to_controller().exists())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub const UNIFIED_MOUNTPOINT: &str = "/sys/fs/cgroup";
|
||||||
|
|
||||||
|
fn enable_controllers(controllers: &[String], path: &Path) {
|
||||||
|
let f = path.join("cgroup.subtree_control");
|
||||||
|
for c in controllers {
|
||||||
|
let body = format!("+{}", c);
|
||||||
|
let _rest = fs::write(f.as_path(), body.as_bytes());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn supported_controllers() -> Vec<String> {
|
||||||
|
let p = format!("{}/{}", UNIFIED_MOUNTPOINT, "cgroup.controllers");
|
||||||
|
let ret = fs::read_to_string(p.as_str());
|
||||||
|
ret.unwrap_or_default()
|
||||||
|
.split(' ')
|
||||||
|
.map(|x| x.trim().to_string())
|
||||||
|
.collect::<Vec<String>>()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn create_v2_cgroup(
|
||||||
|
root: PathBuf,
|
||||||
|
path: &str,
|
||||||
|
specified_controllers: &Option<Vec<String>>,
|
||||||
|
) -> Result<()> {
|
||||||
|
// controler list ["memory", "cpu"]
|
||||||
|
let controllers = if let Some(s_controllers) = specified_controllers.clone() {
|
||||||
|
if verify_supported_controllers(s_controllers.as_ref()) {
|
||||||
|
s_controllers
|
||||||
|
} else {
|
||||||
|
return Err(Error::new(ErrorKind::SpecifiedControllers));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
supported_controllers()
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut fp = root;
|
||||||
|
|
||||||
|
// enable for root
|
||||||
|
enable_controllers(&controllers, &fp);
|
||||||
|
|
||||||
|
// path: "a/b/c"
|
||||||
|
let elements = path.split('/').collect::<Vec<&str>>();
|
||||||
|
let last_index = elements.len() - 1;
|
||||||
|
// Build up the directory hierarchy element by element, enabling the controllers for all
|
||||||
|
// parents along the way.
|
||||||
|
for (i, ele) in elements.iter().enumerate() {
|
||||||
|
// ROOT/a
|
||||||
|
fp.push(ele);
|
||||||
|
// create dir if necessary
|
||||||
|
if let Err(e) = std::fs::create_dir_all(fp.clone()) {
|
||||||
|
return Err(Error::with_cause(ErrorKind::FsError, e));
|
||||||
|
}
|
||||||
|
|
||||||
|
if i < last_index {
|
||||||
|
// enable controllers for subtree
|
||||||
|
enable_controllers(&controllers, &fp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn verify_supported_controllers(controllers: &[String]) -> bool {
|
||||||
|
let sc = supported_controllers();
|
||||||
|
for controller in controllers.iter() {
|
||||||
|
if !sc.contains(controller) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_cgroups_relative_paths() -> Result<HashMap<String, String>> {
|
||||||
|
let path = "/proc/self/cgroup".to_string();
|
||||||
|
get_cgroups_relative_paths_by_path(path)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_cgroups_relative_paths_by_pid(pid: u32) -> Result<HashMap<String, String>> {
|
||||||
|
let path = format!("/proc/{}/cgroup", pid);
|
||||||
|
get_cgroups_relative_paths_by_path(path)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_cgroup_destination(mut mount_root: String, pidpath: String) -> String {
|
||||||
|
if mount_root == "/" {
|
||||||
|
mount_root = String::from("");
|
||||||
|
}
|
||||||
|
pidpath.trim_start_matches(&mount_root).to_string()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn existing_path(paths: HashMap<String, String>) -> Result<HashMap<String, String>> {
|
||||||
|
let mount_roots_v1 = V1::new();
|
||||||
|
let mut mount_roots_subsystems_map = HashMap::new();
|
||||||
|
|
||||||
|
for s in mount_roots_v1.subsystems().iter() {
|
||||||
|
let controller_name = s.controller_name();
|
||||||
|
let path_from_cgroup = paths
|
||||||
|
.get(&controller_name)
|
||||||
|
.ok_or(Error::new(Common(format!(
|
||||||
|
"controller {} found in mountinfo, but not found in cgroup.",
|
||||||
|
controller_name
|
||||||
|
))))?;
|
||||||
|
let path_from_mountinfo = s.to_controller().base().to_string_lossy().to_string();
|
||||||
|
|
||||||
|
let des_path = get_cgroup_destination(path_from_mountinfo, path_from_cgroup.to_owned());
|
||||||
|
mount_roots_subsystems_map.insert(controller_name, des_path);
|
||||||
|
}
|
||||||
|
Ok(mount_roots_subsystems_map)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_cgroups_relative_paths_by_path(path: String) -> Result<HashMap<String, String>> {
|
||||||
|
let mut m = HashMap::new();
|
||||||
|
let content =
|
||||||
|
fs::read_to_string(path.clone()).map_err(|e| Error::with_cause(ReadFailed(path), e))?;
|
||||||
|
// cgroup path may have ":" , likes
|
||||||
|
// "2:cpu,cpuacct:/system.slice/containerd.service/test.slice:cri-containerd:96b37a2edf84351487f42039e137427f1812f678850675fac214caf597ee5e4a"
|
||||||
|
for line in content.lines() {
|
||||||
|
if let Some((first_value_part, remaining_path)) =
|
||||||
|
line.split_once(':').unwrap_or_default().1.split_once(':')
|
||||||
|
{
|
||||||
|
let keys: Vec<&str> = first_value_part.split(',').collect();
|
||||||
|
keys.iter().for_each(|key| {
|
||||||
|
m.insert(key.to_string(), remaining_path.to_string());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(m)
|
||||||
|
}
|
||||||
@@ -16,10 +16,10 @@
|
|||||||
//! by a call to `build()`.
|
//! by a call to `build()`.
|
||||||
//!
|
//!
|
||||||
//! ```rust,no_run
|
//! ```rust,no_run
|
||||||
//! # use cgroups_rs::*;
|
//! # use cgroups_rs::fs::*;
|
||||||
//! # use cgroups_rs::devices::*;
|
//! # use cgroups_rs::fs::devices::*;
|
||||||
//! # use cgroups_rs::cgroup_builder::*;
|
//! # use cgroups_rs::fs::cgroup_builder::*;
|
||||||
//! let h = cgroups_rs::hierarchies::auto();
|
//! let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
//! let cgroup: Cgroup = CgroupBuilder::new("hello")
|
//! let cgroup: Cgroup = CgroupBuilder::new("hello")
|
||||||
//! .memory()
|
//! .memory()
|
||||||
//! .kernel_memory_limit(1024 * 1024)
|
//! .kernel_memory_limit(1024 * 1024)
|
||||||
@@ -57,11 +57,11 @@
|
|||||||
//! .read(6, 1, 10)
|
//! .read(6, 1, 10)
|
||||||
//! .write(11, 1, 100)
|
//! .write(11, 1, 100)
|
||||||
//! .done()
|
//! .done()
|
||||||
//! .build(h);
|
//! .build(h).unwrap();
|
||||||
//! ```
|
//! ```
|
||||||
|
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
BlkIoDeviceResource, BlkIoDeviceThrottleResource, Cgroup, DeviceResource, Hierarchy,
|
BlkIoDeviceResource, BlkIoDeviceThrottleResource, Cgroup, DeviceResource, Error, Hierarchy,
|
||||||
HugePageResource, MaxValue, NetworkPriority, Resources,
|
HugePageResource, MaxValue, NetworkPriority, Resources,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -80,6 +80,8 @@ pub struct CgroupBuilder {
|
|||||||
name: String,
|
name: String,
|
||||||
/// Internal, unsupported field: use the associated builders instead.
|
/// Internal, unsupported field: use the associated builders instead.
|
||||||
resources: Resources,
|
resources: Resources,
|
||||||
|
/// List of controllers specifically enabled in the control group.
|
||||||
|
specified_controllers: Option<Vec<String>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl CgroupBuilder {
|
impl CgroupBuilder {
|
||||||
@@ -90,6 +92,7 @@ impl CgroupBuilder {
|
|||||||
CgroupBuilder {
|
CgroupBuilder {
|
||||||
name: name.to_owned(),
|
name: name.to_owned(),
|
||||||
resources: Resources::default(),
|
resources: Resources::default(),
|
||||||
|
specified_controllers: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -134,10 +137,22 @@ impl CgroupBuilder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Finalize the control group, consuming the builder and creating the control group.
|
/// Finalize the control group, consuming the builder and creating the control group.
|
||||||
pub fn build(self, hier: Box<dyn Hierarchy>) -> Cgroup {
|
pub fn build(self, hier: Box<dyn Hierarchy>) -> Result<Cgroup, Error> {
|
||||||
let cg = Cgroup::new(hier, self.name);
|
if let Some(controllers) = self.specified_controllers {
|
||||||
let _ret = cg.apply(&self.resources);
|
let cg = Cgroup::new_with_specified_controllers(hier, self.name, Some(controllers))?;
|
||||||
cg
|
cg.apply(&self.resources)?;
|
||||||
|
Ok(cg)
|
||||||
|
} else {
|
||||||
|
let cg = Cgroup::new(hier, self.name)?;
|
||||||
|
cg.apply(&self.resources)?;
|
||||||
|
Ok(cg)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Specifically enable some controllers in the control group.
|
||||||
|
pub fn set_specified_controllers(mut self, specified_controllers: Vec<String>) -> Self {
|
||||||
|
self.specified_controllers = Some(specified_controllers);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -235,9 +250,9 @@ impl DeviceResourceBuilder {
|
|||||||
mut self,
|
mut self,
|
||||||
major: i64,
|
major: i64,
|
||||||
minor: i64,
|
minor: i64,
|
||||||
devtype: crate::devices::DeviceType,
|
devtype: crate::fs::devices::DeviceType,
|
||||||
allow: bool,
|
allow: bool,
|
||||||
access: Vec<crate::devices::DevicePermissions>,
|
access: Vec<crate::fs::devices::DevicePermissions>,
|
||||||
) -> DeviceResourceBuilder {
|
) -> DeviceResourceBuilder {
|
||||||
self.cgroup.resources.devices.devices.push(DeviceResource {
|
self.cgroup.resources.devices.devices.push(DeviceResource {
|
||||||
allow,
|
allow,
|
||||||
@@ -13,11 +13,11 @@ use std::fs::File;
|
|||||||
use std::io::{Read, Write};
|
use std::io::{Read, Write};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
use crate::{parse_max_value, read_i64_from, read_u64_from};
|
use crate::fs::{parse_max_value, read_i64_from, read_u64_from};
|
||||||
|
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
ControllIdentifier, ControllerInternal, Controllers, CpuResources, CustomizedAttribute,
|
ControllIdentifier, ControllerInternal, Controllers, CpuResources, CustomizedAttribute,
|
||||||
MaxValue, Resources, Subsystem,
|
MaxValue, Resources, Subsystem,
|
||||||
};
|
};
|
||||||
@@ -59,7 +59,6 @@ impl ControllerInternal for CpuController {
|
|||||||
fn get_path(&self) -> &PathBuf {
|
fn get_path(&self) -> &PathBuf {
|
||||||
&self.path
|
&self.path
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_path_mut(&mut self) -> &mut PathBuf {
|
fn get_path_mut(&mut self) -> &mut PathBuf {
|
||||||
&mut self.path
|
&mut self.path
|
||||||
}
|
}
|
||||||
@@ -113,10 +112,10 @@ impl<'a> From<&'a Subsystem> for &'a CpuController {
|
|||||||
|
|
||||||
impl CpuController {
|
impl CpuController {
|
||||||
/// Contructs a new `CpuController` with `root` serving as the root of the control group.
|
/// Contructs a new `CpuController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf, v2: bool) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf, v2: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
v2,
|
v2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -10,11 +10,11 @@
|
|||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::{read_string_from, read_u64_from};
|
use crate::fs::{read_string_from, read_u64_from};
|
||||||
use crate::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
use crate::fs::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
||||||
|
|
||||||
/// A controller that allows controlling the `cpuacct` subsystem of a Cgroup.
|
/// A controller that allows controlling the `cpuacct` subsystem of a Cgroup.
|
||||||
///
|
///
|
||||||
@@ -100,10 +100,10 @@ impl<'a> From<&'a Subsystem> for &'a CpuAcctController {
|
|||||||
|
|
||||||
impl CpuAcctController {
|
impl CpuAcctController {
|
||||||
/// Contructs a new `CpuAcctController` with `root` serving as the root of the control group.
|
/// Contructs a new `CpuAcctController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -13,11 +13,11 @@ use log::*;
|
|||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::{read_string_from, read_u64_from};
|
use crate::fs::{read_string_from, read_u64_from};
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
ControllIdentifier, ControllerInternal, Controllers, CpuResources, Resources, Subsystem,
|
ControllIdentifier, ControllerInternal, Controllers, CpuResources, Resources, Subsystem,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -254,10 +254,10 @@ fn parse_range(s: String) -> Result<Vec<(u64, u64)>> {
|
|||||||
|
|
||||||
impl CpuSetController {
|
impl CpuSetController {
|
||||||
/// Contructs a new `CpuSetController` with `root` serving as the root of the control group.
|
/// Contructs a new `CpuSetController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf, v2: bool) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf, v2: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
v2,
|
v2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -591,7 +591,7 @@ impl CpuSetController {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::cpuset;
|
use crate::fs::cpuset;
|
||||||
#[test]
|
#[test]
|
||||||
fn test_parse_range() {
|
fn test_parse_range() {
|
||||||
let test_cases = vec![
|
let test_cases = vec![
|
||||||
@@ -602,7 +602,7 @@ mod tests {
|
|||||||
"1,2,3,4".to_string(),
|
"1,2,3,4".to_string(),
|
||||||
"1-5,6-7,8-9".to_string(),
|
"1-5,6-7,8-9".to_string(),
|
||||||
];
|
];
|
||||||
let expecteds = vec![
|
let expecteds = [
|
||||||
vec![(1, 1), (2, 2), (4, 6), (9, 9)],
|
vec![(1, 1), (2, 2), (4, 6), (9, 9)],
|
||||||
vec![],
|
vec![],
|
||||||
vec![(1, 1)],
|
vec![(1, 1)],
|
||||||
@@ -12,10 +12,10 @@ use std::path::PathBuf;
|
|||||||
|
|
||||||
use log::*;
|
use log::*;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
ControllIdentifier, ControllerInternal, Controllers, DeviceResource, DeviceResources,
|
ControllIdentifier, ControllerInternal, Controllers, DeviceResource, DeviceResources,
|
||||||
Resources, Subsystem,
|
Resources, Subsystem,
|
||||||
};
|
};
|
||||||
@@ -46,6 +46,7 @@ pub enum DeviceType {
|
|||||||
Block,
|
Block,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(clippy::derivable_impls)]
|
||||||
impl Default for DeviceType {
|
impl Default for DeviceType {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
DeviceType::All
|
DeviceType::All
|
||||||
@@ -170,9 +171,9 @@ impl ControllerInternal for DevicesController {
|
|||||||
|
|
||||||
for i in &res.devices {
|
for i in &res.devices {
|
||||||
if i.allow {
|
if i.allow {
|
||||||
let _ = self.allow_device(i.devtype, i.major, i.minor, &i.access);
|
self.allow_device(i.devtype, i.major, i.minor, &i.access)?;
|
||||||
} else {
|
} else {
|
||||||
let _ = self.deny_device(i.devtype, i.major, i.minor, &i.access);
|
self.deny_device(i.devtype, i.major, i.minor, &i.access)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -203,10 +204,10 @@ impl<'a> From<&'a Subsystem> for &'a DevicesController {
|
|||||||
|
|
||||||
impl DevicesController {
|
impl DevicesController {
|
||||||
/// Constructs a new `DevicesController` with `root` serving as the root of the control group.
|
/// Constructs a new `DevicesController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -238,7 +239,13 @@ impl DevicesController {
|
|||||||
let final_str = format!("{} {}:{} {}", devtype.to_char(), major, minor, perms);
|
let final_str = format!("{} {}:{} {}", devtype.to_char(), major, minor, perms);
|
||||||
self.open_path("devices.allow", true).and_then(|mut file| {
|
self.open_path("devices.allow", true).and_then(|mut file| {
|
||||||
file.write_all(final_str.as_ref()).map_err(|e| {
|
file.write_all(final_str.as_ref()).map_err(|e| {
|
||||||
Error::with_cause(WriteFailed("devices.allow".to_string(), final_str), e)
|
Error::with_cause(
|
||||||
|
WriteFailed(
|
||||||
|
self.get_path().join("devices.allow").display().to_string(),
|
||||||
|
final_str,
|
||||||
|
),
|
||||||
|
e,
|
||||||
|
)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -271,7 +278,13 @@ impl DevicesController {
|
|||||||
let final_str = format!("{} {}:{} {}", devtype.to_char(), major, minor, perms);
|
let final_str = format!("{} {}:{} {}", devtype.to_char(), major, minor, perms);
|
||||||
self.open_path("devices.deny", true).and_then(|mut file| {
|
self.open_path("devices.deny", true).and_then(|mut file| {
|
||||||
file.write_all(final_str.as_ref()).map_err(|e| {
|
file.write_all(final_str.as_ref()).map_err(|e| {
|
||||||
Error::with_cause(WriteFailed("devices.deny".to_string(), final_str), e)
|
Error::with_cause(
|
||||||
|
WriteFailed(
|
||||||
|
self.get_path().join("devices.deny").display().to_string(),
|
||||||
|
final_str,
|
||||||
|
),
|
||||||
|
e,
|
||||||
|
)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -282,43 +295,48 @@ impl DevicesController {
|
|||||||
let mut s = String::new();
|
let mut s = String::new();
|
||||||
let res = file.read_to_string(&mut s);
|
let res = file.read_to_string(&mut s);
|
||||||
match res {
|
match res {
|
||||||
Ok(_) => {
|
Ok(_) => s
|
||||||
s.lines().fold(Ok(Vec::new()), |acc, line| {
|
.lines()
|
||||||
let ls = line.to_string().split(|c| c == ' ' || c == ':').map(|x| x.to_string()).collect::<Vec<String>>();
|
.map(|line| parse_device_line(line, true))
|
||||||
if acc.is_err() || ls.len() != 4 {
|
.collect(),
|
||||||
error!("allowed_devices: acc: {:?}, ls: {:?}", acc, ls);
|
|
||||||
Err(Error::new(ParseError))
|
|
||||||
} else {
|
|
||||||
let devtype = DeviceType::from_char(ls[0].chars().next());
|
|
||||||
let mut major = ls[1].parse::<i64>();
|
|
||||||
let mut minor = ls[2].parse::<i64>();
|
|
||||||
if major.is_err() && ls[1] == "*" {
|
|
||||||
major = Ok(-1);
|
|
||||||
}
|
|
||||||
if minor.is_err() && ls[2] == "*" {
|
|
||||||
minor = Ok(-1);
|
|
||||||
}
|
|
||||||
if devtype.is_none() || major.is_err() || minor.is_err() || !DevicePermissions::is_valid(&ls[3]) {
|
|
||||||
error!("allowed_devices: acc: {:?}, ls: {:?}, devtype: {:?}, major {:?} minor {:?} ls3 {:?}",
|
|
||||||
acc, ls, devtype, major, minor, &ls[3]);
|
|
||||||
Err(Error::new(ParseError))
|
|
||||||
} else {
|
|
||||||
let access = DevicePermissions::from_str(&ls[3])?;
|
|
||||||
let mut acc = acc.unwrap();
|
|
||||||
acc.push(DeviceResource {
|
|
||||||
allow: true,
|
|
||||||
devtype: devtype.unwrap(),
|
|
||||||
major: major.unwrap(),
|
|
||||||
minor: minor.unwrap(),
|
|
||||||
access,
|
|
||||||
});
|
|
||||||
Ok(acc)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
Err(e) => Err(Error::with_cause(ReadFailed("devices.list".to_string()), e)),
|
Err(e) => Err(Error::with_cause(ReadFailed("devices.list".to_string()), e)),
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn parse_device_number(s: &str) -> Result<i64> {
|
||||||
|
if s == "*" {
|
||||||
|
Ok(-1)
|
||||||
|
} else {
|
||||||
|
s.parse::<i64>().map_err(|_| Error::new(ParseError))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn parse_device_line(line: &str, allow: bool) -> Result<DeviceResource> {
|
||||||
|
let parts: Vec<&str> = line.split([' ', ':']).collect();
|
||||||
|
if parts.len() != 4 {
|
||||||
|
error!("allowed_devices: invalid line format: {:?}", line);
|
||||||
|
return Err(Error::new(ParseError));
|
||||||
|
}
|
||||||
|
|
||||||
|
let devtype = DeviceType::from_char(parts[0].chars().next()).ok_or_else(|| {
|
||||||
|
error!("allowed_devices: invalid device type: {:?}", parts[0]);
|
||||||
|
Error::new(ParseError)
|
||||||
|
})?;
|
||||||
|
let major = parse_device_number(parts[1]).inspect_err(|_| {
|
||||||
|
error!("allowed_devices: invalid major number: {:?}", parts[1]);
|
||||||
|
})?;
|
||||||
|
let minor = parse_device_number(parts[2]).inspect_err(|_| {
|
||||||
|
error!("allowed_devices: invalid minor number: {:?}", parts[2]);
|
||||||
|
})?;
|
||||||
|
let access = DevicePermissions::from_str(parts[3])?;
|
||||||
|
|
||||||
|
Ok(DeviceResource {
|
||||||
|
allow,
|
||||||
|
devtype,
|
||||||
|
major,
|
||||||
|
minor,
|
||||||
|
access,
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -51,6 +51,22 @@ pub enum ErrorKind {
|
|||||||
#[error("invalid bytes size")]
|
#[error("invalid bytes size")]
|
||||||
InvalidBytesSize,
|
InvalidBytesSize,
|
||||||
|
|
||||||
|
/// The specified controller is not in the list of supported controllers.
|
||||||
|
#[error("specified controller is not in the list of supported controllers")]
|
||||||
|
SpecifiedControllers,
|
||||||
|
|
||||||
|
/// Using method in wrong cgroup version.
|
||||||
|
#[error("using method in wrong cgroup version")]
|
||||||
|
CgroupVersion,
|
||||||
|
|
||||||
|
/// Using method in wrong cgroup mode.
|
||||||
|
#[error("using method in wrong cgroup mode.")]
|
||||||
|
CgroupMode,
|
||||||
|
|
||||||
|
/// Subsystems is empty.
|
||||||
|
#[error("subsystems is empty")]
|
||||||
|
SubsystemsEmpty,
|
||||||
|
|
||||||
/// An unknown error has occured.
|
/// An unknown error has occured.
|
||||||
#[error("an unknown error")]
|
#[error("an unknown error")]
|
||||||
Other,
|
Other,
|
||||||
@@ -73,7 +89,7 @@ impl fmt::Display for Error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl StdError for Error {
|
impl StdError for Error {
|
||||||
fn cause(&self) -> Option<&dyn StdError> {
|
fn source(&self) -> Option<&(dyn StdError + 'static)> {
|
||||||
#[allow(clippy::manual_map)]
|
#[allow(clippy::manual_map)]
|
||||||
match self.cause {
|
match self.cause {
|
||||||
Some(ref x) => Some(&**x),
|
Some(ref x) => Some(&**x),
|
||||||
@@ -12,8 +12,8 @@ use std::path::Path;
|
|||||||
use std::sync::mpsc::{self, Receiver};
|
use std::sync::mpsc::{self, Receiver};
|
||||||
use std::thread;
|
use std::thread;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
// notify_on_oom returns channel on which you can expect event about OOM,
|
// notify_on_oom returns channel on which you can expect event about OOM,
|
||||||
// if process died without OOM this channel will be closed.
|
// if process died without OOM this channel will be closed.
|
||||||
@@ -11,10 +11,10 @@
|
|||||||
use std::io::{Read, Write};
|
use std::io::{Read, Write};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
use crate::fs::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
||||||
use crate::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
use crate::FreezerState;
|
||||||
|
|
||||||
/// A controller that allows controlling the `freezer` subsystem of a Cgroup.
|
/// A controller that allows controlling the `freezer` subsystem of a Cgroup.
|
||||||
///
|
///
|
||||||
@@ -31,17 +31,6 @@ pub struct FreezerController {
|
|||||||
v2: bool,
|
v2: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The current state of the control group
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub enum FreezerState {
|
|
||||||
/// The processes in the control group are _not_ frozen.
|
|
||||||
Thawed,
|
|
||||||
/// The processes in the control group are in the processes of being frozen.
|
|
||||||
Freezing,
|
|
||||||
/// The processes in the control group are frozen.
|
|
||||||
Frozen,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ControllerInternal for FreezerController {
|
impl ControllerInternal for FreezerController {
|
||||||
fn control_type(&self) -> Controllers {
|
fn control_type(&self) -> Controllers {
|
||||||
Controllers::Freezer
|
Controllers::Freezer
|
||||||
@@ -84,14 +73,13 @@ impl<'a> From<&'a Subsystem> for &'a FreezerController {
|
|||||||
|
|
||||||
impl FreezerController {
|
impl FreezerController {
|
||||||
/// Contructs a new `FreezerController` with `root` serving as the root of the control group.
|
/// Contructs a new `FreezerController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf, v2: bool) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf, v2: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
v2,
|
v2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Freezes the processes in the control group.
|
/// Freezes the processes in the control group.
|
||||||
pub fn freeze(&self) -> Result<()> {
|
pub fn freeze(&self) -> Result<()> {
|
||||||
let mut file_name = "freezer.state";
|
let mut file_name = "freezer.state";
|
||||||
@@ -5,38 +5,37 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
//! This module represents the various control group hierarchies the Linux kernel supports.
|
//! This module represents the various control group hierarchies the Linux kernel supports.
|
||||||
//!
|
|
||||||
//! Currently, we only support the cgroupv1 hierarchy, but in the future we will add support for
|
|
||||||
//! the Unified Hierarchy.
|
|
||||||
|
|
||||||
use std::fs;
|
use std::fs;
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
use std::io::{BufRead, BufReader};
|
use std::io::{BufRead, BufReader};
|
||||||
use std::path::PathBuf;
|
use std::path::{Path, PathBuf};
|
||||||
|
|
||||||
use crate::blkio::BlkIoController;
|
use crate::fs::blkio::BlkIoController;
|
||||||
use crate::cpu::CpuController;
|
use crate::fs::cpu::CpuController;
|
||||||
use crate::cpuacct::CpuAcctController;
|
use crate::fs::cpuacct::CpuAcctController;
|
||||||
use crate::cpuset::CpuSetController;
|
use crate::fs::cpuset::CpuSetController;
|
||||||
use crate::devices::DevicesController;
|
use crate::fs::devices::DevicesController;
|
||||||
use crate::freezer::FreezerController;
|
use crate::fs::freezer::FreezerController;
|
||||||
use crate::hugetlb::HugeTlbController;
|
use crate::fs::hugetlb::HugeTlbController;
|
||||||
use crate::memory::MemController;
|
use crate::fs::memory::MemController;
|
||||||
use crate::net_cls::NetClsController;
|
use crate::fs::net_cls::NetClsController;
|
||||||
use crate::net_prio::NetPrioController;
|
use crate::fs::net_prio::NetPrioController;
|
||||||
use crate::perf_event::PerfEventController;
|
use crate::fs::perf_event::PerfEventController;
|
||||||
use crate::pid::PidController;
|
use crate::fs::pid::PidController;
|
||||||
use crate::rdma::RdmaController;
|
use crate::fs::rdma::RdmaController;
|
||||||
use crate::systemd::SystemdController;
|
use crate::fs::systemd::SystemdController;
|
||||||
use crate::{Controllers, Hierarchy, Subsystem};
|
use crate::fs::{Controllers, Hierarchy, Subsystem};
|
||||||
|
|
||||||
use crate::cgroup::Cgroup;
|
use crate::fs::cgroup::Cgroup;
|
||||||
|
|
||||||
/// Process mounts information.
|
/// Process mounts information.
|
||||||
///
|
///
|
||||||
/// See `proc(5)` for format details.
|
/// See `proc(5)` for format details.
|
||||||
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
|
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
|
||||||
pub struct Mountinfo {
|
pub struct Mountinfo {
|
||||||
|
/// Mount root directory of the file system.
|
||||||
|
pub mount_root: PathBuf,
|
||||||
/// Mount pathname relative to the process's root.
|
/// Mount pathname relative to the process's root.
|
||||||
pub mount_point: PathBuf,
|
pub mount_point: PathBuf,
|
||||||
/// Filesystem type (main type with optional sub-type).
|
/// Filesystem type (main type with optional sub-type).
|
||||||
@@ -57,6 +56,7 @@ pub(crate) fn parse_mountinfo_for_line(line: &str) -> Option<Mountinfo> {
|
|||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
let mount_point = PathBuf::from(s0_values[4]);
|
let mount_point = PathBuf::from(s0_values[4]);
|
||||||
|
let mount_root = PathBuf::from(s0_values[3]);
|
||||||
let fs_type_values: Vec<_> = s1_values[0].trim().split('.').collect();
|
let fs_type_values: Vec<_> = s1_values[0].trim().split('.').collect();
|
||||||
let fs_type = match fs_type_values.len() {
|
let fs_type = match fs_type_values.len() {
|
||||||
1 => (fs_type_values[0].to_string(), None),
|
1 => (fs_type_values[0].to_string(), None),
|
||||||
@@ -69,6 +69,7 @@ pub(crate) fn parse_mountinfo_for_line(line: &str) -> Option<Mountinfo> {
|
|||||||
|
|
||||||
let super_opts: Vec<String> = s1_values[2].trim().split(',').map(String::from).collect();
|
let super_opts: Vec<String> = s1_values[2].trim().split(',').map(String::from).collect();
|
||||||
Some(Mountinfo {
|
Some(Mountinfo {
|
||||||
|
mount_root,
|
||||||
mount_point,
|
mount_point,
|
||||||
fs_type,
|
fs_type,
|
||||||
super_opts,
|
super_opts,
|
||||||
@@ -123,47 +124,53 @@ impl Hierarchy for V1 {
|
|||||||
// The cgroup writeback feature requires cooperation between memcgs and blkcgs
|
// The cgroup writeback feature requires cooperation between memcgs and blkcgs
|
||||||
// To avoid exceptions, we should add_task for blkcg before memcg(push BlkIo before Mem)
|
// To avoid exceptions, we should add_task for blkcg before memcg(push BlkIo before Mem)
|
||||||
// For more Information: https://www.alibabacloud.com/help/doc-detail/155509.htm
|
// For more Information: https://www.alibabacloud.com/help/doc-detail/155509.htm
|
||||||
if let Some(root) = self.get_mount_point(Controllers::BlkIo) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::BlkIo) {
|
||||||
subs.push(Subsystem::BlkIo(BlkIoController::new(root, false)));
|
subs.push(Subsystem::BlkIo(BlkIoController::new(point, root, false)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::Mem) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::Mem) {
|
||||||
subs.push(Subsystem::Mem(MemController::new(root, false)));
|
subs.push(Subsystem::Mem(MemController::new(point, root, false)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::Pids) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::Pids) {
|
||||||
subs.push(Subsystem::Pid(PidController::new(root, false)));
|
subs.push(Subsystem::Pid(PidController::new(point, root, false)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::CpuSet) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::CpuSet) {
|
||||||
subs.push(Subsystem::CpuSet(CpuSetController::new(root, false)));
|
subs.push(Subsystem::CpuSet(CpuSetController::new(point, root, false)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::CpuAcct) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::CpuAcct) {
|
||||||
subs.push(Subsystem::CpuAcct(CpuAcctController::new(root)));
|
subs.push(Subsystem::CpuAcct(CpuAcctController::new(point, root)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::Cpu) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::Cpu) {
|
||||||
subs.push(Subsystem::Cpu(CpuController::new(root, false)));
|
subs.push(Subsystem::Cpu(CpuController::new(point, root, false)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::Devices) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::Devices) {
|
||||||
subs.push(Subsystem::Devices(DevicesController::new(root)));
|
subs.push(Subsystem::Devices(DevicesController::new(point, root)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::Freezer) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::Freezer) {
|
||||||
subs.push(Subsystem::Freezer(FreezerController::new(root, false)));
|
subs.push(Subsystem::Freezer(FreezerController::new(
|
||||||
|
point, root, false,
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::NetCls) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::NetCls) {
|
||||||
subs.push(Subsystem::NetCls(NetClsController::new(root)));
|
subs.push(Subsystem::NetCls(NetClsController::new(point, root)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::PerfEvent) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::PerfEvent) {
|
||||||
subs.push(Subsystem::PerfEvent(PerfEventController::new(root)));
|
subs.push(Subsystem::PerfEvent(PerfEventController::new(point, root)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::NetPrio) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::NetPrio) {
|
||||||
subs.push(Subsystem::NetPrio(NetPrioController::new(root)));
|
subs.push(Subsystem::NetPrio(NetPrioController::new(point, root)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::HugeTlb) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::HugeTlb) {
|
||||||
subs.push(Subsystem::HugeTlb(HugeTlbController::new(root, false)));
|
subs.push(Subsystem::HugeTlb(HugeTlbController::new(
|
||||||
|
point, root, false,
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::Rdma) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::Rdma) {
|
||||||
subs.push(Subsystem::Rdma(RdmaController::new(root)));
|
subs.push(Subsystem::Rdma(RdmaController::new(point, root)));
|
||||||
}
|
}
|
||||||
if let Some(root) = self.get_mount_point(Controllers::Systemd) {
|
if let Some((point, root)) = self.get_mount_point(Controllers::Systemd) {
|
||||||
subs.push(Subsystem::Systemd(SystemdController::new(root, false)));
|
subs.push(Subsystem::Systemd(SystemdController::new(
|
||||||
|
point, root, false,
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
|
|
||||||
subs
|
subs
|
||||||
@@ -173,6 +180,12 @@ impl Hierarchy for V1 {
|
|||||||
Cgroup::load(auto(), "")
|
Cgroup::load(auto(), "")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn parent_control_group(&self, path: &str) -> Cgroup {
|
||||||
|
let path = Path::new(path);
|
||||||
|
let parent_path = path.parent().unwrap().to_string_lossy().to_string();
|
||||||
|
Cgroup::load(auto(), parent_path)
|
||||||
|
}
|
||||||
|
|
||||||
fn root(&self) -> PathBuf {
|
fn root(&self) -> PathBuf {
|
||||||
self.mountinfo
|
self.mountinfo
|
||||||
.iter()
|
.iter()
|
||||||
@@ -212,29 +225,51 @@ impl Hierarchy for V2 {
|
|||||||
for s in controller_list {
|
for s in controller_list {
|
||||||
match s {
|
match s {
|
||||||
"cpu" => {
|
"cpu" => {
|
||||||
subs.push(Subsystem::Cpu(CpuController::new(self.root(), true)));
|
subs.push(Subsystem::Cpu(CpuController::new(
|
||||||
|
self.root(),
|
||||||
|
PathBuf::from(""),
|
||||||
|
true,
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
"io" => {
|
"io" => {
|
||||||
subs.push(Subsystem::BlkIo(BlkIoController::new(self.root(), true)));
|
subs.push(Subsystem::BlkIo(BlkIoController::new(
|
||||||
|
self.root(),
|
||||||
|
PathBuf::from(""),
|
||||||
|
true,
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
"cpuset" => {
|
"cpuset" => {
|
||||||
subs.push(Subsystem::CpuSet(CpuSetController::new(self.root(), true)));
|
subs.push(Subsystem::CpuSet(CpuSetController::new(
|
||||||
|
self.root(),
|
||||||
|
PathBuf::from(""),
|
||||||
|
true,
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
"memory" => {
|
"memory" => {
|
||||||
subs.push(Subsystem::Mem(MemController::new(self.root(), true)));
|
subs.push(Subsystem::Mem(MemController::new(
|
||||||
|
self.root(),
|
||||||
|
PathBuf::from(""),
|
||||||
|
true,
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
"pids" => {
|
"pids" => {
|
||||||
subs.push(Subsystem::Pid(PidController::new(self.root(), true)));
|
subs.push(Subsystem::Pid(PidController::new(
|
||||||
|
self.root(),
|
||||||
|
PathBuf::from(""),
|
||||||
|
true,
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
"freezer" => {
|
"freezer" => {
|
||||||
subs.push(Subsystem::Freezer(FreezerController::new(
|
subs.push(Subsystem::Freezer(FreezerController::new(
|
||||||
self.root(),
|
self.root(),
|
||||||
|
PathBuf::from(""),
|
||||||
true,
|
true,
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
"hugetlb" => {
|
"hugetlb" => {
|
||||||
subs.push(Subsystem::HugeTlb(HugeTlbController::new(
|
subs.push(Subsystem::HugeTlb(HugeTlbController::new(
|
||||||
self.root(),
|
self.root(),
|
||||||
|
PathBuf::from(""),
|
||||||
true,
|
true,
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
@@ -249,6 +284,12 @@ impl Hierarchy for V2 {
|
|||||||
Cgroup::load(auto(), "")
|
Cgroup::load(auto(), "")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn parent_control_group(&self, path: &str) -> Cgroup {
|
||||||
|
let path = Path::new(path);
|
||||||
|
let parent_path = path.parent().unwrap().to_string_lossy().to_string();
|
||||||
|
Cgroup::load(auto(), parent_path)
|
||||||
|
}
|
||||||
|
|
||||||
fn root(&self) -> PathBuf {
|
fn root(&self) -> PathBuf {
|
||||||
PathBuf::from(self.root.clone())
|
PathBuf::from(self.root.clone())
|
||||||
}
|
}
|
||||||
@@ -263,10 +304,10 @@ impl V1 {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_mount_point(&self, controller: Controllers) -> Option<PathBuf> {
|
pub fn get_mount_point(&self, controller: Controllers) -> Option<(PathBuf, PathBuf)> {
|
||||||
self.mountinfo.iter().find_map(|m| {
|
self.mountinfo.iter().find_map(|m| {
|
||||||
if m.fs_type.0 == "cgroup" && m.super_opts.contains(&controller.to_string()) {
|
if m.fs_type.0 == "cgroup" && m.super_opts.contains(&controller.to_string()) {
|
||||||
return Some(m.mount_point.clone());
|
return Some((m.mount_point.to_owned(), m.mount_root.to_owned()));
|
||||||
}
|
}
|
||||||
None
|
None
|
||||||
})
|
})
|
||||||
@@ -297,43 +338,16 @@ impl Default for V2 {
|
|||||||
|
|
||||||
pub const UNIFIED_MOUNTPOINT: &str = "/sys/fs/cgroup";
|
pub const UNIFIED_MOUNTPOINT: &str = "/sys/fs/cgroup";
|
||||||
|
|
||||||
#[cfg(any(
|
|
||||||
all(target_os = "linux", not(target_env = "musl")),
|
|
||||||
target_os = "android"
|
|
||||||
))]
|
|
||||||
pub fn is_cgroup2_unified_mode() -> bool {
|
pub fn is_cgroup2_unified_mode() -> bool {
|
||||||
use nix::sys::statfs;
|
use nix::sys::statfs;
|
||||||
|
|
||||||
let path = std::path::Path::new(UNIFIED_MOUNTPOINT);
|
let path = std::path::Path::new(UNIFIED_MOUNTPOINT);
|
||||||
let fs_stat = statfs::statfs(path);
|
let fs_stat = match statfs::statfs(path) {
|
||||||
if fs_stat.is_err() {
|
Ok(fs_stat) => fs_stat,
|
||||||
return false;
|
Err(_) => return false,
|
||||||
}
|
};
|
||||||
|
|
||||||
// FIXME notwork, nix will not compile CGROUP2_SUPER_MAGIC because not(target_env = "musl")
|
fs_stat.filesystem_type() == statfs::CGROUP2_SUPER_MAGIC
|
||||||
fs_stat.unwrap().filesystem_type() == statfs::CGROUP2_SUPER_MAGIC
|
|
||||||
}
|
|
||||||
|
|
||||||
pub const INIT_CGROUP_PATHS: &str = "/proc/1/cgroup";
|
|
||||||
|
|
||||||
#[cfg(all(target_os = "linux", target_env = "musl"))]
|
|
||||||
pub fn is_cgroup2_unified_mode() -> bool {
|
|
||||||
let lines = fs::read_to_string(INIT_CGROUP_PATHS);
|
|
||||||
if lines.is_err() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
for line in lines.unwrap().lines() {
|
|
||||||
let fields: Vec<&str> = line.split(':').collect();
|
|
||||||
if fields.len() != 3 {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if fields[0] != "0" {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn auto() -> Box<dyn Hierarchy> {
|
pub fn auto() -> Box<dyn Hierarchy> {
|
||||||
@@ -352,19 +366,19 @@ mod tests {
|
|||||||
fn test_parse_mount() {
|
fn test_parse_mount() {
|
||||||
let mountinfo = vec![
|
let mountinfo = vec![
|
||||||
("29 26 0:26 / /sys/fs/cgroup/cpuset,cpu,cpuacct rw,nosuid,nodev,noexec,relatime shared:10 - cgroup cgroup rw,cpuset,cpu,cpuacct",
|
("29 26 0:26 / /sys/fs/cgroup/cpuset,cpu,cpuacct rw,nosuid,nodev,noexec,relatime shared:10 - cgroup cgroup rw,cpuset,cpu,cpuacct",
|
||||||
Mountinfo{mount_point: PathBuf::from("/sys/fs/cgroup/cpuset,cpu,cpuacct"), fs_type: ("cgroup".to_string(), None), super_opts: vec![
|
Mountinfo{mount_root: PathBuf::from("/"), mount_point: PathBuf::from("/sys/fs/cgroup/cpuset,cpu,cpuacct"), fs_type: ("cgroup".to_string(), None), super_opts: vec![
|
||||||
"rw".to_string(),
|
"rw".to_string(),
|
||||||
"cpuset".to_string(),
|
"cpuset".to_string(),
|
||||||
"cpu".to_string(),
|
"cpu".to_string(),
|
||||||
"cpuacct".to_string(),
|
"cpuacct".to_string(),
|
||||||
]}),
|
]}),
|
||||||
("121 1731 0:42 / /shm rw,nosuid,nodev,noexec,relatime shared:68 master:66 - tmpfs shm rw,size=65536k",
|
("121 1731 0:42 / /shm rw,nosuid,nodev,noexec,relatime shared:68 master:66 - tmpfs shm rw,size=65536k",
|
||||||
Mountinfo{mount_point: PathBuf::from("/shm"), fs_type: ("tmpfs".to_string(), None), super_opts: vec![
|
Mountinfo{mount_root: PathBuf::from("/"), mount_point: PathBuf::from("/shm"), fs_type: ("tmpfs".to_string(), None), super_opts: vec![
|
||||||
"rw".to_string(),
|
"rw".to_string(),
|
||||||
"size=65536k".to_string(),
|
"size=65536k".to_string(),
|
||||||
]}),
|
]}),
|
||||||
("121 1731 0:42 / /shm rw,nosuid,nodev,noexec,relatime shared:68 master:66 - tmpfs.123 shm rw,size=65536k",
|
("121 1731 0:42 / /shm rw,nosuid,nodev,noexec,relatime shared:68 master:66 - tmpfs.123 shm rw,size=65536k",
|
||||||
Mountinfo{mount_point: PathBuf::from("/shm"), fs_type: ("tmpfs".to_string(), Some("123".to_string())), super_opts: vec![
|
Mountinfo{mount_root: PathBuf::from("/"), mount_point: PathBuf::from("/shm"), fs_type: ("tmpfs".to_string(), Some("123".to_string())), super_opts: vec![
|
||||||
"rw".to_string(),
|
"rw".to_string(),
|
||||||
"size=65536k".to_string(),
|
"size=65536k".to_string(),
|
||||||
]}),
|
]}),
|
||||||
@@ -12,11 +12,11 @@ use log::warn;
|
|||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
use crate::{flat_keyed_to_vec, read_u64_from};
|
use crate::fs::{flat_keyed_to_vec, read_u64_from};
|
||||||
|
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
ControllIdentifier, ControllerInternal, Controllers, HugePageResources, Resources, Subsystem,
|
ControllIdentifier, ControllerInternal, Controllers, HugePageResources, Resources, Subsystem,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -88,11 +88,11 @@ impl<'a> From<&'a Subsystem> for &'a HugeTlbController {
|
|||||||
|
|
||||||
impl HugeTlbController {
|
impl HugeTlbController {
|
||||||
/// Constructs a new `HugeTlbController` with `root` serving as the root of the control group.
|
/// Constructs a new `HugeTlbController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf, v2: bool) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf, v2: bool) -> Self {
|
||||||
let sizes = get_hugepage_sizes();
|
let sizes = get_hugepage_sizes();
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
sizes,
|
sizes,
|
||||||
v2,
|
v2,
|
||||||
}
|
}
|
||||||
@@ -138,8 +138,11 @@ impl HugeTlbController {
|
|||||||
/// Get the limit (in bytes) of how much memory can be backed by hugepages of a certain size
|
/// Get the limit (in bytes) of how much memory can be backed by hugepages of a certain size
|
||||||
/// (`hugetlb_size`).
|
/// (`hugetlb_size`).
|
||||||
pub fn limit_in_bytes(&self, hugetlb_size: &str) -> Result<u64> {
|
pub fn limit_in_bytes(&self, hugetlb_size: &str) -> Result<u64> {
|
||||||
self.open_path(&format!("hugetlb.{}.limit_in_bytes", hugetlb_size), false)
|
let mut file_name = format!("hugetlb.{}.limit_in_bytes", hugetlb_size);
|
||||||
.and_then(read_u64_from)
|
if self.v2 {
|
||||||
|
file_name = format!("hugetlb.{}.max", hugetlb_size);
|
||||||
|
}
|
||||||
|
self.open_path(&file_name, false).and_then(read_u64_from)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the current usage of memory that is backed by hugepages of a certain size
|
/// Get the current usage of memory that is backed by hugepages of a certain size
|
||||||
@@ -178,7 +181,6 @@ impl HugeTlbController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub const HUGEPAGESIZE_DIR: &str = "/sys/kernel/mm/hugepages";
|
pub const HUGEPAGESIZE_DIR: &str = "/sys/kernel/mm/hugepages";
|
||||||
use regex::Regex;
|
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
|
|
||||||
@@ -260,37 +262,46 @@ pub fn get_decimal_abbrs() -> Vec<String> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn parse_size(s: &str, m: &HashMap<String, u128>) -> Result<u128> {
|
fn parse_size(s: &str, m: &HashMap<String, u128>) -> Result<u128> {
|
||||||
let re = Regex::new(r"(?P<num>\d+)(?P<mul>[kKmMgGtTpP]?)[bB]?$");
|
// Remove leading/trailing whitespace.
|
||||||
|
let s = s.trim();
|
||||||
|
|
||||||
if re.is_err() {
|
// Remove an optional trailing 'b' or 'B'
|
||||||
|
let s = if let Some(stripped) = s.strip_suffix('b').or_else(|| s.strip_suffix('B')) {
|
||||||
|
stripped
|
||||||
|
} else {
|
||||||
|
s
|
||||||
|
};
|
||||||
|
|
||||||
|
// Ensure that the string is not empty after stripping.
|
||||||
|
if s.is_empty() {
|
||||||
return Err(Error::new(InvalidBytesSize));
|
return Err(Error::new(InvalidBytesSize));
|
||||||
}
|
}
|
||||||
let caps = re.unwrap().captures(s).unwrap();
|
|
||||||
|
|
||||||
let num = caps.name("num");
|
// The last character should be the multiplier letter.
|
||||||
let size: u128 = if let Some(num) = num {
|
let last_char = s.chars().last().unwrap();
|
||||||
let n = num.as_str().trim().parse::<u128>();
|
if !"kKmMgGtTpP".contains(last_char) {
|
||||||
if n.is_err() {
|
|
||||||
return Err(Error::new(InvalidBytesSize));
|
|
||||||
}
|
|
||||||
n.unwrap()
|
|
||||||
} else {
|
|
||||||
return Err(Error::new(InvalidBytesSize));
|
return Err(Error::new(InvalidBytesSize));
|
||||||
};
|
}
|
||||||
|
|
||||||
let q = caps.name("mul");
|
// The numeric part is everything before the multiplier letter.
|
||||||
let mul: u128 = if let Some(q) = q {
|
let num_part = &s[..s.len() - last_char.len_utf8()];
|
||||||
let t = m.get(q.as_str());
|
if num_part.trim().is_empty() {
|
||||||
if let Some(t) = t {
|
|
||||||
*t
|
|
||||||
} else {
|
|
||||||
return Err(Error::new(InvalidBytesSize));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return Err(Error::new(InvalidBytesSize));
|
return Err(Error::new(InvalidBytesSize));
|
||||||
};
|
}
|
||||||
|
|
||||||
Ok(size * mul)
|
// Parse the numeric part into a u128.
|
||||||
|
let number: u128 = num_part
|
||||||
|
.trim()
|
||||||
|
.parse()
|
||||||
|
.map_err(|_| Error::new(InvalidBytesSize))?;
|
||||||
|
|
||||||
|
// Look up the multiplier in the provided HashMap.
|
||||||
|
let multiplier_key = last_char.to_string();
|
||||||
|
let multiplier = m
|
||||||
|
.get(&multiplier_key)
|
||||||
|
.ok_or_else(|| Error::new(InvalidBytesSize))?;
|
||||||
|
|
||||||
|
Ok(number * multiplier)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn custom_size(mut size: f64, base: f64, m: &[String]) -> String {
|
fn custom_size(mut size: f64, base: f64, m: &[String]) -> String {
|
||||||
@@ -302,3 +313,60 @@ fn custom_size(mut size: f64, base: f64, m: &[String]) -> String {
|
|||||||
|
|
||||||
format!("{}{}", size, m[i].as_str())
|
format!("{}{}", size, m[i].as_str())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_binary_size_valid() {
|
||||||
|
let m = get_binary_size_map();
|
||||||
|
// Valid inputs must include a multiplier letter.
|
||||||
|
assert_eq!(parse_size("1k", &m).unwrap(), KiB);
|
||||||
|
assert_eq!(parse_size("2m", &m).unwrap(), 2 * MiB);
|
||||||
|
assert_eq!(parse_size("3g", &m).unwrap(), 3 * GiB);
|
||||||
|
assert_eq!(parse_size("4t", &m).unwrap(), 4 * TiB);
|
||||||
|
assert_eq!(parse_size("5p", &m).unwrap(), 5 * PiB);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_decimal_size_valid() {
|
||||||
|
let m = get_decimal_size_map();
|
||||||
|
assert_eq!(parse_size("1k", &m).unwrap(), KB);
|
||||||
|
assert_eq!(parse_size("2m", &m).unwrap(), 2 * MB);
|
||||||
|
assert_eq!(parse_size("3g", &m).unwrap(), 3 * GB);
|
||||||
|
assert_eq!(parse_size("4t", &m).unwrap(), 4 * TB);
|
||||||
|
assert_eq!(parse_size("5p", &m).unwrap(), 5 * PB);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_trailing_b_suffix() {
|
||||||
|
let m = get_binary_size_map();
|
||||||
|
// Trailing 'b' or 'B' should be accepted.
|
||||||
|
assert_eq!(parse_size("1kb", &m).unwrap(), KiB);
|
||||||
|
assert_eq!(parse_size("2mB", &m).unwrap(), 2 * MiB);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_invalid_inputs() {
|
||||||
|
let m = get_binary_size_map();
|
||||||
|
// Missing multiplier letter results in error.
|
||||||
|
assert!(parse_size("1", &m).is_err());
|
||||||
|
// Invalid multiplier letter.
|
||||||
|
assert!(parse_size("10x", &m).is_err());
|
||||||
|
// Non-numeric input.
|
||||||
|
assert!(parse_size("abc", &m).is_err());
|
||||||
|
// Only multiplier letter with no number.
|
||||||
|
assert!(parse_size("k", &m).is_err());
|
||||||
|
// Number with an invalid trailing character.
|
||||||
|
assert!(parse_size("123z", &m).is_err());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_uppercase_multiplier_fails() {
|
||||||
|
let m = get_binary_size_map();
|
||||||
|
// Although the regex matches uppercase letters, the provided map only contains lowercase keys.
|
||||||
|
// Therefore, "1K" does not match any key and should produce an error.
|
||||||
|
assert!(parse_size("1K", &m).is_err());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,14 +14,14 @@ use std::io::Write;
|
|||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::sync::mpsc::Receiver;
|
use std::sync::mpsc::Receiver;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
use crate::events;
|
use crate::fs::events;
|
||||||
use crate::{read_i64_from, read_string_from, read_u64_from};
|
use crate::fs::{read_i64_from, read_string_from, read_u64_from};
|
||||||
|
|
||||||
use crate::flat_keyed_to_hashmap;
|
use crate::fs::flat_keyed_to_hashmap;
|
||||||
|
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
ControllIdentifier, ControllerInternal, Controllers, CustomizedAttribute, MaxValue,
|
ControllIdentifier, ControllerInternal, Controllers, CustomizedAttribute, MaxValue,
|
||||||
MemoryResources, Resources, Subsystem,
|
MemoryResources, Resources, Subsystem,
|
||||||
};
|
};
|
||||||
@@ -142,9 +142,7 @@ fn parse_numa_stat(s: String) -> Result<NumaStat> {
|
|||||||
let hier_unevict_line = ls.next().unwrap_or_default();
|
let hier_unevict_line = ls.next().unwrap_or_default();
|
||||||
|
|
||||||
Ok(NumaStat {
|
Ok(NumaStat {
|
||||||
total_pages: total_line
|
total_pages: total_line.split([' ', '=']).collect::<Vec<_>>()[1]
|
||||||
.split(|x| x == ' ' || x == '=')
|
|
||||||
.collect::<Vec<_>>()[1]
|
|
||||||
.parse::<u64>()
|
.parse::<u64>()
|
||||||
.unwrap_or(0),
|
.unwrap_or(0),
|
||||||
total_pages_per_node: {
|
total_pages_per_node: {
|
||||||
@@ -157,9 +155,7 @@ fn parse_numa_stat(s: String) -> Result<NumaStat> {
|
|||||||
})
|
})
|
||||||
.collect()
|
.collect()
|
||||||
},
|
},
|
||||||
file_pages: file_line
|
file_pages: file_line.split([' ', '=']).collect::<Vec<_>>()[1]
|
||||||
.split(|x| x == ' ' || x == '=')
|
|
||||||
.collect::<Vec<_>>()[1]
|
|
||||||
.parse::<u64>()
|
.parse::<u64>()
|
||||||
.unwrap_or(0),
|
.unwrap_or(0),
|
||||||
file_pages_per_node: {
|
file_pages_per_node: {
|
||||||
@@ -172,9 +168,7 @@ fn parse_numa_stat(s: String) -> Result<NumaStat> {
|
|||||||
})
|
})
|
||||||
.collect()
|
.collect()
|
||||||
},
|
},
|
||||||
anon_pages: anon_line
|
anon_pages: anon_line.split([' ', '=']).collect::<Vec<_>>()[1]
|
||||||
.split(|x| x == ' ' || x == '=')
|
|
||||||
.collect::<Vec<_>>()[1]
|
|
||||||
.parse::<u64>()
|
.parse::<u64>()
|
||||||
.unwrap_or(0),
|
.unwrap_or(0),
|
||||||
anon_pages_per_node: {
|
anon_pages_per_node: {
|
||||||
@@ -187,9 +181,7 @@ fn parse_numa_stat(s: String) -> Result<NumaStat> {
|
|||||||
})
|
})
|
||||||
.collect()
|
.collect()
|
||||||
},
|
},
|
||||||
unevictable_pages: unevict_line
|
unevictable_pages: unevict_line.split([' ', '=']).collect::<Vec<_>>()[1]
|
||||||
.split(|x| x == ' ' || x == '=')
|
|
||||||
.collect::<Vec<_>>()[1]
|
|
||||||
.parse::<u64>()
|
.parse::<u64>()
|
||||||
.unwrap_or(0),
|
.unwrap_or(0),
|
||||||
unevictable_pages_per_node: {
|
unevictable_pages_per_node: {
|
||||||
@@ -204,9 +196,7 @@ fn parse_numa_stat(s: String) -> Result<NumaStat> {
|
|||||||
},
|
},
|
||||||
hierarchical_total_pages: {
|
hierarchical_total_pages: {
|
||||||
if !hier_total_line.is_empty() {
|
if !hier_total_line.is_empty() {
|
||||||
hier_total_line
|
hier_total_line.split([' ', '=']).collect::<Vec<_>>()[1]
|
||||||
.split(|x| x == ' ' || x == '=')
|
|
||||||
.collect::<Vec<_>>()[1]
|
|
||||||
.parse::<u64>()
|
.parse::<u64>()
|
||||||
.unwrap_or(0)
|
.unwrap_or(0)
|
||||||
} else {
|
} else {
|
||||||
@@ -229,9 +219,7 @@ fn parse_numa_stat(s: String) -> Result<NumaStat> {
|
|||||||
},
|
},
|
||||||
hierarchical_file_pages: {
|
hierarchical_file_pages: {
|
||||||
if !hier_file_line.is_empty() {
|
if !hier_file_line.is_empty() {
|
||||||
hier_file_line
|
hier_file_line.split([' ', '=']).collect::<Vec<_>>()[1]
|
||||||
.split(|x| x == ' ' || x == '=')
|
|
||||||
.collect::<Vec<_>>()[1]
|
|
||||||
.parse::<u64>()
|
.parse::<u64>()
|
||||||
.unwrap_or(0)
|
.unwrap_or(0)
|
||||||
} else {
|
} else {
|
||||||
@@ -254,9 +242,7 @@ fn parse_numa_stat(s: String) -> Result<NumaStat> {
|
|||||||
},
|
},
|
||||||
hierarchical_anon_pages: {
|
hierarchical_anon_pages: {
|
||||||
if !hier_anon_line.is_empty() {
|
if !hier_anon_line.is_empty() {
|
||||||
hier_anon_line
|
hier_anon_line.split([' ', '=']).collect::<Vec<_>>()[1]
|
||||||
.split(|x| x == ' ' || x == '=')
|
|
||||||
.collect::<Vec<_>>()[1]
|
|
||||||
.parse::<u64>()
|
.parse::<u64>()
|
||||||
.unwrap_or(0)
|
.unwrap_or(0)
|
||||||
} else {
|
} else {
|
||||||
@@ -279,9 +265,7 @@ fn parse_numa_stat(s: String) -> Result<NumaStat> {
|
|||||||
},
|
},
|
||||||
hierarchical_unevictable_pages: {
|
hierarchical_unevictable_pages: {
|
||||||
if !hier_unevict_line.is_empty() {
|
if !hier_unevict_line.is_empty() {
|
||||||
hier_unevict_line
|
hier_unevict_line.split([' ', '=']).collect::<Vec<_>>()[1]
|
||||||
.split(|x| x == ' ' || x == '=')
|
|
||||||
.collect::<Vec<_>>()[1]
|
|
||||||
.parse::<u64>()
|
.parse::<u64>()
|
||||||
.unwrap_or(0)
|
.unwrap_or(0)
|
||||||
} else {
|
} else {
|
||||||
@@ -540,10 +524,10 @@ impl ControllerInternal for MemController {
|
|||||||
|
|
||||||
impl MemController {
|
impl MemController {
|
||||||
/// Contructs a new `MemController` with `root` serving as the root of the control group.
|
/// Contructs a new `MemController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf, v2: bool) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf, v2: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
v2,
|
v2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -573,18 +557,33 @@ impl MemController {
|
|||||||
|
|
||||||
// for v2
|
// for v2
|
||||||
pub fn get_mem(&self) -> Result<SetMemory> {
|
pub fn get_mem(&self) -> Result<SetMemory> {
|
||||||
let mut m: SetMemory = Default::default();
|
let m = SetMemory {
|
||||||
self.get_max_value("memory.high")
|
high: self
|
||||||
.map(|x| m.high = Some(x))?;
|
.get_max_value("memory.high")
|
||||||
self.get_max_value("memory.low").map(|x| m.low = Some(x))?;
|
.map_or(Some(MaxValue::default()), Some),
|
||||||
self.get_max_value("memory.max").map(|x| m.max = Some(x))?;
|
low: self
|
||||||
self.get_max_value("memory.min").map(|x| m.min = Some(x))?;
|
.get_max_value("memory.low")
|
||||||
|
.map_or(Some(MaxValue::Value(0)), Some),
|
||||||
|
max: self
|
||||||
|
.get_max_value("memory.max")
|
||||||
|
.map_or(Some(MaxValue::default()), Some),
|
||||||
|
min: self
|
||||||
|
.get_max_value("memory.min")
|
||||||
|
.map_or(Some(MaxValue::Value(0)), Some),
|
||||||
|
};
|
||||||
|
|
||||||
Ok(m)
|
Ok(m)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn memory_stat_v2(&self) -> Memory {
|
fn memory_stat_v2(&self) -> Memory {
|
||||||
let set = self.get_mem().unwrap();
|
// NOTE: get_mem() always returns T, but let's
|
||||||
|
// still do `unwrap_or` for safety.
|
||||||
|
let set = self.get_mem().unwrap_or(SetMemory {
|
||||||
|
low: Some(MaxValue::Value(0)),
|
||||||
|
high: Some(MaxValue::default()),
|
||||||
|
max: Some(MaxValue::default()),
|
||||||
|
min: Some(MaxValue::Value(0)),
|
||||||
|
});
|
||||||
|
|
||||||
Memory {
|
Memory {
|
||||||
fail_cnt: 0,
|
fail_cnt: 0,
|
||||||
@@ -593,7 +592,10 @@ impl MemController {
|
|||||||
.open_path("memory.current", false)
|
.open_path("memory.current", false)
|
||||||
.and_then(read_u64_from)
|
.and_then(read_u64_from)
|
||||||
.unwrap_or(0),
|
.unwrap_or(0),
|
||||||
max_usage_in_bytes: 0,
|
max_usage_in_bytes: self
|
||||||
|
.open_path("memory.peak", false)
|
||||||
|
.and_then(read_u64_from)
|
||||||
|
.unwrap_or(0),
|
||||||
move_charge_at_immigrate: 0,
|
move_charge_at_immigrate: 0,
|
||||||
numa_stat: NumaStat::default(),
|
numa_stat: NumaStat::default(),
|
||||||
oom_control: OomControl::default(),
|
oom_control: OomControl::default(),
|
||||||
@@ -727,7 +729,7 @@ impl MemController {
|
|||||||
.open_path("memory.swap.events", false)
|
.open_path("memory.swap.events", false)
|
||||||
.and_then(flat_keyed_to_hashmap)
|
.and_then(flat_keyed_to_hashmap)
|
||||||
.map(|x| *x.get("fail").unwrap_or(&0) as u64)
|
.map(|x| *x.get("fail").unwrap_or(&0) as u64)
|
||||||
.unwrap(),
|
.unwrap_or(0),
|
||||||
limit_in_bytes: self
|
limit_in_bytes: self
|
||||||
.open_path("memory.swap.max", false)
|
.open_path("memory.swap.max", false)
|
||||||
.and_then(read_i64_from)
|
.and_then(read_i64_from)
|
||||||
@@ -736,7 +738,10 @@ impl MemController {
|
|||||||
.open_path("memory.swap.current", false)
|
.open_path("memory.swap.current", false)
|
||||||
.and_then(read_u64_from)
|
.and_then(read_u64_from)
|
||||||
.unwrap_or(0),
|
.unwrap_or(0),
|
||||||
max_usage_in_bytes: 0,
|
max_usage_in_bytes: self
|
||||||
|
.open_path("memory.swap.peak", false)
|
||||||
|
.and_then(read_u64_from)
|
||||||
|
.unwrap_or(0),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -844,13 +849,16 @@ impl MemController {
|
|||||||
/// Set the memory usage limit of the control group, in bytes.
|
/// Set the memory usage limit of the control group, in bytes.
|
||||||
pub fn set_limit(&self, limit: i64) -> Result<()> {
|
pub fn set_limit(&self, limit: i64) -> Result<()> {
|
||||||
let mut file_name = "memory.limit_in_bytes";
|
let mut file_name = "memory.limit_in_bytes";
|
||||||
|
let mut limit_str = limit.to_string();
|
||||||
if self.v2 {
|
if self.v2 {
|
||||||
file_name = "memory.max";
|
file_name = "memory.max";
|
||||||
|
if limit == -1 {
|
||||||
|
limit_str = "max".to_string();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
self.open_path(file_name, true).and_then(|mut file| {
|
self.open_path(file_name, true).and_then(|mut file| {
|
||||||
file.write_all(limit.to_string().as_ref()).map_err(|e| {
|
file.write_all(limit_str.as_ref())
|
||||||
Error::with_cause(WriteFailed(file_name.to_string(), limit.to_string()), e)
|
.map_err(|e| Error::with_cause(WriteFailed(file_name.to_string(), limit_str), e))
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -881,13 +889,16 @@ impl MemController {
|
|||||||
/// Set the memory+swap limit of the control group, in bytes.
|
/// Set the memory+swap limit of the control group, in bytes.
|
||||||
pub fn set_memswap_limit(&self, limit: i64) -> Result<()> {
|
pub fn set_memswap_limit(&self, limit: i64) -> Result<()> {
|
||||||
let mut file_name = "memory.memsw.limit_in_bytes";
|
let mut file_name = "memory.memsw.limit_in_bytes";
|
||||||
|
let mut limit_str = limit.to_string();
|
||||||
if self.v2 {
|
if self.v2 {
|
||||||
file_name = "memory.swap.max";
|
file_name = "memory.swap.max";
|
||||||
|
if limit == -1 {
|
||||||
|
limit_str = "max".to_string();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
self.open_path(file_name, true).and_then(|mut file| {
|
self.open_path(file_name, true).and_then(|mut file| {
|
||||||
file.write_all(limit.to_string().as_ref()).map_err(|e| {
|
file.write_all(limit_str.as_ref())
|
||||||
Error::with_cause(WriteFailed(file_name.to_string(), limit.to_string()), e)
|
.map_err(|e| Error::with_cause(WriteFailed(file_name.to_string(), limit_str), e))
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -991,7 +1002,7 @@ impl<'a> From<&'a Subsystem> for &'a MemController {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::memory::{
|
use crate::fs::memory::{
|
||||||
parse_memory_stat, parse_numa_stat, parse_oom_control, MemoryStat, NumaStat, OomControl,
|
parse_memory_stat, parse_numa_stat, parse_oom_control, MemoryStat, NumaStat, OomControl,
|
||||||
};
|
};
|
||||||
|
|
||||||
995
src/fs/mod.rs
Normal file
995
src/fs/mod.rs
Normal file
@@ -0,0 +1,995 @@
|
|||||||
|
// Copyright (c) 2018 Levente Kurusa
|
||||||
|
// Copyright (c) 2020 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
#![allow(clippy::unnecessary_unwrap)]
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
use std::fmt;
|
||||||
|
use std::fs::{self, File};
|
||||||
|
use std::io::{BufRead, BufReader, Read, Write};
|
||||||
|
use std::path::{Path, PathBuf};
|
||||||
|
use std::str::FromStr;
|
||||||
|
|
||||||
|
macro_rules! update_and_test {
|
||||||
|
($self: ident, $set_func:ident, $value:expr, $get_func:ident) => {
|
||||||
|
if let Some(v) = $value {
|
||||||
|
$self.$set_func(v)?;
|
||||||
|
if $self.$get_func()? != v {
|
||||||
|
return Err(Error::new(Other));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! update {
|
||||||
|
($self: ident, $set_func:ident, $value:expr) => {
|
||||||
|
if let Some(v) = $value {
|
||||||
|
let _ = $self.$set_func(v);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
pub mod blkio;
|
||||||
|
pub mod cgroup;
|
||||||
|
pub mod cgroup_builder;
|
||||||
|
pub mod cpu;
|
||||||
|
pub mod cpuacct;
|
||||||
|
pub mod cpuset;
|
||||||
|
pub mod devices;
|
||||||
|
pub mod error;
|
||||||
|
pub mod events;
|
||||||
|
pub mod freezer;
|
||||||
|
pub mod hierarchies;
|
||||||
|
pub mod hugetlb;
|
||||||
|
pub mod memory;
|
||||||
|
pub mod net_cls;
|
||||||
|
pub mod net_prio;
|
||||||
|
pub mod perf_event;
|
||||||
|
pub mod pid;
|
||||||
|
pub mod rdma;
|
||||||
|
pub mod systemd;
|
||||||
|
|
||||||
|
use crate::fs::blkio::BlkIoController;
|
||||||
|
use crate::fs::cpu::CpuController;
|
||||||
|
use crate::fs::cpuacct::CpuAcctController;
|
||||||
|
use crate::fs::cpuset::CpuSetController;
|
||||||
|
use crate::fs::devices::DevicesController;
|
||||||
|
use crate::fs::error::ErrorKind::*;
|
||||||
|
use crate::fs::error::*;
|
||||||
|
use crate::fs::freezer::FreezerController;
|
||||||
|
use crate::fs::hugetlb::HugeTlbController;
|
||||||
|
use crate::fs::memory::MemController;
|
||||||
|
use crate::fs::net_cls::NetClsController;
|
||||||
|
use crate::fs::net_prio::NetPrioController;
|
||||||
|
use crate::fs::perf_event::PerfEventController;
|
||||||
|
use crate::fs::pid::PidController;
|
||||||
|
use crate::fs::rdma::RdmaController;
|
||||||
|
use crate::fs::systemd::SystemdController;
|
||||||
|
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use crate::fs::cgroup::Cgroup;
|
||||||
|
|
||||||
|
/// Contains all the subsystems that are available in this crate.
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub enum Subsystem {
|
||||||
|
/// Controller for the `Pid` subsystem, see `PidController` for more information.
|
||||||
|
Pid(PidController),
|
||||||
|
/// Controller for the `Mem` subsystem, see `MemController` for more information.
|
||||||
|
Mem(MemController),
|
||||||
|
/// Controller for the `CpuSet subsystem, see `CpuSetController` for more information.
|
||||||
|
CpuSet(CpuSetController),
|
||||||
|
/// Controller for the `CpuAcct` subsystem, see `CpuAcctController` for more information.
|
||||||
|
CpuAcct(CpuAcctController),
|
||||||
|
/// Controller for the `Cpu` subsystem, see `CpuController` for more information.
|
||||||
|
Cpu(CpuController),
|
||||||
|
/// Controller for the `Devices` subsystem, see `DevicesController` for more information.
|
||||||
|
Devices(DevicesController),
|
||||||
|
/// Controller for the `Freezer` subsystem, see `FreezerController` for more information.
|
||||||
|
Freezer(FreezerController),
|
||||||
|
/// Controller for the `NetCls` subsystem, see `NetClsController` for more information.
|
||||||
|
NetCls(NetClsController),
|
||||||
|
/// Controller for the `BlkIo` subsystem, see `BlkIoController` for more information.
|
||||||
|
BlkIo(BlkIoController),
|
||||||
|
/// Controller for the `PerfEvent` subsystem, see `PerfEventController` for more information.
|
||||||
|
PerfEvent(PerfEventController),
|
||||||
|
/// Controller for the `NetPrio` subsystem, see `NetPrioController` for more information.
|
||||||
|
NetPrio(NetPrioController),
|
||||||
|
/// Controller for the `HugeTlb` subsystem, see `HugeTlbController` for more information.
|
||||||
|
HugeTlb(HugeTlbController),
|
||||||
|
/// Controller for the `Rdma` subsystem, see `RdmaController` for more information.
|
||||||
|
Rdma(RdmaController),
|
||||||
|
/// Controller for the `Systemd` subsystem, see `SystemdController` for more information.
|
||||||
|
Systemd(SystemdController),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[derive(Eq, PartialEq, Debug, Clone)]
|
||||||
|
pub enum Controllers {
|
||||||
|
Pids,
|
||||||
|
Mem,
|
||||||
|
CpuSet,
|
||||||
|
CpuAcct,
|
||||||
|
Cpu,
|
||||||
|
Devices,
|
||||||
|
Freezer,
|
||||||
|
NetCls,
|
||||||
|
BlkIo,
|
||||||
|
PerfEvent,
|
||||||
|
NetPrio,
|
||||||
|
HugeTlb,
|
||||||
|
Rdma,
|
||||||
|
Systemd,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for Controllers {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
|
match self {
|
||||||
|
Controllers::Pids => write!(f, "pids"),
|
||||||
|
Controllers::Mem => write!(f, "memory"),
|
||||||
|
Controllers::CpuSet => write!(f, "cpuset"),
|
||||||
|
Controllers::CpuAcct => write!(f, "cpuacct"),
|
||||||
|
Controllers::Cpu => write!(f, "cpu"),
|
||||||
|
Controllers::Devices => write!(f, "devices"),
|
||||||
|
Controllers::Freezer => write!(f, "freezer"),
|
||||||
|
Controllers::NetCls => write!(f, "net_cls"),
|
||||||
|
Controllers::BlkIo => write!(f, "blkio"),
|
||||||
|
Controllers::PerfEvent => write!(f, "perf_event"),
|
||||||
|
Controllers::NetPrio => write!(f, "net_prio"),
|
||||||
|
Controllers::HugeTlb => write!(f, "hugetlb"),
|
||||||
|
Controllers::Rdma => write!(f, "rdma"),
|
||||||
|
Controllers::Systemd => write!(f, "name=systemd"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mod sealed {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
pub trait ControllerInternal {
|
||||||
|
fn apply(&self, res: &Resources) -> Result<()>;
|
||||||
|
|
||||||
|
// meta stuff
|
||||||
|
fn control_type(&self) -> Controllers;
|
||||||
|
fn get_path(&self) -> &PathBuf;
|
||||||
|
fn get_path_mut(&mut self) -> &mut PathBuf;
|
||||||
|
fn get_base(&self) -> &PathBuf;
|
||||||
|
|
||||||
|
/// Hooks running after controller crated, if have
|
||||||
|
fn post_create(&self) {}
|
||||||
|
|
||||||
|
fn is_v2(&self) -> bool {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
|
fn open_path(&self, p: &str, w: bool) -> Result<File> {
|
||||||
|
let mut path = self.get_path().clone();
|
||||||
|
path.push(p);
|
||||||
|
|
||||||
|
if w {
|
||||||
|
match File::create(&path) {
|
||||||
|
Err(e) => Err(Error::with_cause(
|
||||||
|
ErrorKind::WriteFailed(
|
||||||
|
path.display().to_string(),
|
||||||
|
"[CREATE FILE]".to_string(),
|
||||||
|
),
|
||||||
|
e,
|
||||||
|
)),
|
||||||
|
Ok(file) => Ok(file),
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
match File::open(&path) {
|
||||||
|
Err(e) => Err(Error::with_cause(
|
||||||
|
ErrorKind::ReadFailed(path.display().to_string()),
|
||||||
|
e,
|
||||||
|
)),
|
||||||
|
Ok(file) => Ok(file),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_max_value(&self, f: &str) -> Result<MaxValue> {
|
||||||
|
self.open_path(f, false).and_then(|mut file| {
|
||||||
|
let mut string = String::new();
|
||||||
|
let res = file.read_to_string(&mut string);
|
||||||
|
match res {
|
||||||
|
Ok(_) => parse_max_value(&string),
|
||||||
|
Err(e) => Err(Error::with_cause(ReadFailed(f.to_string()), e)),
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
fn path_exists(&self, p: &str) -> bool {
|
||||||
|
std::path::Path::new(p).exists()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait CustomizedAttribute: ControllerInternal {
|
||||||
|
fn set(&self, key: &str, value: &str) -> Result<()> {
|
||||||
|
self.open_path(key, true).and_then(|mut file| {
|
||||||
|
file.write_all(value.as_ref()).map_err(|e| {
|
||||||
|
Error::with_cause(WriteFailed(key.to_string(), value.to_string()), e)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
|
fn get(&self, key: &str) -> Result<String> {
|
||||||
|
self.open_path(key, false).and_then(|mut file: File| {
|
||||||
|
let mut string = String::new();
|
||||||
|
match file.read_to_string(&mut string) {
|
||||||
|
Ok(_) => Ok(string.trim().to_owned()),
|
||||||
|
Err(e) => Err(Error::with_cause(ReadFailed(key.to_string()), e)),
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) use crate::fs::sealed::{ControllerInternal, CustomizedAttribute};
|
||||||
|
use crate::CgroupPid;
|
||||||
|
|
||||||
|
/// A Controller is a subsystem attached to the control group.
|
||||||
|
///
|
||||||
|
/// Implementors are able to control certain aspects of a control group.
|
||||||
|
pub trait Controller {
|
||||||
|
#[doc(hidden)]
|
||||||
|
fn control_type(&self) -> Controllers;
|
||||||
|
|
||||||
|
/// The file system path to the controller.
|
||||||
|
fn path(&self) -> &Path;
|
||||||
|
|
||||||
|
/// Root path of the file system to the controller.
|
||||||
|
fn base(&self) -> &Path;
|
||||||
|
|
||||||
|
/// Apply a set of resources to the Controller, invoking its internal functions to pass the
|
||||||
|
/// kernel the information.
|
||||||
|
fn apply(&self, res: &Resources) -> Result<()>;
|
||||||
|
|
||||||
|
/// Create this controller
|
||||||
|
fn create(&self) -> Result<()>;
|
||||||
|
|
||||||
|
/// Does this controller already exist?
|
||||||
|
fn exists(&self) -> bool;
|
||||||
|
|
||||||
|
/// Set notify_on_release
|
||||||
|
fn set_notify_on_release(&self, enable: bool) -> Result<()>;
|
||||||
|
|
||||||
|
/// Set release_agent
|
||||||
|
fn set_release_agent(&self, path: &str) -> Result<()>;
|
||||||
|
|
||||||
|
/// Delete the controller.
|
||||||
|
fn delete(&self) -> Result<()>;
|
||||||
|
|
||||||
|
/// Attach a task to this controller.
|
||||||
|
fn add_task(&self, pid: &CgroupPid) -> Result<()>;
|
||||||
|
|
||||||
|
/// Attach a task to this controller.
|
||||||
|
fn add_task_by_tgid(&self, pid: &CgroupPid) -> Result<()>;
|
||||||
|
|
||||||
|
/// set cgroup type.
|
||||||
|
fn set_cgroup_type(&self, cgroup_type: &str) -> Result<()>;
|
||||||
|
|
||||||
|
/// get cgroup type.
|
||||||
|
fn get_cgroup_type(&self) -> Result<String>;
|
||||||
|
|
||||||
|
/// Get the list of tasks that this controller has.
|
||||||
|
fn tasks(&self) -> Vec<CgroupPid>;
|
||||||
|
|
||||||
|
/// Get the list of procs that this controller has.
|
||||||
|
fn procs(&self) -> Vec<CgroupPid>;
|
||||||
|
|
||||||
|
fn v2(&self) -> bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T> Controller for T
|
||||||
|
where
|
||||||
|
T: ControllerInternal,
|
||||||
|
{
|
||||||
|
fn control_type(&self) -> Controllers {
|
||||||
|
ControllerInternal::control_type(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn path(&self) -> &Path {
|
||||||
|
self.get_path()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn base(&self) -> &Path {
|
||||||
|
self.get_base()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Apply a set of resources to the Controller, invoking its internal functions to pass the
|
||||||
|
/// kernel the information.
|
||||||
|
fn apply(&self, res: &Resources) -> Result<()> {
|
||||||
|
ControllerInternal::apply(self, res)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create this controller
|
||||||
|
fn create(&self) -> Result<()> {
|
||||||
|
std::fs::create_dir_all(self.get_path())
|
||||||
|
.map_err(|err| Error::with_cause(ErrorKind::FsError, err))?;
|
||||||
|
self.post_create();
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Set notify_on_release
|
||||||
|
fn set_notify_on_release(&self, enable: bool) -> Result<()> {
|
||||||
|
if self.is_v2() {
|
||||||
|
return Err(Error::new(ErrorKind::CgroupVersion));
|
||||||
|
}
|
||||||
|
self.open_path("notify_on_release", true)
|
||||||
|
.and_then(|mut file| {
|
||||||
|
write!(file, "{}", enable as i32).map_err(|e| {
|
||||||
|
Error::with_cause(
|
||||||
|
ErrorKind::WriteFailed("notify_on_release".to_string(), enable.to_string()),
|
||||||
|
e,
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Set release_agent
|
||||||
|
fn set_release_agent(&self, path: &str) -> Result<()> {
|
||||||
|
if self.is_v2() {
|
||||||
|
return Err(Error::new(ErrorKind::CgroupVersion));
|
||||||
|
}
|
||||||
|
self.open_path("release_agent", true).and_then(|mut file| {
|
||||||
|
file.write_all(path.as_bytes()).map_err(|e| {
|
||||||
|
Error::with_cause(
|
||||||
|
ErrorKind::WriteFailed("release_agent".to_string(), path.to_string()),
|
||||||
|
e,
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
/// Does this controller already exist?
|
||||||
|
fn exists(&self) -> bool {
|
||||||
|
self.get_path().exists()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Delete the controller.
|
||||||
|
fn delete(&self) -> Result<()> {
|
||||||
|
if !self.get_path().exists() {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compatible with runC for remove dir operation
|
||||||
|
// https://github.com/opencontainers/runc/blob/main/libcontainer/cgroups/utils.go#L272
|
||||||
|
//
|
||||||
|
// We trying to remove all paths five times with increasing delay between tries.
|
||||||
|
// If after all there are not removed cgroups - appropriate error will be
|
||||||
|
// returned.
|
||||||
|
let mut delay = std::time::Duration::from_millis(10);
|
||||||
|
let cgroup_path = self.get_path();
|
||||||
|
for _i in 0..4 {
|
||||||
|
if let Ok(()) = remove_dir(cgroup_path) {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
std::thread::sleep(delay);
|
||||||
|
delay *= 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
remove_dir(cgroup_path)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Attach a task to this controller.
|
||||||
|
fn add_task(&self, pid: &CgroupPid) -> Result<()> {
|
||||||
|
let mut file_name = "tasks";
|
||||||
|
if self.is_v2() {
|
||||||
|
file_name = "cgroup.threads";
|
||||||
|
}
|
||||||
|
self.open_path(file_name, true).and_then(|mut file| {
|
||||||
|
file.write_all(pid.pid.to_string().as_ref()).map_err(|e| {
|
||||||
|
Error::with_cause(
|
||||||
|
ErrorKind::WriteFailed(file_name.to_string(), pid.pid.to_string()),
|
||||||
|
e,
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Attach a task to this controller by thread group id.
|
||||||
|
fn add_task_by_tgid(&self, pid: &CgroupPid) -> Result<()> {
|
||||||
|
let file_name = "cgroup.procs";
|
||||||
|
self.open_path(file_name, true).and_then(|mut file| {
|
||||||
|
file.write_all(pid.pid.to_string().as_ref()).map_err(|e| {
|
||||||
|
Error::with_cause(
|
||||||
|
ErrorKind::WriteFailed(file_name.to_string(), pid.pid.to_string()),
|
||||||
|
e,
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the list of procs that this controller has.
|
||||||
|
fn procs(&self) -> Vec<CgroupPid> {
|
||||||
|
let file_name = "cgroup.procs";
|
||||||
|
self.open_path(file_name, false)
|
||||||
|
.map(|file| {
|
||||||
|
let bf = BufReader::new(file);
|
||||||
|
let mut v = Vec::new();
|
||||||
|
for line in bf.lines() {
|
||||||
|
match line {
|
||||||
|
Ok(line) => {
|
||||||
|
let n = line.trim().parse().unwrap_or(0u64);
|
||||||
|
v.push(n);
|
||||||
|
}
|
||||||
|
Err(_) => break,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
v.into_iter().map(CgroupPid::from).collect()
|
||||||
|
})
|
||||||
|
.unwrap_or_default()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the list of tasks that this controller has.
|
||||||
|
fn tasks(&self) -> Vec<CgroupPid> {
|
||||||
|
let mut file_name = "tasks";
|
||||||
|
if self.is_v2() {
|
||||||
|
file_name = "cgroup.threads";
|
||||||
|
}
|
||||||
|
self.open_path(file_name, false)
|
||||||
|
.map(|file| {
|
||||||
|
let bf = BufReader::new(file);
|
||||||
|
let mut v = Vec::new();
|
||||||
|
for line in bf.lines() {
|
||||||
|
match line {
|
||||||
|
Ok(line) => {
|
||||||
|
let n = line.trim().parse().unwrap_or(0u64);
|
||||||
|
v.push(n);
|
||||||
|
}
|
||||||
|
Err(_) => break,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
v.into_iter().map(CgroupPid::from).collect()
|
||||||
|
})
|
||||||
|
.unwrap_or_default()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// set cgroup.type
|
||||||
|
fn set_cgroup_type(&self, cgroup_type: &str) -> Result<()> {
|
||||||
|
if !self.is_v2() {
|
||||||
|
return Err(Error::new(ErrorKind::CgroupVersion));
|
||||||
|
}
|
||||||
|
let file_name = "cgroup.type";
|
||||||
|
self.open_path(file_name, true).and_then(|mut file| {
|
||||||
|
file.write_all(cgroup_type.as_bytes()).map_err(|e| {
|
||||||
|
Error::with_cause(
|
||||||
|
ErrorKind::WriteFailed(file_name.to_string(), cgroup_type.to_string()),
|
||||||
|
e,
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// get cgroup.type
|
||||||
|
fn get_cgroup_type(&self) -> Result<String> {
|
||||||
|
if !self.is_v2() {
|
||||||
|
return Err(Error::new(ErrorKind::CgroupVersion));
|
||||||
|
}
|
||||||
|
let file_name = "cgroup.type";
|
||||||
|
self.open_path(file_name, false).and_then(|mut file: File| {
|
||||||
|
let mut string = String::new();
|
||||||
|
match file.read_to_string(&mut string) {
|
||||||
|
Ok(_) => Ok(string.trim().to_owned()),
|
||||||
|
Err(e) => Err(Error::with_cause(
|
||||||
|
ErrorKind::ReadFailed(file_name.to_string()),
|
||||||
|
e,
|
||||||
|
)),
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
fn v2(&self) -> bool {
|
||||||
|
self.is_v2()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove_dir aims to remove cgroup path. It does so recursively,
|
||||||
|
// by removing any subdirectories (sub-cgroups) first.
|
||||||
|
fn remove_dir(dir: &Path) -> Result<()> {
|
||||||
|
// try the fast path first.
|
||||||
|
if fs::remove_dir(dir).is_ok() {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
if dir.exists() && dir.is_dir() {
|
||||||
|
for entry in fs::read_dir(dir)
|
||||||
|
.map_err(|e| Error::with_cause(ReadFailed(dir.display().to_string()), e))?
|
||||||
|
{
|
||||||
|
let entry =
|
||||||
|
entry.map_err(|e| Error::with_cause(ReadFailed(dir.display().to_string()), e))?;
|
||||||
|
let path = entry.path();
|
||||||
|
if path.is_dir() {
|
||||||
|
remove_dir(&path)?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fs::remove_dir(dir).map_err(|e| Error::with_cause(RemoveFailed, e))?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
pub trait ControllIdentifier {
|
||||||
|
fn controller_type() -> Controllers;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Control group hierarchy (right now, only V1 is supported, but in the future Unified will be
|
||||||
|
/// implemented as well).
|
||||||
|
pub trait Hierarchy: std::fmt::Debug + Send + Sync {
|
||||||
|
/// Returns what subsystems are supported by the hierarchy.
|
||||||
|
fn subsystems(&self) -> Vec<Subsystem>;
|
||||||
|
|
||||||
|
/// Returns the root directory of the hierarchy.
|
||||||
|
fn root(&self) -> PathBuf;
|
||||||
|
|
||||||
|
/// Return a handle to the root control group in the hierarchy.
|
||||||
|
fn root_control_group(&self) -> Cgroup;
|
||||||
|
|
||||||
|
/// Return a handle to the parent control group in the hierarchy.
|
||||||
|
fn parent_control_group(&self, path: &str) -> Cgroup;
|
||||||
|
|
||||||
|
fn v2(&self) -> bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Resource limits for the memory subsystem.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct MemoryResources {
|
||||||
|
/// How much memory (in bytes) can the kernel consume.
|
||||||
|
pub kernel_memory_limit: Option<i64>,
|
||||||
|
/// Upper limit of memory usage of the control group's tasks.
|
||||||
|
pub memory_hard_limit: Option<i64>,
|
||||||
|
/// How much memory the tasks in the control group can use when the system is under memory
|
||||||
|
/// pressure.
|
||||||
|
pub memory_soft_limit: Option<i64>,
|
||||||
|
/// How much of the kernel's memory (in bytes) can be used for TCP-related buffers.
|
||||||
|
pub kernel_tcp_memory_limit: Option<i64>,
|
||||||
|
/// How much memory and swap together can the tasks in the control group use.
|
||||||
|
pub memory_swap_limit: Option<i64>,
|
||||||
|
/// Controls the tendency of the kernel to swap out parts of the address space of the tasks to
|
||||||
|
/// disk. Lower value implies less likely.
|
||||||
|
///
|
||||||
|
/// Note, however, that a value of zero does not mean the process is never swapped out. Use the
|
||||||
|
/// traditional `mlock(2)` system call for that purpose.
|
||||||
|
pub swappiness: Option<u64>,
|
||||||
|
/// Customized key-value attributes
|
||||||
|
///
|
||||||
|
/// # Usage:
|
||||||
|
/// ```
|
||||||
|
/// let resource = &mut cgroups_rs::fs::Resources::default();
|
||||||
|
/// resource.memory.attrs.insert("memory.numa_balancing".to_string(), "true".to_string());
|
||||||
|
/// // apply here
|
||||||
|
/// ```
|
||||||
|
pub attrs: HashMap<String, String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Resources limits on the number of processes.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct PidResources {
|
||||||
|
/// The maximum number of processes that can exist in the control group.
|
||||||
|
///
|
||||||
|
/// Note that attaching processes to the control group will still succeed _even_ if the limit
|
||||||
|
/// would be violated, however forks/clones inside the control group will have with `EAGAIN` if
|
||||||
|
/// they would violate the limit set here.
|
||||||
|
pub maximum_number_of_processes: Option<MaxValue>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Resources limits about how the tasks can use the CPU.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct CpuResources {
|
||||||
|
// cpuset
|
||||||
|
/// A comma-separated list of CPU IDs where the task in the control group can run. Dashes
|
||||||
|
/// between numbers indicate ranges.
|
||||||
|
pub cpus: Option<String>,
|
||||||
|
/// Same syntax as the `cpus` field of this structure, but applies to memory nodes instead of
|
||||||
|
/// processors.
|
||||||
|
pub mems: Option<String>,
|
||||||
|
// cpu
|
||||||
|
/// Weight of how much of the total CPU time should this control group get. Note that this is
|
||||||
|
/// hierarchical, so this is weighted against the siblings of this control group.
|
||||||
|
pub shares: Option<u64>,
|
||||||
|
/// In one `period`, how much can the tasks run in microseconds.
|
||||||
|
pub quota: Option<i64>,
|
||||||
|
/// Period of time in microseconds.
|
||||||
|
pub period: Option<u64>,
|
||||||
|
/// This is currently a no-operation.
|
||||||
|
pub realtime_runtime: Option<i64>,
|
||||||
|
/// This is currently a no-operation.
|
||||||
|
pub realtime_period: Option<u64>,
|
||||||
|
/// Customized key-value attributes
|
||||||
|
/// # Usage:
|
||||||
|
/// ```
|
||||||
|
/// let resource = &mut cgroups_rs::fs::Resources::default();
|
||||||
|
/// resource.cpu.attrs.insert("cpu.cfs_init_buffer_us".to_string(), "10".to_string());
|
||||||
|
/// // apply here
|
||||||
|
/// ```
|
||||||
|
pub attrs: HashMap<String, String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// A device resource that can be allowed or denied access to.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct DeviceResource {
|
||||||
|
/// If true, access to the device is allowed, otherwise it's denied.
|
||||||
|
pub allow: bool,
|
||||||
|
/// `'c'` for character device, `'b'` for block device; or `'a'` for all devices.
|
||||||
|
pub devtype: crate::fs::devices::DeviceType,
|
||||||
|
/// The major number of the device.
|
||||||
|
pub major: i64,
|
||||||
|
/// The minor number of the device.
|
||||||
|
pub minor: i64,
|
||||||
|
/// Sequence of `'r'`, `'w'` or `'m'`, each denoting read, write or mknod permissions.
|
||||||
|
pub access: Vec<crate::fs::devices::DevicePermissions>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Limit the usage of devices for the control group's tasks.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct DeviceResources {
|
||||||
|
/// For each device in the list, the limits in the structure are applied.
|
||||||
|
pub devices: Vec<DeviceResource>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Assigned priority for a network device.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct NetworkPriority {
|
||||||
|
/// The name (as visible in `ifconfig`) of the interface.
|
||||||
|
pub name: String,
|
||||||
|
/// Assigned priority.
|
||||||
|
pub priority: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Collections of limits and tags that can be imposed on packets emitted by the tasks in the
|
||||||
|
/// control group.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct NetworkResources {
|
||||||
|
/// The networking class identifier to attach to the packets.
|
||||||
|
///
|
||||||
|
/// This can then later be used in iptables and such to have special rules.
|
||||||
|
pub class_id: Option<u64>,
|
||||||
|
/// Priority of the egress traffic for each interface.
|
||||||
|
pub priorities: Vec<NetworkPriority>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// A hugepage type and its consumption limit for the control group.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct HugePageResource {
|
||||||
|
/// The size of the hugepage, i.e. `2MB`, `1GB`, etc.
|
||||||
|
pub size: String,
|
||||||
|
/// The amount of bytes (of memory consumed by the tasks) that are allowed to be backed by
|
||||||
|
/// hugepages.
|
||||||
|
pub limit: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Provides the ability to set consumption limit on each type of hugepages.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct HugePageResources {
|
||||||
|
/// Set a limit of consumption for each hugepages type.
|
||||||
|
pub limits: Vec<HugePageResource>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Weight for a particular block device.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct BlkIoDeviceResource {
|
||||||
|
/// The major number of the device.
|
||||||
|
pub major: u64,
|
||||||
|
/// The minor number of the device.
|
||||||
|
pub minor: u64,
|
||||||
|
/// The weight of the device against the descendant nodes.
|
||||||
|
pub weight: Option<u16>,
|
||||||
|
/// The weight of the device against the sibling nodes.
|
||||||
|
pub leaf_weight: Option<u16>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Provides the ability to throttle a device (both byte/sec, and IO op/s)
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct BlkIoDeviceThrottleResource {
|
||||||
|
/// The major number of the device.
|
||||||
|
pub major: u64,
|
||||||
|
/// The minor number of the device.
|
||||||
|
pub minor: u64,
|
||||||
|
/// The rate.
|
||||||
|
pub rate: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// General block I/O resource limits.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct BlkIoResources {
|
||||||
|
/// The weight of the control group against descendant nodes.
|
||||||
|
pub weight: Option<u16>,
|
||||||
|
/// The weight of the control group against sibling nodes.
|
||||||
|
pub leaf_weight: Option<u16>,
|
||||||
|
/// For each device, a separate weight (both normal and leaf) can be provided.
|
||||||
|
pub weight_device: Vec<BlkIoDeviceResource>,
|
||||||
|
/// Throttled read bytes/second can be provided for each device.
|
||||||
|
pub throttle_read_bps_device: Vec<BlkIoDeviceThrottleResource>,
|
||||||
|
/// Throttled read IO operations per second can be provided for each device.
|
||||||
|
pub throttle_read_iops_device: Vec<BlkIoDeviceThrottleResource>,
|
||||||
|
/// Throttled written bytes/second can be provided for each device.
|
||||||
|
pub throttle_write_bps_device: Vec<BlkIoDeviceThrottleResource>,
|
||||||
|
/// Throttled write IO operations per second can be provided for each device.
|
||||||
|
pub throttle_write_iops_device: Vec<BlkIoDeviceThrottleResource>,
|
||||||
|
|
||||||
|
/// Customized key-value attributes
|
||||||
|
/// # Usage:
|
||||||
|
/// ```
|
||||||
|
/// let resource = &mut cgroups_rs::fs::Resources::default();
|
||||||
|
/// resource.blkio.attrs.insert("io.cost.weight".to_string(), "10".to_string());
|
||||||
|
/// // apply here
|
||||||
|
/// ```
|
||||||
|
pub attrs: HashMap<String, String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The resource limits and constraints that will be set on the control group.
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub struct Resources {
|
||||||
|
/// Memory usage related limits.
|
||||||
|
pub memory: MemoryResources,
|
||||||
|
/// Process identifier related limits.
|
||||||
|
pub pid: PidResources,
|
||||||
|
/// CPU related limits.
|
||||||
|
pub cpu: CpuResources,
|
||||||
|
/// Device related limits.
|
||||||
|
pub devices: DeviceResources,
|
||||||
|
/// Network related tags and limits.
|
||||||
|
pub network: NetworkResources,
|
||||||
|
/// Hugepages consumption related limits.
|
||||||
|
pub hugepages: HugePageResources,
|
||||||
|
/// Block device I/O related limits.
|
||||||
|
pub blkio: BlkIoResources,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Subsystem {
|
||||||
|
fn enter(self, path: &Path) -> Self {
|
||||||
|
match self {
|
||||||
|
Subsystem::Pid(mut cont) => Subsystem::Pid({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::Mem(mut cont) => Subsystem::Mem({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::CpuSet(mut cont) => Subsystem::CpuSet({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::CpuAcct(mut cont) => Subsystem::CpuAcct({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::Cpu(mut cont) => Subsystem::Cpu({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::Devices(mut cont) => Subsystem::Devices({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::Freezer(mut cont) => Subsystem::Freezer({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::NetCls(mut cont) => Subsystem::NetCls({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::BlkIo(mut cont) => Subsystem::BlkIo({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::PerfEvent(mut cont) => Subsystem::PerfEvent({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::NetPrio(mut cont) => Subsystem::NetPrio({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::HugeTlb(mut cont) => Subsystem::HugeTlb({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::Rdma(mut cont) => Subsystem::Rdma({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
Subsystem::Systemd(mut cont) => Subsystem::Systemd({
|
||||||
|
cont.get_path_mut().push(path);
|
||||||
|
cont
|
||||||
|
}),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn to_controller(&self) -> &dyn Controller {
|
||||||
|
match self {
|
||||||
|
Subsystem::Pid(cont) => cont,
|
||||||
|
Subsystem::Mem(cont) => cont,
|
||||||
|
Subsystem::CpuSet(cont) => cont,
|
||||||
|
Subsystem::CpuAcct(cont) => cont,
|
||||||
|
Subsystem::Cpu(cont) => cont,
|
||||||
|
Subsystem::Devices(cont) => cont,
|
||||||
|
Subsystem::Freezer(cont) => cont,
|
||||||
|
Subsystem::NetCls(cont) => cont,
|
||||||
|
Subsystem::BlkIo(cont) => cont,
|
||||||
|
Subsystem::PerfEvent(cont) => cont,
|
||||||
|
Subsystem::NetPrio(cont) => cont,
|
||||||
|
Subsystem::HugeTlb(cont) => cont,
|
||||||
|
Subsystem::Rdma(cont) => cont,
|
||||||
|
Subsystem::Systemd(cont) => cont,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn controller_name(&self) -> String {
|
||||||
|
self.to_controller().control_type().to_string()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The values for `memory.hight` or `pids.max`
|
||||||
|
#[derive(Eq, PartialEq, Copy, Clone, Debug)]
|
||||||
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
|
pub enum MaxValue {
|
||||||
|
/// This value is returned when the text is `"max"`.
|
||||||
|
Max,
|
||||||
|
/// When the value is a numerical value, they are returned via this enum field.
|
||||||
|
Value(i64),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[allow(clippy::derivable_impls)]
|
||||||
|
impl Default for MaxValue {
|
||||||
|
fn default() -> Self {
|
||||||
|
MaxValue::Max
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl MaxValue {
|
||||||
|
#[allow(clippy::should_implement_trait, clippy::wrong_self_convention)]
|
||||||
|
fn to_i64(&self) -> i64 {
|
||||||
|
match self {
|
||||||
|
MaxValue::Max => -1,
|
||||||
|
MaxValue::Value(num) => *num,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for MaxValue {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
|
match self {
|
||||||
|
MaxValue::Max => write!(f, "max"),
|
||||||
|
MaxValue::Value(num) => write!(f, "{}", num),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn parse_max_value(s: &str) -> Result<MaxValue> {
|
||||||
|
if s.trim() == "max" {
|
||||||
|
return Ok(MaxValue::Max);
|
||||||
|
}
|
||||||
|
match s.trim().parse() {
|
||||||
|
Ok(val) => Ok(MaxValue::Value(val)),
|
||||||
|
Err(e) => Err(Error::with_cause(ParseError, e)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Flat keyed
|
||||||
|
// KEY0 VAL0\n
|
||||||
|
// KEY1 VAL1\n
|
||||||
|
pub fn flat_keyed_to_vec(mut file: File) -> Result<Vec<(String, i64)>> {
|
||||||
|
let mut content = String::new();
|
||||||
|
file.read_to_string(&mut content)
|
||||||
|
.map_err(|e| Error::with_cause(ReadFailed("FIXME: read_string_from".to_string()), e))?;
|
||||||
|
|
||||||
|
let mut v = Vec::new();
|
||||||
|
for line in content.lines() {
|
||||||
|
let parts: Vec<&str> = line.split(' ').collect();
|
||||||
|
if parts.len() == 2 {
|
||||||
|
if let Ok(i) = parts[1].parse::<i64>() {
|
||||||
|
v.push((parts[0].to_string(), i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(v)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Flat keyed
|
||||||
|
// KEY0 VAL0\n
|
||||||
|
// KEY1 VAL1\n
|
||||||
|
pub fn flat_keyed_to_hashmap(mut file: File) -> Result<HashMap<String, i64>> {
|
||||||
|
let mut content = String::new();
|
||||||
|
file.read_to_string(&mut content)
|
||||||
|
.map_err(|e| Error::with_cause(ReadFailed("FIXME: read_string_from".to_string()), e))?;
|
||||||
|
|
||||||
|
let mut h = HashMap::new();
|
||||||
|
for line in content.lines() {
|
||||||
|
let parts: Vec<&str> = line.split(' ').collect();
|
||||||
|
if parts.len() == 2 {
|
||||||
|
if let Ok(i) = parts[1].parse::<i64>() {
|
||||||
|
h.insert(parts[0].to_string(), i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(h)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Nested keyed
|
||||||
|
// KEY0 SUB_KEY0=VAL00 SUB_KEY1=VAL01...
|
||||||
|
// KEY1 SUB_KEY0=VAL10 SUB_KEY1=VAL11...
|
||||||
|
pub fn nested_keyed_to_hashmap(mut file: File) -> Result<HashMap<String, HashMap<String, i64>>> {
|
||||||
|
let mut content = String::new();
|
||||||
|
file.read_to_string(&mut content)
|
||||||
|
.map_err(|e| Error::with_cause(ReadFailed("FIXME: read_string_from".to_string()), e))?;
|
||||||
|
|
||||||
|
let mut h = HashMap::new();
|
||||||
|
for line in content.lines() {
|
||||||
|
let parts: Vec<&str> = line.split(' ').collect();
|
||||||
|
if parts.is_empty() {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
let mut th = HashMap::new();
|
||||||
|
for item in parts[1..].iter() {
|
||||||
|
let fields: Vec<&str> = item.split('=').collect();
|
||||||
|
if fields.len() == 2 {
|
||||||
|
if let Ok(i) = fields[1].parse::<i64>() {
|
||||||
|
th.insert(fields[0].to_string(), i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h.insert(parts[0].to_string(), th);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(h)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn read_from<T>(mut file: File) -> Result<T>
|
||||||
|
where
|
||||||
|
T: FromStr,
|
||||||
|
<T as FromStr>::Err: 'static + Send + Sync + std::error::Error,
|
||||||
|
{
|
||||||
|
let mut string = String::new();
|
||||||
|
match file.read_to_string(&mut string) {
|
||||||
|
Ok(_) => string
|
||||||
|
.trim()
|
||||||
|
.parse::<T>()
|
||||||
|
.map_err(|e| Error::with_cause(ParseError, e)),
|
||||||
|
Err(e) => Err(Error::with_cause(
|
||||||
|
ReadFailed("FIXME: can't get path in fn read_from".to_string()),
|
||||||
|
e,
|
||||||
|
)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn read_string_from(mut file: File) -> Result<String> {
|
||||||
|
let mut string = String::new();
|
||||||
|
match file.read_to_string(&mut string) {
|
||||||
|
Ok(_) => Ok(string.trim().to_string()),
|
||||||
|
Err(e) => Err(Error::with_cause(
|
||||||
|
ReadFailed("FIXME: can't get path in fn read_string_from".to_string()),
|
||||||
|
e,
|
||||||
|
)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// read and parse an u64 data
|
||||||
|
fn read_u64_from(file: File) -> Result<u64> {
|
||||||
|
read_from::<u64>(file)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// read and parse an i64 data
|
||||||
|
fn read_i64_from(file: File) -> Result<i64> {
|
||||||
|
read_from::<i64>(file)
|
||||||
|
}
|
||||||
@@ -10,11 +10,11 @@
|
|||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::read_u64_from;
|
use crate::fs::read_u64_from;
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
ControllIdentifier, ControllerInternal, Controllers, NetworkResources, Resources, Subsystem,
|
ControllIdentifier, ControllerInternal, Controllers, NetworkResources, Resources, Subsystem,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -76,10 +76,10 @@ impl<'a> From<&'a Subsystem> for &'a NetClsController {
|
|||||||
|
|
||||||
impl NetClsController {
|
impl NetClsController {
|
||||||
/// Constructs a new `NetClsController` with `root` serving as the root of the control group.
|
/// Constructs a new `NetClsController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -11,11 +11,11 @@ use std::collections::HashMap;
|
|||||||
use std::io::{BufRead, BufReader, Write};
|
use std::io::{BufRead, BufReader, Write};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::read_u64_from;
|
use crate::fs::read_u64_from;
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
ControllIdentifier, ControllerInternal, Controllers, NetworkResources, Resources, Subsystem,
|
ControllIdentifier, ControllerInternal, Controllers, NetworkResources, Resources, Subsystem,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -79,10 +79,10 @@ impl<'a> From<&'a Subsystem> for &'a NetPrioController {
|
|||||||
|
|
||||||
impl NetPrioController {
|
impl NetPrioController {
|
||||||
/// Constructs a new `NetPrioController` with `root` serving as the root of the control group.
|
/// Constructs a new `NetPrioController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -94,36 +94,26 @@ impl NetPrioController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// A map of priorities for each network interface.
|
/// A map of priorities for each network interface.
|
||||||
#[allow(clippy::iter_nth_zero, clippy::unnecessary_unwrap)]
|
|
||||||
pub fn ifpriomap(&self) -> Result<HashMap<String, u64>> {
|
pub fn ifpriomap(&self) -> Result<HashMap<String, u64>> {
|
||||||
self.open_path("net_prio.ifpriomap", false)
|
self.open_path("net_prio.ifpriomap", false)
|
||||||
.and_then(|file| {
|
.and_then(|file| {
|
||||||
let bf = BufReader::new(file);
|
let bf = BufReader::new(file);
|
||||||
bf.lines().fold(Ok(HashMap::new()), |acc, line| {
|
bf.lines()
|
||||||
if acc.is_err() {
|
.map(|line| {
|
||||||
acc
|
let line = line.map_err(|_| Error::new(ParseError))?;
|
||||||
} else {
|
let mut parts = line.split_whitespace();
|
||||||
let mut acc = acc.unwrap();
|
|
||||||
let l = line.unwrap();
|
|
||||||
let mut sp = l.split_whitespace();
|
|
||||||
|
|
||||||
let ifname = sp.nth(0);
|
let ifname = parts.next().ok_or(Error::new(ParseError))?;
|
||||||
let ifprio = sp.nth(1);
|
let ifprio_str = parts.next().ok_or(Error::new(ParseError))?;
|
||||||
if ifname.is_none() || ifprio.is_none() {
|
|
||||||
Err(Error::new(ParseError))
|
let ifprio = ifprio_str
|
||||||
} else {
|
.trim()
|
||||||
let ifname = ifname.unwrap();
|
.parse()
|
||||||
let ifprio = ifprio.unwrap().trim().parse();
|
.map_err(|e| Error::with_cause(ParseError, e))?;
|
||||||
match ifprio {
|
|
||||||
Err(e) => Err(Error::with_cause(ParseError, e)),
|
Ok((ifname.to_string(), ifprio))
|
||||||
Ok(_) => {
|
})
|
||||||
acc.insert(ifname.to_string(), ifprio.unwrap());
|
.collect::<Result<HashMap<String, _>>>()
|
||||||
Ok(acc)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -9,9 +9,9 @@
|
|||||||
//! [tools/perf/Documentation/perf-record.txt](https://raw.githubusercontent.com/torvalds/linux/master/tools/perf/Documentation/perf-record.txt)
|
//! [tools/perf/Documentation/perf-record.txt](https://raw.githubusercontent.com/torvalds/linux/master/tools/perf/Documentation/perf-record.txt)
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
use crate::fs::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
||||||
|
|
||||||
/// A controller that allows controlling the `perf_event` subsystem of a Cgroup.
|
/// A controller that allows controlling the `perf_event` subsystem of a Cgroup.
|
||||||
///
|
///
|
||||||
@@ -65,10 +65,10 @@ impl<'a> From<&'a Subsystem> for &'a PerfEventController {
|
|||||||
|
|
||||||
impl PerfEventController {
|
impl PerfEventController {
|
||||||
/// Constructs a new `PerfEventController` with `root` serving as the root of the control group.
|
/// Constructs a new `PerfEventController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -11,11 +11,11 @@
|
|||||||
use std::io::{Read, Write};
|
use std::io::{Read, Write};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::read_u64_from;
|
use crate::fs::read_u64_from;
|
||||||
use crate::{
|
use crate::fs::{
|
||||||
parse_max_value, ControllIdentifier, ControllerInternal, Controllers, MaxValue, PidResources,
|
parse_max_value, ControllIdentifier, ControllerInternal, Controllers, MaxValue, PidResources,
|
||||||
Resources, Subsystem,
|
Resources, Subsystem,
|
||||||
};
|
};
|
||||||
@@ -92,10 +92,10 @@ impl<'a> From<&'a Subsystem> for &'a PidController {
|
|||||||
impl PidController {
|
impl PidController {
|
||||||
/// Constructors a new `PidController` instance, with `root` serving as the controller's root
|
/// Constructors a new `PidController` instance, with `root` serving as the controller's root
|
||||||
/// directory.
|
/// directory.
|
||||||
pub fn new(root: PathBuf, v2: bool) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf, v2: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
v2,
|
v2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -10,11 +10,11 @@
|
|||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::ErrorKind::*;
|
use crate::fs::error::ErrorKind::*;
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::read_string_from;
|
use crate::fs::read_string_from;
|
||||||
use crate::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
use crate::fs::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
||||||
|
|
||||||
/// A controller that allows controlling the `rdma` subsystem of a Cgroup.
|
/// A controller that allows controlling the `rdma` subsystem of a Cgroup.
|
||||||
///
|
///
|
||||||
@@ -68,10 +68,10 @@ impl<'a> From<&'a Subsystem> for &'a RdmaController {
|
|||||||
|
|
||||||
impl RdmaController {
|
impl RdmaController {
|
||||||
/// Constructs a new `RdmaController` with `root` serving as the root of the control group.
|
/// Constructs a new `RdmaController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -81,6 +81,11 @@ impl RdmaController {
|
|||||||
.and_then(read_string_from)
|
.and_then(read_string_from)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns the max usage of RDMA/IB specific resources.
|
||||||
|
pub fn max(&self) -> Result<String> {
|
||||||
|
self.open_path("rdma.max", false).and_then(read_string_from)
|
||||||
|
}
|
||||||
|
|
||||||
/// Set a maximum usage for each RDMA/IB resource.
|
/// Set a maximum usage for each RDMA/IB resource.
|
||||||
pub fn set_max(&self, max: &str) -> Result<()> {
|
pub fn set_max(&self, max: &str) -> Result<()> {
|
||||||
self.open_path("rdma.max", true).and_then(|mut file| {
|
self.open_path("rdma.max", true).and_then(|mut file| {
|
||||||
@@ -7,9 +7,9 @@
|
|||||||
//!
|
//!
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use crate::error::*;
|
use crate::fs::error::*;
|
||||||
|
|
||||||
use crate::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
use crate::fs::{ControllIdentifier, ControllerInternal, Controllers, Resources, Subsystem};
|
||||||
|
|
||||||
/// A controller that allows controlling the `systemd` subsystem of a Cgroup.
|
/// A controller that allows controlling the `systemd` subsystem of a Cgroup.
|
||||||
///
|
///
|
||||||
@@ -62,10 +62,10 @@ impl<'a> From<&'a Subsystem> for &'a SystemdController {
|
|||||||
|
|
||||||
impl SystemdController {
|
impl SystemdController {
|
||||||
/// Constructs a new `SystemdController` with `root` serving as the root of the control group.
|
/// Constructs a new `SystemdController` with `root` serving as the root of the control group.
|
||||||
pub fn new(root: PathBuf, v2: bool) -> Self {
|
pub fn new(point: PathBuf, root: PathBuf, v2: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
base: root.clone(),
|
base: root,
|
||||||
path: root,
|
path: point,
|
||||||
_v2: v2,
|
_v2: v2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
967
src/lib.rs
967
src/lib.rs
@@ -1,697 +1,37 @@
|
|||||||
// Copyright (c) 2018 Levente Kurusa
|
// Copyright (c) 2018 Levente Kurusa
|
||||||
// Copyright (c) 2020 Ant Group
|
// Copyright (c) 2020-2025 Ant Group
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: Apache-2.0 or MIT
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
//
|
//
|
||||||
|
|
||||||
#![allow(clippy::unnecessary_unwrap)]
|
pub mod fs;
|
||||||
use log::*;
|
#[cfg(feature = "oci")]
|
||||||
|
pub mod manager;
|
||||||
use std::collections::HashMap;
|
#[cfg(feature = "oci")]
|
||||||
use std::fmt;
|
pub use manager::{FsManager, Manager, SystemdManager};
|
||||||
use std::fs::{self, File};
|
pub mod stats;
|
||||||
use std::io::{BufRead, BufReader, Read, Write};
|
pub use stats::CgroupStats;
|
||||||
use std::path::{Path, PathBuf};
|
|
||||||
use std::str::FromStr;
|
|
||||||
|
|
||||||
macro_rules! update_and_test {
|
|
||||||
($self: ident, $set_func:ident, $value:expr, $get_func:ident) => {
|
|
||||||
if let Some(v) = $value {
|
|
||||||
$self.$set_func(v)?;
|
|
||||||
if $self.$get_func()? != v {
|
|
||||||
return Err(Error::new(Other));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
macro_rules! update {
|
|
||||||
($self: ident, $set_func:ident, $value:expr) => {
|
|
||||||
if let Some(v) = $value {
|
|
||||||
let _ = $self.$set_func(v);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
pub mod blkio;
|
|
||||||
pub mod cgroup;
|
|
||||||
pub mod cgroup_builder;
|
|
||||||
pub mod cpu;
|
|
||||||
pub mod cpuacct;
|
|
||||||
pub mod cpuset;
|
|
||||||
pub mod devices;
|
|
||||||
pub mod error;
|
|
||||||
pub mod events;
|
|
||||||
pub mod freezer;
|
|
||||||
pub mod hierarchies;
|
|
||||||
pub mod hugetlb;
|
|
||||||
pub mod memory;
|
|
||||||
pub mod net_cls;
|
|
||||||
pub mod net_prio;
|
|
||||||
pub mod perf_event;
|
|
||||||
pub mod pid;
|
|
||||||
pub mod rdma;
|
|
||||||
pub mod systemd;
|
pub mod systemd;
|
||||||
|
|
||||||
use crate::blkio::BlkIoController;
|
/// The maximum value for CPU shares in cgroups v1
|
||||||
use crate::cpu::CpuController;
|
pub const CPU_SHARES_V1_MAX: u64 = 262144;
|
||||||
use crate::cpuacct::CpuAcctController;
|
/// The maximum value for CPU weight in cgroups v2
|
||||||
use crate::cpuset::CpuSetController;
|
pub const CPU_WEIGHT_V2_MAX: u64 = 10000;
|
||||||
use crate::devices::DevicesController;
|
|
||||||
use crate::error::ErrorKind::*;
|
|
||||||
use crate::error::*;
|
|
||||||
use crate::freezer::FreezerController;
|
|
||||||
use crate::hugetlb::HugeTlbController;
|
|
||||||
use crate::memory::MemController;
|
|
||||||
use crate::net_cls::NetClsController;
|
|
||||||
use crate::net_prio::NetPrioController;
|
|
||||||
use crate::perf_event::PerfEventController;
|
|
||||||
use crate::pid::PidController;
|
|
||||||
use crate::rdma::RdmaController;
|
|
||||||
use crate::systemd::SystemdController;
|
|
||||||
|
|
||||||
#[doc(inline)]
|
/// The current state of the control group
|
||||||
pub use crate::cgroup::Cgroup;
|
|
||||||
|
|
||||||
/// Contains all the subsystems that are available in this crate.
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
pub enum Subsystem {
|
|
||||||
/// Controller for the `Pid` subsystem, see `PidController` for more information.
|
|
||||||
Pid(PidController),
|
|
||||||
/// Controller for the `Mem` subsystem, see `MemController` for more information.
|
|
||||||
Mem(MemController),
|
|
||||||
/// Controller for the `CpuSet subsystem, see `CpuSetController` for more information.
|
|
||||||
CpuSet(CpuSetController),
|
|
||||||
/// Controller for the `CpuAcct` subsystem, see `CpuAcctController` for more information.
|
|
||||||
CpuAcct(CpuAcctController),
|
|
||||||
/// Controller for the `Cpu` subsystem, see `CpuController` for more information.
|
|
||||||
Cpu(CpuController),
|
|
||||||
/// Controller for the `Devices` subsystem, see `DevicesController` for more information.
|
|
||||||
Devices(DevicesController),
|
|
||||||
/// Controller for the `Freezer` subsystem, see `FreezerController` for more information.
|
|
||||||
Freezer(FreezerController),
|
|
||||||
/// Controller for the `NetCls` subsystem, see `NetClsController` for more information.
|
|
||||||
NetCls(NetClsController),
|
|
||||||
/// Controller for the `BlkIo` subsystem, see `BlkIoController` for more information.
|
|
||||||
BlkIo(BlkIoController),
|
|
||||||
/// Controller for the `PerfEvent` subsystem, see `PerfEventController` for more information.
|
|
||||||
PerfEvent(PerfEventController),
|
|
||||||
/// Controller for the `NetPrio` subsystem, see `NetPrioController` for more information.
|
|
||||||
NetPrio(NetPrioController),
|
|
||||||
/// Controller for the `HugeTlb` subsystem, see `HugeTlbController` for more information.
|
|
||||||
HugeTlb(HugeTlbController),
|
|
||||||
/// Controller for the `Rdma` subsystem, see `RdmaController` for more information.
|
|
||||||
Rdma(RdmaController),
|
|
||||||
/// Controller for the `Systemd` subsystem, see `SystemdController` for more information.
|
|
||||||
Systemd(SystemdController),
|
|
||||||
}
|
|
||||||
|
|
||||||
#[doc(hidden)]
|
|
||||||
#[derive(Eq, PartialEq, Debug, Clone)]
|
|
||||||
pub enum Controllers {
|
|
||||||
Pids,
|
|
||||||
Mem,
|
|
||||||
CpuSet,
|
|
||||||
CpuAcct,
|
|
||||||
Cpu,
|
|
||||||
Devices,
|
|
||||||
Freezer,
|
|
||||||
NetCls,
|
|
||||||
BlkIo,
|
|
||||||
PerfEvent,
|
|
||||||
NetPrio,
|
|
||||||
HugeTlb,
|
|
||||||
Rdma,
|
|
||||||
Systemd,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl fmt::Display for Controllers {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
||||||
match self {
|
|
||||||
Controllers::Pids => write!(f, "pids"),
|
|
||||||
Controllers::Mem => write!(f, "memory"),
|
|
||||||
Controllers::CpuSet => write!(f, "cpuset"),
|
|
||||||
Controllers::CpuAcct => write!(f, "cpuacct"),
|
|
||||||
Controllers::Cpu => write!(f, "cpu"),
|
|
||||||
Controllers::Devices => write!(f, "devices"),
|
|
||||||
Controllers::Freezer => write!(f, "freezer"),
|
|
||||||
Controllers::NetCls => write!(f, "net_cls"),
|
|
||||||
Controllers::BlkIo => write!(f, "blkio"),
|
|
||||||
Controllers::PerfEvent => write!(f, "perf_event"),
|
|
||||||
Controllers::NetPrio => write!(f, "net_prio"),
|
|
||||||
Controllers::HugeTlb => write!(f, "hugetlb"),
|
|
||||||
Controllers::Rdma => write!(f, "rdma"),
|
|
||||||
Controllers::Systemd => write!(f, "name=systemd"),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
mod sealed {
|
|
||||||
use super::*;
|
|
||||||
|
|
||||||
pub trait ControllerInternal {
|
|
||||||
fn apply(&self, res: &Resources) -> Result<()>;
|
|
||||||
|
|
||||||
// meta stuff
|
|
||||||
fn control_type(&self) -> Controllers;
|
|
||||||
fn get_path(&self) -> &PathBuf;
|
|
||||||
fn get_path_mut(&mut self) -> &mut PathBuf;
|
|
||||||
fn get_base(&self) -> &PathBuf;
|
|
||||||
|
|
||||||
/// Hooks running after controller crated, if have
|
|
||||||
fn post_create(&self) {}
|
|
||||||
|
|
||||||
fn is_v2(&self) -> bool {
|
|
||||||
false
|
|
||||||
}
|
|
||||||
|
|
||||||
fn verify_path(&self) -> Result<()> {
|
|
||||||
if self.get_path().starts_with(self.get_base()) {
|
|
||||||
Ok(())
|
|
||||||
} else {
|
|
||||||
Err(Error::new(ErrorKind::InvalidPath))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn open_path(&self, p: &str, w: bool) -> Result<File> {
|
|
||||||
let mut path = self.get_path().clone();
|
|
||||||
path.push(p);
|
|
||||||
|
|
||||||
self.verify_path()?;
|
|
||||||
|
|
||||||
if w {
|
|
||||||
match File::create(&path) {
|
|
||||||
Err(e) => Err(Error::with_cause(
|
|
||||||
ErrorKind::WriteFailed(
|
|
||||||
path.display().to_string(),
|
|
||||||
"[CREATE FILE]".to_string(),
|
|
||||||
),
|
|
||||||
e,
|
|
||||||
)),
|
|
||||||
Ok(file) => Ok(file),
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
match File::open(&path) {
|
|
||||||
Err(e) => Err(Error::with_cause(
|
|
||||||
ErrorKind::ReadFailed(path.display().to_string()),
|
|
||||||
e,
|
|
||||||
)),
|
|
||||||
Ok(file) => Ok(file),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_max_value(&self, f: &str) -> Result<MaxValue> {
|
|
||||||
self.open_path(f, false).and_then(|mut file| {
|
|
||||||
let mut string = String::new();
|
|
||||||
let res = file.read_to_string(&mut string);
|
|
||||||
match res {
|
|
||||||
Ok(_) => parse_max_value(&string),
|
|
||||||
Err(e) => Err(Error::with_cause(ReadFailed(f.to_string()), e)),
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
#[doc(hidden)]
|
|
||||||
fn path_exists(&self, p: &str) -> bool {
|
|
||||||
if self.verify_path().is_err() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::path::Path::new(p).exists()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub trait CustomizedAttribute: ControllerInternal {
|
|
||||||
fn set(&self, key: &str, value: &str) -> Result<()> {
|
|
||||||
self.open_path(key, true).and_then(|mut file| {
|
|
||||||
file.write_all(value.as_ref()).map_err(|e| {
|
|
||||||
Error::with_cause(WriteFailed(key.to_string(), value.to_string()), e)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get(&self, key: &str) -> Result<String> {
|
|
||||||
self.open_path(key, false).and_then(|mut file: File| {
|
|
||||||
let mut string = String::new();
|
|
||||||
match file.read_to_string(&mut string) {
|
|
||||||
Ok(_) => Ok(string.trim().to_owned()),
|
|
||||||
Err(e) => Err(Error::with_cause(ReadFailed(key.to_string()), e)),
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) use crate::sealed::{ControllerInternal, CustomizedAttribute};
|
|
||||||
|
|
||||||
/// A Controller is a subsystem attached to the control group.
|
|
||||||
///
|
|
||||||
/// Implementors are able to control certain aspects of a control group.
|
|
||||||
pub trait Controller {
|
|
||||||
#[doc(hidden)]
|
|
||||||
fn control_type(&self) -> Controllers;
|
|
||||||
|
|
||||||
/// The file system path to the controller.
|
|
||||||
fn path(&self) -> &Path;
|
|
||||||
|
|
||||||
/// Apply a set of resources to the Controller, invoking its internal functions to pass the
|
|
||||||
/// kernel the information.
|
|
||||||
fn apply(&self, res: &Resources) -> Result<()>;
|
|
||||||
|
|
||||||
/// Create this controller
|
|
||||||
fn create(&self);
|
|
||||||
|
|
||||||
/// Does this controller already exist?
|
|
||||||
fn exists(&self) -> bool;
|
|
||||||
|
|
||||||
/// Set notify_on_release
|
|
||||||
fn set_notify_on_release(&self, enable: bool) -> Result<()>;
|
|
||||||
|
|
||||||
/// Set release_agent
|
|
||||||
fn set_release_agent(&self, path: &str) -> Result<()>;
|
|
||||||
|
|
||||||
/// Delete the controller.
|
|
||||||
fn delete(&self) -> Result<()>;
|
|
||||||
|
|
||||||
/// Attach a task to this controller.
|
|
||||||
fn add_task(&self, pid: &CgroupPid) -> Result<()>;
|
|
||||||
|
|
||||||
/// Attach a task to this controller.
|
|
||||||
fn add_task_by_tgid(&self, pid: &CgroupPid) -> Result<()>;
|
|
||||||
|
|
||||||
/// Get the list of tasks that this controller has.
|
|
||||||
fn tasks(&self) -> Vec<CgroupPid>;
|
|
||||||
|
|
||||||
fn v2(&self) -> bool;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Controller for T
|
|
||||||
where
|
|
||||||
T: ControllerInternal,
|
|
||||||
{
|
|
||||||
fn control_type(&self) -> Controllers {
|
|
||||||
ControllerInternal::control_type(self)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn path(&self) -> &Path {
|
|
||||||
self.get_path()
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Apply a set of resources to the Controller, invoking its internal functions to pass the
|
|
||||||
/// kernel the information.
|
|
||||||
fn apply(&self, res: &Resources) -> Result<()> {
|
|
||||||
ControllerInternal::apply(self, res)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create this controller
|
|
||||||
fn create(&self) {
|
|
||||||
self.verify_path()
|
|
||||||
.unwrap_or_else(|_| panic!("path should be valid: {:?}", self.path()));
|
|
||||||
|
|
||||||
match ::std::fs::create_dir_all(self.get_path()) {
|
|
||||||
Ok(_) => self.post_create(),
|
|
||||||
Err(e) => warn!("error create_dir: {:?} error: {:?}", self.get_path(), e),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Set notify_on_release
|
|
||||||
fn set_notify_on_release(&self, enable: bool) -> Result<()> {
|
|
||||||
self.open_path("notify_on_release", true)
|
|
||||||
.and_then(|mut file| {
|
|
||||||
write!(file, "{}", enable as i32).map_err(|e| {
|
|
||||||
Error::with_cause(
|
|
||||||
ErrorKind::WriteFailed("notify_on_release".to_string(), enable.to_string()),
|
|
||||||
e,
|
|
||||||
)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Set release_agent
|
|
||||||
fn set_release_agent(&self, path: &str) -> Result<()> {
|
|
||||||
self.open_path("release_agent", true).and_then(|mut file| {
|
|
||||||
file.write_all(path.as_bytes()).map_err(|e| {
|
|
||||||
Error::with_cause(
|
|
||||||
ErrorKind::WriteFailed("release_agent".to_string(), path.to_string()),
|
|
||||||
e,
|
|
||||||
)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
/// Does this controller already exist?
|
|
||||||
fn exists(&self) -> bool {
|
|
||||||
self.get_path().exists()
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Delete the controller.
|
|
||||||
fn delete(&self) -> Result<()> {
|
|
||||||
if !self.get_path().exists() {
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compatible with runC for remove dir operation
|
|
||||||
// https://github.com/opencontainers/runc/blob/main/libcontainer/cgroups/utils.go#L272
|
|
||||||
//
|
|
||||||
// We trying to remove all paths five times with increasing delay between tries.
|
|
||||||
// If after all there are not removed cgroups - appropriate error will be
|
|
||||||
// returned.
|
|
||||||
let mut delay = std::time::Duration::from_millis(10);
|
|
||||||
let cgroup_path = self.get_path();
|
|
||||||
for _i in 0..4 {
|
|
||||||
if let Ok(()) = remove_dir(cgroup_path) {
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
std::thread::sleep(delay);
|
|
||||||
delay *= 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
remove_dir(cgroup_path)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Attach a task to this controller.
|
|
||||||
fn add_task(&self, pid: &CgroupPid) -> Result<()> {
|
|
||||||
let mut file_name = "tasks";
|
|
||||||
if self.is_v2() {
|
|
||||||
file_name = "cgroup.procs";
|
|
||||||
}
|
|
||||||
self.open_path(file_name, true).and_then(|mut file| {
|
|
||||||
file.write_all(pid.pid.to_string().as_ref()).map_err(|e| {
|
|
||||||
Error::with_cause(
|
|
||||||
ErrorKind::WriteFailed(file_name.to_string(), pid.pid.to_string()),
|
|
||||||
e,
|
|
||||||
)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Attach a task to this controller by thread group id.
|
|
||||||
fn add_task_by_tgid(&self, pid: &CgroupPid) -> Result<()> {
|
|
||||||
self.open_path("cgroup.procs", true).and_then(|mut file| {
|
|
||||||
file.write_all(pid.pid.to_string().as_ref()).map_err(|e| {
|
|
||||||
Error::with_cause(
|
|
||||||
ErrorKind::WriteFailed("cgroup.procs".to_string(), pid.pid.to_string()),
|
|
||||||
e,
|
|
||||||
)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Get the list of tasks that this controller has.
|
|
||||||
fn tasks(&self) -> Vec<CgroupPid> {
|
|
||||||
let mut file = "tasks";
|
|
||||||
if self.is_v2() {
|
|
||||||
file = "cgroup.procs";
|
|
||||||
}
|
|
||||||
self.open_path(file, false)
|
|
||||||
.map(|file| {
|
|
||||||
let bf = BufReader::new(file);
|
|
||||||
let mut v = Vec::new();
|
|
||||||
for line in bf.lines() {
|
|
||||||
match line {
|
|
||||||
Ok(line) => {
|
|
||||||
let n = line.trim().parse().unwrap_or(0u64);
|
|
||||||
v.push(n);
|
|
||||||
}
|
|
||||||
Err(_) => break,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
v.into_iter().map(CgroupPid::from).collect()
|
|
||||||
})
|
|
||||||
.unwrap_or_default()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn v2(&self) -> bool {
|
|
||||||
self.is_v2()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// remove_dir aims to remove cgroup path. It does so recursively,
|
|
||||||
// by removing any subdirectories (sub-cgroups) first.
|
|
||||||
fn remove_dir(dir: &Path) -> Result<()> {
|
|
||||||
// try the fast path first.
|
|
||||||
if fs::remove_dir(dir).is_ok() {
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
|
|
||||||
if dir.exists() && dir.is_dir() {
|
|
||||||
for entry in fs::read_dir(dir)
|
|
||||||
.map_err(|e| Error::with_cause(ReadFailed(dir.display().to_string()), e))?
|
|
||||||
{
|
|
||||||
let entry =
|
|
||||||
entry.map_err(|e| Error::with_cause(ReadFailed(dir.display().to_string()), e))?;
|
|
||||||
let path = entry.path();
|
|
||||||
if path.is_dir() {
|
|
||||||
remove_dir(&path)?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fs::remove_dir(dir).map_err(|e| Error::with_cause(RemoveFailed, e))?;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
#[doc(hidden)]
|
|
||||||
pub trait ControllIdentifier {
|
|
||||||
fn controller_type() -> Controllers;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Control group hierarchy (right now, only V1 is supported, but in the future Unified will be
|
|
||||||
/// implemented as well).
|
|
||||||
pub trait Hierarchy: std::fmt::Debug + Send + Sync {
|
|
||||||
/// Returns what subsystems are supported by the hierarchy.
|
|
||||||
fn subsystems(&self) -> Vec<Subsystem>;
|
|
||||||
|
|
||||||
/// Returns the root directory of the hierarchy.
|
|
||||||
fn root(&self) -> PathBuf;
|
|
||||||
|
|
||||||
/// Return a handle to the root control group in the hierarchy.
|
|
||||||
fn root_control_group(&self) -> Cgroup;
|
|
||||||
|
|
||||||
fn v2(&self) -> bool;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Resource limits for the memory subsystem.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
||||||
pub struct MemoryResources {
|
pub enum FreezerState {
|
||||||
/// How much memory (in bytes) can the kernel consume.
|
/// The processes in the control group are _not_ frozen.
|
||||||
pub kernel_memory_limit: Option<i64>,
|
Thawed,
|
||||||
/// Upper limit of memory usage of the control group's tasks.
|
/// The processes in the control group are in the processes of being frozen.
|
||||||
pub memory_hard_limit: Option<i64>,
|
Freezing,
|
||||||
/// How much memory the tasks in the control group can use when the system is under memory
|
/// The processes in the control group are frozen.
|
||||||
/// pressure.
|
Frozen,
|
||||||
pub memory_soft_limit: Option<i64>,
|
|
||||||
/// How much of the kernel's memory (in bytes) can be used for TCP-related buffers.
|
|
||||||
pub kernel_tcp_memory_limit: Option<i64>,
|
|
||||||
/// How much memory and swap together can the tasks in the control group use.
|
|
||||||
pub memory_swap_limit: Option<i64>,
|
|
||||||
/// Controls the tendency of the kernel to swap out parts of the address space of the tasks to
|
|
||||||
/// disk. Lower value implies less likely.
|
|
||||||
///
|
|
||||||
/// Note, however, that a value of zero does not mean the process is never swapped out. Use the
|
|
||||||
/// traditional `mlock(2)` system call for that purpose.
|
|
||||||
pub swappiness: Option<u64>,
|
|
||||||
/// Customized key-value attributes
|
|
||||||
///
|
|
||||||
/// # Usage:
|
|
||||||
/// ```
|
|
||||||
/// let resource = &mut cgroups_rs::Resources::default();
|
|
||||||
/// resource.memory.attrs.insert("memory.numa_balancing".to_string(), "true".to_string());
|
|
||||||
/// // apply here
|
|
||||||
/// ```
|
|
||||||
pub attrs: HashMap<String, String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Resources limits on the number of processes.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct PidResources {
|
|
||||||
/// The maximum number of processes that can exist in the control group.
|
|
||||||
///
|
|
||||||
/// Note that attaching processes to the control group will still succeed _even_ if the limit
|
|
||||||
/// would be violated, however forks/clones inside the control group will have with `EAGAIN` if
|
|
||||||
/// they would violate the limit set here.
|
|
||||||
pub maximum_number_of_processes: Option<MaxValue>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Resources limits about how the tasks can use the CPU.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct CpuResources {
|
|
||||||
// cpuset
|
|
||||||
/// A comma-separated list of CPU IDs where the task in the control group can run. Dashes
|
|
||||||
/// between numbers indicate ranges.
|
|
||||||
pub cpus: Option<String>,
|
|
||||||
/// Same syntax as the `cpus` field of this structure, but applies to memory nodes instead of
|
|
||||||
/// processors.
|
|
||||||
pub mems: Option<String>,
|
|
||||||
// cpu
|
|
||||||
/// Weight of how much of the total CPU time should this control group get. Note that this is
|
|
||||||
/// hierarchical, so this is weighted against the siblings of this control group.
|
|
||||||
pub shares: Option<u64>,
|
|
||||||
/// In one `period`, how much can the tasks run in nanoseconds.
|
|
||||||
pub quota: Option<i64>,
|
|
||||||
/// Period of time in nanoseconds.
|
|
||||||
pub period: Option<u64>,
|
|
||||||
/// This is currently a no-operation.
|
|
||||||
pub realtime_runtime: Option<i64>,
|
|
||||||
/// This is currently a no-operation.
|
|
||||||
pub realtime_period: Option<u64>,
|
|
||||||
/// Customized key-value attributes
|
|
||||||
/// # Usage:
|
|
||||||
/// ```
|
|
||||||
/// let resource = &mut cgroups_rs::Resources::default();
|
|
||||||
/// resource.cpu.attrs.insert("cpu.cfs_init_buffer_us".to_string(), "10".to_string());
|
|
||||||
/// // apply here
|
|
||||||
/// ```
|
|
||||||
pub attrs: HashMap<String, String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A device resource that can be allowed or denied access to.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct DeviceResource {
|
|
||||||
/// If true, access to the device is allowed, otherwise it's denied.
|
|
||||||
pub allow: bool,
|
|
||||||
/// `'c'` for character device, `'b'` for block device; or `'a'` for all devices.
|
|
||||||
pub devtype: crate::devices::DeviceType,
|
|
||||||
/// The major number of the device.
|
|
||||||
pub major: i64,
|
|
||||||
/// The minor number of the device.
|
|
||||||
pub minor: i64,
|
|
||||||
/// Sequence of `'r'`, `'w'` or `'m'`, each denoting read, write or mknod permissions.
|
|
||||||
pub access: Vec<crate::devices::DevicePermissions>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Limit the usage of devices for the control group's tasks.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct DeviceResources {
|
|
||||||
/// For each device in the list, the limits in the structure are applied.
|
|
||||||
pub devices: Vec<DeviceResource>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Assigned priority for a network device.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct NetworkPriority {
|
|
||||||
/// The name (as visible in `ifconfig`) of the interface.
|
|
||||||
pub name: String,
|
|
||||||
/// Assigned priority.
|
|
||||||
pub priority: u64,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Collections of limits and tags that can be imposed on packets emitted by the tasks in the
|
|
||||||
/// control group.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct NetworkResources {
|
|
||||||
/// The networking class identifier to attach to the packets.
|
|
||||||
///
|
|
||||||
/// This can then later be used in iptables and such to have special rules.
|
|
||||||
pub class_id: Option<u64>,
|
|
||||||
/// Priority of the egress traffic for each interface.
|
|
||||||
pub priorities: Vec<NetworkPriority>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A hugepage type and its consumption limit for the control group.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct HugePageResource {
|
|
||||||
/// The size of the hugepage, i.e. `2MB`, `1GB`, etc.
|
|
||||||
pub size: String,
|
|
||||||
/// The amount of bytes (of memory consumed by the tasks) that are allowed to be backed by
|
|
||||||
/// hugepages.
|
|
||||||
pub limit: u64,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Provides the ability to set consumption limit on each type of hugepages.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct HugePageResources {
|
|
||||||
/// Set a limit of consumption for each hugepages type.
|
|
||||||
pub limits: Vec<HugePageResource>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Weight for a particular block device.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct BlkIoDeviceResource {
|
|
||||||
/// The major number of the device.
|
|
||||||
pub major: u64,
|
|
||||||
/// The minor number of the device.
|
|
||||||
pub minor: u64,
|
|
||||||
/// The weight of the device against the descendant nodes.
|
|
||||||
pub weight: Option<u16>,
|
|
||||||
/// The weight of the device against the sibling nodes.
|
|
||||||
pub leaf_weight: Option<u16>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Provides the ability to throttle a device (both byte/sec, and IO op/s)
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct BlkIoDeviceThrottleResource {
|
|
||||||
/// The major number of the device.
|
|
||||||
pub major: u64,
|
|
||||||
/// The minor number of the device.
|
|
||||||
pub minor: u64,
|
|
||||||
/// The rate.
|
|
||||||
pub rate: u64,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// General block I/O resource limits.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct BlkIoResources {
|
|
||||||
/// The weight of the control group against descendant nodes.
|
|
||||||
pub weight: Option<u16>,
|
|
||||||
/// The weight of the control group against sibling nodes.
|
|
||||||
pub leaf_weight: Option<u16>,
|
|
||||||
/// For each device, a separate weight (both normal and leaf) can be provided.
|
|
||||||
pub weight_device: Vec<BlkIoDeviceResource>,
|
|
||||||
/// Throttled read bytes/second can be provided for each device.
|
|
||||||
pub throttle_read_bps_device: Vec<BlkIoDeviceThrottleResource>,
|
|
||||||
/// Throttled read IO operations per second can be provided for each device.
|
|
||||||
pub throttle_read_iops_device: Vec<BlkIoDeviceThrottleResource>,
|
|
||||||
/// Throttled written bytes/second can be provided for each device.
|
|
||||||
pub throttle_write_bps_device: Vec<BlkIoDeviceThrottleResource>,
|
|
||||||
/// Throttled write IO operations per second can be provided for each device.
|
|
||||||
pub throttle_write_iops_device: Vec<BlkIoDeviceThrottleResource>,
|
|
||||||
|
|
||||||
/// Customized key-value attributes
|
|
||||||
/// # Usage:
|
|
||||||
/// ```
|
|
||||||
/// let resource = &mut cgroups_rs::Resources::default();
|
|
||||||
/// resource.blkio.attrs.insert("io.cost.weight".to_string(), "10".to_string());
|
|
||||||
/// // apply here
|
|
||||||
/// ```
|
|
||||||
pub attrs: HashMap<String, String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The resource limits and constraints that will be set on the control group.
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Default)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct Resources {
|
|
||||||
/// Memory usage related limits.
|
|
||||||
pub memory: MemoryResources,
|
|
||||||
/// Process identifier related limits.
|
|
||||||
pub pid: PidResources,
|
|
||||||
/// CPU related limits.
|
|
||||||
pub cpu: CpuResources,
|
|
||||||
/// Device related limits.
|
|
||||||
pub devices: DeviceResources,
|
|
||||||
/// Network related tags and limits.
|
|
||||||
pub network: NetworkResources,
|
|
||||||
/// Hugepages consumption related limits.
|
|
||||||
pub hugepages: HugePageResources,
|
|
||||||
/// Block device I/O related limits.
|
|
||||||
pub blkio: BlkIoResources,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A structure representing a `pid`. Currently implementations exist for `u64` and
|
/// A structure representing a `pid`. Currently implementations exist for `u64` and
|
||||||
/// `std::process::Child`.
|
/// `std::process::Child`.
|
||||||
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
|
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy)]
|
||||||
pub struct CgroupPid {
|
pub struct CgroupPid {
|
||||||
/// The process identifier
|
/// The process identifier
|
||||||
pub pid: u64,
|
pub pid: u64,
|
||||||
@@ -703,247 +43,40 @@ impl From<u64> for CgroupPid {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> From<&'a std::process::Child> for CgroupPid {
|
impl From<&std::process::Child> for CgroupPid {
|
||||||
fn from(u: &std::process::Child) -> CgroupPid {
|
fn from(u: &std::process::Child) -> CgroupPid {
|
||||||
CgroupPid { pid: u.id() as u64 }
|
CgroupPid { pid: u.id() as u64 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Subsystem {
|
#[cfg(test)]
|
||||||
fn enter(self, path: &Path) -> Self {
|
pub mod tests {
|
||||||
match self {
|
use std::fs;
|
||||||
Subsystem::Pid(mut cont) => Subsystem::Pid({
|
use std::process::{Child, Command, Stdio};
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
/// Start a mock subprocess that will sleep forever
|
||||||
}),
|
pub fn spawn_sleep_inf() -> Child {
|
||||||
Subsystem::Mem(mut cont) => Subsystem::Mem({
|
let child = Command::new("sleep")
|
||||||
cont.get_path_mut().push(path);
|
.arg("infinity")
|
||||||
cont
|
.spawn()
|
||||||
}),
|
.expect("Failed to start mock subprocess");
|
||||||
Subsystem::CpuSet(mut cont) => Subsystem::CpuSet({
|
child
|
||||||
cont.get_path_mut().push(path);
|
}
|
||||||
cont
|
|
||||||
}),
|
pub fn spawn_yes() -> Child {
|
||||||
Subsystem::CpuAcct(mut cont) => Subsystem::CpuAcct({
|
let devnull = fs::File::create("/dev/null").expect("cannot open /dev/null");
|
||||||
cont.get_path_mut().push(path);
|
let child = Command::new("yes")
|
||||||
cont
|
.stdout(Stdio::from(devnull))
|
||||||
}),
|
.spawn()
|
||||||
Subsystem::Cpu(mut cont) => Subsystem::Cpu({
|
.expect("Failed to start mock subprocess");
|
||||||
cont.get_path_mut().push(path);
|
child
|
||||||
cont
|
}
|
||||||
}),
|
|
||||||
Subsystem::Devices(mut cont) => Subsystem::Devices({
|
pub fn systemd_version() -> Option<String> {
|
||||||
cont.get_path_mut().push(path);
|
let output = Command::new("systemd").arg("--version").output().ok()?; // Return None if command execution fails
|
||||||
cont
|
if !output.status.success() {
|
||||||
}),
|
return None;
|
||||||
Subsystem::Freezer(mut cont) => Subsystem::Freezer({
|
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
|
||||||
}),
|
|
||||||
Subsystem::NetCls(mut cont) => Subsystem::NetCls({
|
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
|
||||||
}),
|
|
||||||
Subsystem::BlkIo(mut cont) => Subsystem::BlkIo({
|
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
|
||||||
}),
|
|
||||||
Subsystem::PerfEvent(mut cont) => Subsystem::PerfEvent({
|
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
|
||||||
}),
|
|
||||||
Subsystem::NetPrio(mut cont) => Subsystem::NetPrio({
|
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
|
||||||
}),
|
|
||||||
Subsystem::HugeTlb(mut cont) => Subsystem::HugeTlb({
|
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
|
||||||
}),
|
|
||||||
Subsystem::Rdma(mut cont) => Subsystem::Rdma({
|
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
|
||||||
}),
|
|
||||||
Subsystem::Systemd(mut cont) => Subsystem::Systemd({
|
|
||||||
cont.get_path_mut().push(path);
|
|
||||||
cont
|
|
||||||
}),
|
|
||||||
}
|
}
|
||||||
}
|
Some(String::from_utf8_lossy(&output.stdout).to_string())
|
||||||
|
|
||||||
pub fn to_controller(&self) -> &dyn Controller {
|
|
||||||
match self {
|
|
||||||
Subsystem::Pid(cont) => cont,
|
|
||||||
Subsystem::Mem(cont) => cont,
|
|
||||||
Subsystem::CpuSet(cont) => cont,
|
|
||||||
Subsystem::CpuAcct(cont) => cont,
|
|
||||||
Subsystem::Cpu(cont) => cont,
|
|
||||||
Subsystem::Devices(cont) => cont,
|
|
||||||
Subsystem::Freezer(cont) => cont,
|
|
||||||
Subsystem::NetCls(cont) => cont,
|
|
||||||
Subsystem::BlkIo(cont) => cont,
|
|
||||||
Subsystem::PerfEvent(cont) => cont,
|
|
||||||
Subsystem::NetPrio(cont) => cont,
|
|
||||||
Subsystem::HugeTlb(cont) => cont,
|
|
||||||
Subsystem::Rdma(cont) => cont,
|
|
||||||
Subsystem::Systemd(cont) => cont,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn controller_name(&self) -> String {
|
|
||||||
self.to_controller().control_type().to_string()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The values for `memory.hight` or `pids.max`
|
|
||||||
#[derive(Eq, PartialEq, Copy, Clone, Debug)]
|
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub enum MaxValue {
|
|
||||||
/// This value is returned when the text is `"max"`.
|
|
||||||
Max,
|
|
||||||
/// When the value is a numerical value, they are returned via this enum field.
|
|
||||||
Value(i64),
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for MaxValue {
|
|
||||||
fn default() -> Self {
|
|
||||||
MaxValue::Max
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl MaxValue {
|
|
||||||
#[allow(clippy::should_implement_trait, clippy::wrong_self_convention)]
|
|
||||||
fn to_i64(&self) -> i64 {
|
|
||||||
match self {
|
|
||||||
MaxValue::Max => -1,
|
|
||||||
MaxValue::Value(num) => *num,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl fmt::Display for MaxValue {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
||||||
match self {
|
|
||||||
MaxValue::Max => write!(f, "max"),
|
|
||||||
MaxValue::Value(num) => write!(f, "{}", num),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn parse_max_value(s: &str) -> Result<MaxValue> {
|
|
||||||
if s.trim() == "max" {
|
|
||||||
return Ok(MaxValue::Max);
|
|
||||||
}
|
|
||||||
match s.trim().parse() {
|
|
||||||
Ok(val) => Ok(MaxValue::Value(val)),
|
|
||||||
Err(e) => Err(Error::with_cause(ParseError, e)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Flat keyed
|
|
||||||
// KEY0 VAL0\n
|
|
||||||
// KEY1 VAL1\n
|
|
||||||
pub fn flat_keyed_to_vec(mut file: File) -> Result<Vec<(String, i64)>> {
|
|
||||||
let mut content = String::new();
|
|
||||||
file.read_to_string(&mut content)
|
|
||||||
.map_err(|e| Error::with_cause(ReadFailed("FIXME: read_string_from".to_string()), e))?;
|
|
||||||
|
|
||||||
let mut v = Vec::new();
|
|
||||||
for line in content.lines() {
|
|
||||||
let parts: Vec<&str> = line.split(' ').collect();
|
|
||||||
if parts.len() == 2 {
|
|
||||||
if let Ok(i) = parts[1].parse::<i64>() {
|
|
||||||
v.push((parts[0].to_string(), i));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(v)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Flat keyed
|
|
||||||
// KEY0 VAL0\n
|
|
||||||
// KEY1 VAL1\n
|
|
||||||
pub fn flat_keyed_to_hashmap(mut file: File) -> Result<HashMap<String, i64>> {
|
|
||||||
let mut content = String::new();
|
|
||||||
file.read_to_string(&mut content)
|
|
||||||
.map_err(|e| Error::with_cause(ReadFailed("FIXME: read_string_from".to_string()), e))?;
|
|
||||||
|
|
||||||
let mut h = HashMap::new();
|
|
||||||
for line in content.lines() {
|
|
||||||
let parts: Vec<&str> = line.split(' ').collect();
|
|
||||||
if parts.len() == 2 {
|
|
||||||
if let Ok(i) = parts[1].parse::<i64>() {
|
|
||||||
h.insert(parts[0].to_string(), i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(h)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Nested keyed
|
|
||||||
// KEY0 SUB_KEY0=VAL00 SUB_KEY1=VAL01...
|
|
||||||
// KEY1 SUB_KEY0=VAL10 SUB_KEY1=VAL11...
|
|
||||||
pub fn nested_keyed_to_hashmap(mut file: File) -> Result<HashMap<String, HashMap<String, i64>>> {
|
|
||||||
let mut content = String::new();
|
|
||||||
file.read_to_string(&mut content)
|
|
||||||
.map_err(|e| Error::with_cause(ReadFailed("FIXME: read_string_from".to_string()), e))?;
|
|
||||||
|
|
||||||
let mut h = HashMap::new();
|
|
||||||
for line in content.lines() {
|
|
||||||
let parts: Vec<&str> = line.split(' ').collect();
|
|
||||||
if parts.is_empty() {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
let mut th = HashMap::new();
|
|
||||||
for item in parts[1..].iter() {
|
|
||||||
let fields: Vec<&str> = item.split('=').collect();
|
|
||||||
if fields.len() == 2 {
|
|
||||||
if let Ok(i) = fields[1].parse::<i64>() {
|
|
||||||
th.insert(fields[0].to_string(), i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h.insert(parts[0].to_string(), th);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(h)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn read_from<T>(mut file: File) -> Result<T>
|
|
||||||
where
|
|
||||||
T: FromStr,
|
|
||||||
<T as FromStr>::Err: 'static + Send + Sync + std::error::Error,
|
|
||||||
{
|
|
||||||
let mut string = String::new();
|
|
||||||
match file.read_to_string(&mut string) {
|
|
||||||
Ok(_) => string
|
|
||||||
.trim()
|
|
||||||
.parse::<T>()
|
|
||||||
.map_err(|e| Error::with_cause(ParseError, e)),
|
|
||||||
Err(e) => Err(Error::with_cause(
|
|
||||||
ReadFailed("FIXME: can't get path in fn read_from".to_string()),
|
|
||||||
e,
|
|
||||||
)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn read_string_from(mut file: File) -> Result<String> {
|
|
||||||
let mut string = String::new();
|
|
||||||
match file.read_to_string(&mut string) {
|
|
||||||
Ok(_) => Ok(string.trim().to_string()),
|
|
||||||
Err(e) => Err(Error::with_cause(
|
|
||||||
ReadFailed("FIXME: can't get path in fn read_string_from".to_string()),
|
|
||||||
e,
|
|
||||||
)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// read and parse an u64 data
|
|
||||||
fn read_u64_from(file: File) -> Result<u64> {
|
|
||||||
read_from::<u64>(file)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// read and parse an i64 data
|
|
||||||
fn read_i64_from(file: File) -> Result<i64> {
|
|
||||||
read_from::<i64>(file)
|
|
||||||
}
|
|
||||||
|
|||||||
113
src/manager/conv.rs
Normal file
113
src/manager/conv.rs
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use crate::manager::error::{Error, Result};
|
||||||
|
use crate::{CPU_SHARES_V1_MAX, CPU_WEIGHT_V2_MAX};
|
||||||
|
|
||||||
|
// Converts CPU shares, used by cgroup v1, to CPU weight, used by cgroup
|
||||||
|
// v2.
|
||||||
|
//
|
||||||
|
// Cgroup v1 CPU shares has a range of [2^1...2^18], i.e. [2...262144],
|
||||||
|
// and the default value is 1024.
|
||||||
|
//
|
||||||
|
// Cgroup v2 CPU weight has a range of [10^0...10^4], i.e. [1...10000],
|
||||||
|
// and the default value is 100.
|
||||||
|
pub(crate) fn cpu_shares_to_cgroup_v2(shares: u64) -> u64 {
|
||||||
|
if shares == 0 {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if shares <= 2 {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if shares >= CPU_SHARES_V1_MAX {
|
||||||
|
return CPU_WEIGHT_V2_MAX;
|
||||||
|
}
|
||||||
|
|
||||||
|
(((shares - 2) * 9999) / 262142) + 1
|
||||||
|
}
|
||||||
|
|
||||||
|
// ConvertMemorySwapToCgroupV2Value converts MemorySwap value from OCI spec
|
||||||
|
// for use by cgroup v2 drivers. A conversion is needed since
|
||||||
|
// Resources.MemorySwap is defined as memory+swap combined, while in cgroup
|
||||||
|
// v2 swap is a separate value.
|
||||||
|
pub(crate) fn memory_swap_to_cgroup_v2(memswap_limit: i64, mem_limit: i64) -> Result<i64> {
|
||||||
|
// For compatibility with cgroup1 controller, set swap to unlimited in
|
||||||
|
// case the memory is set to unlimited, and swap is not explicitly set,
|
||||||
|
// treating the request as "set both memory and swap to unlimited".
|
||||||
|
if mem_limit == -1 && memswap_limit == 0 {
|
||||||
|
return Ok(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -1 is "max", 0 is "unset", so treat as is
|
||||||
|
if memswap_limit == -1 || memswap_limit == 0 {
|
||||||
|
return Ok(memswap_limit);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unlimited memory, so treat swap as is.
|
||||||
|
if mem_limit == -1 {
|
||||||
|
return Ok(memswap_limit);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unset or unknown memory, can't calculate swap.
|
||||||
|
if mem_limit == 0 {
|
||||||
|
return Err(Error::InvalidLinuxResource);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Does not make sense to subtract a negative value.
|
||||||
|
if mem_limit < 0 {
|
||||||
|
return Err(Error::InvalidLinuxResource);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sanity check.
|
||||||
|
if memswap_limit < mem_limit {
|
||||||
|
return Err(Error::InvalidLinuxResource);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(memswap_limit - mem_limit)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use crate::manager::conv::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_cpu_shares_to_cgroup_v2() {
|
||||||
|
assert_eq!(cpu_shares_to_cgroup_v2(0), 0);
|
||||||
|
assert_eq!(cpu_shares_to_cgroup_v2(1), 1);
|
||||||
|
assert_eq!(cpu_shares_to_cgroup_v2(2), 1);
|
||||||
|
assert_eq!(cpu_shares_to_cgroup_v2(100), 4);
|
||||||
|
assert_eq!(
|
||||||
|
cpu_shares_to_cgroup_v2(CPU_SHARES_V1_MAX),
|
||||||
|
CPU_WEIGHT_V2_MAX
|
||||||
|
);
|
||||||
|
assert_eq!(
|
||||||
|
cpu_shares_to_cgroup_v2(CPU_SHARES_V1_MAX - 1),
|
||||||
|
CPU_WEIGHT_V2_MAX - 1
|
||||||
|
);
|
||||||
|
assert_eq!(cpu_shares_to_cgroup_v2(u64::MAX), CPU_WEIGHT_V2_MAX);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_memory_swap_to_cgroup_v2() {
|
||||||
|
// memory no limit and swap is 0, treat it as no limit
|
||||||
|
assert_eq!(memory_swap_to_cgroup_v2(0, -1).unwrap(), -1);
|
||||||
|
// -1 is "max", 0 is "unset", so treat as is
|
||||||
|
assert_eq!(memory_swap_to_cgroup_v2(-1, 0).unwrap(), -1);
|
||||||
|
assert_eq!(memory_swap_to_cgroup_v2(0, 0).unwrap(), 0);
|
||||||
|
|
||||||
|
// Now swap cannot be 0 or -1
|
||||||
|
|
||||||
|
// Unlimited memory, so treat swap as is.
|
||||||
|
assert_eq!(memory_swap_to_cgroup_v2(100, -1).unwrap(), 100);
|
||||||
|
// Unset or unknown memory, can't calculate swap.
|
||||||
|
assert!(memory_swap_to_cgroup_v2(100, 0).is_err());
|
||||||
|
// Does not make sense to subtract a negative value.
|
||||||
|
assert!(memory_swap_to_cgroup_v2(100, -2).is_err());
|
||||||
|
// Swap + mem < mem
|
||||||
|
assert!(memory_swap_to_cgroup_v2(50, 100).is_err());
|
||||||
|
// Real swap
|
||||||
|
assert_eq!(memory_swap_to_cgroup_v2(200, 100).unwrap(), 100);
|
||||||
|
}
|
||||||
|
}
|
||||||
28
src/manager/error.rs
Normal file
28
src/manager/error.rs
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use crate::fs::error::Error as CgroupfsError;
|
||||||
|
use crate::systemd::dbus::error::Error as SystemdDbusError;
|
||||||
|
use crate::systemd::error::Error as SystemdCgroupError;
|
||||||
|
|
||||||
|
pub type Result<T> = std::result::Result<T, Error>;
|
||||||
|
|
||||||
|
#[derive(thiserror::Error, Debug)]
|
||||||
|
pub enum Error {
|
||||||
|
#[error("invalid argument")]
|
||||||
|
InvalidArgument,
|
||||||
|
|
||||||
|
#[error("invalid linux resource")]
|
||||||
|
InvalidLinuxResource,
|
||||||
|
|
||||||
|
#[error("cgroupfs error: {0}")]
|
||||||
|
Cgroupfs(#[from] CgroupfsError),
|
||||||
|
|
||||||
|
#[error("systemd cgroup error: {0}")]
|
||||||
|
SystemdCgroup(#[from] SystemdCgroupError),
|
||||||
|
|
||||||
|
#[error("systemd dbus error: {0}")]
|
||||||
|
SystemdDbus(#[from] SystemdDbusError),
|
||||||
|
}
|
||||||
1424
src/manager/fs.rs
Normal file
1424
src/manager/fs.rs
Normal file
File diff suppressed because it is too large
Load Diff
113
src/manager/mod.rs
Normal file
113
src/manager/mod.rs
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
mod error;
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
pub use error::{Error, Result};
|
||||||
|
mod fs;
|
||||||
|
pub use fs::FsManager;
|
||||||
|
mod systemd;
|
||||||
|
pub use systemd::SystemdManager;
|
||||||
|
mod conv;
|
||||||
|
|
||||||
|
use oci_spec::runtime::LinuxResources;
|
||||||
|
|
||||||
|
use crate::systemd::SLICE_SUFFIX;
|
||||||
|
use crate::{CgroupPid, CgroupStats, FreezerState};
|
||||||
|
|
||||||
|
/// Check if the cgroups path is a systemd cgroup.
|
||||||
|
pub fn is_systemd_cgroup(cgroups_path: &str) -> bool {
|
||||||
|
let parts: Vec<&str> = cgroups_path.split(':').collect();
|
||||||
|
parts.len() == 3 && parts[0].ends_with(SLICE_SUFFIX)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Manage cgroups designed for OCI containers.
|
||||||
|
pub trait Manager: Send + Sync {
|
||||||
|
/// Add a process specified by its tgid.
|
||||||
|
fn add_proc(&mut self, tgid: CgroupPid) -> Result<()>;
|
||||||
|
|
||||||
|
/// Add a thread specified by its pid.
|
||||||
|
fn add_thread(&mut self, pid: CgroupPid) -> Result<()>;
|
||||||
|
|
||||||
|
/// Get the list of pids joint to the cgroups.
|
||||||
|
fn pids(&self) -> Result<Vec<CgroupPid>>;
|
||||||
|
|
||||||
|
/// Set the freezer cgroup to the specified state.
|
||||||
|
fn freeze(&self, state: FreezerState) -> Result<()>;
|
||||||
|
|
||||||
|
/// Remove the cgroups.
|
||||||
|
fn destroy(&mut self) -> Result<()>;
|
||||||
|
|
||||||
|
/// Set the resources to the cgroups.
|
||||||
|
fn set(&mut self, resources: &LinuxResources) -> Result<()>;
|
||||||
|
|
||||||
|
/// Get the cgroup path.
|
||||||
|
///
|
||||||
|
/// # Arguments
|
||||||
|
///
|
||||||
|
/// - `subsystem`: cgroup subsystem, for cgroup v1 the value should not
|
||||||
|
/// be empty, while for cgroup v2 the only valid value is `None`.
|
||||||
|
fn cgroup_path(&self, subsystem: Option<&str>) -> Result<String>;
|
||||||
|
|
||||||
|
/// Enable CPUs, topdown from root in cgroup hierarchy, this would be
|
||||||
|
/// useful for CPU hotplug in the guest.
|
||||||
|
///
|
||||||
|
/// The caller should update cgroup resources manually, in particular
|
||||||
|
/// cpuset, after this, in order to use the new CPUs (or avoid using
|
||||||
|
/// offline CPUs).
|
||||||
|
///
|
||||||
|
/// # Arguments
|
||||||
|
///
|
||||||
|
/// - `cpus`: online CPUs in the same format with `cat
|
||||||
|
/// /sys/devices/system/cpu/online`, e.g. "0-3,6-7".
|
||||||
|
fn enable_cpus_topdown(&self, cpus: &str) -> Result<()>;
|
||||||
|
|
||||||
|
/// Get cgroup stats.
|
||||||
|
fn stats(&self) -> CgroupStats;
|
||||||
|
|
||||||
|
/// Get the mappings of subsystems to their relative path. The full
|
||||||
|
/// path would be something like "{mountpoint}/{relative_path}". The
|
||||||
|
/// mappings of mountpoints see "mounts()".
|
||||||
|
fn paths(&self) -> &HashMap<String, String>;
|
||||||
|
|
||||||
|
/// Get the mappings of subsystems to their mountpoints. The full
|
||||||
|
/// path would be something like "{mountpoint}/{relative_path}". The
|
||||||
|
/// mappings of relative paths see "paths()".
|
||||||
|
fn mounts(&self) -> &HashMap<String, String>;
|
||||||
|
|
||||||
|
/// Indicate whether the cgroup manager is using systemd.
|
||||||
|
fn systemd(&self) -> bool;
|
||||||
|
|
||||||
|
/// Indicate whether the cgroup manager is using cgroup v2.
|
||||||
|
fn v2(&self) -> bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
pub const MEMORY_512M: i64 = 512 * 1024 * 1024; // 512 MiB
|
||||||
|
pub const MEMORY_1G: i64 = 1024 * 1024 * 1024; // 1 GiB
|
||||||
|
pub const MEMORY_2G: i64 = 2 * 1024 * 1024 * 1024; // 2 GiB
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! skip_if_cgroups_v1 {
|
||||||
|
() => {
|
||||||
|
if !$crate::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
|
eprintln!("Skipping test in cgroups v1 mode");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! skip_if_cgroups_v2 {
|
||||||
|
() => {
|
||||||
|
if $crate::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
|
eprintln!("Skipping test in cgroups v2 mode");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
584
src/manager/systemd.rs
Normal file
584
src/manager/systemd.rs
Normal file
@@ -0,0 +1,584 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
use oci_spec::runtime::{LinuxCpu, LinuxMemory, LinuxPids, LinuxResources};
|
||||||
|
use zbus::zvariant::Value as ZbusValue;
|
||||||
|
|
||||||
|
use crate::manager::conv;
|
||||||
|
use crate::manager::error::{Error, Result};
|
||||||
|
use crate::manager::fs::{join_path, FsManager};
|
||||||
|
use crate::systemd::props::PropertiesBuilder;
|
||||||
|
use crate::systemd::utils::expand_slice;
|
||||||
|
use crate::systemd::{
|
||||||
|
cpu, cpuset, memory, pids, Property, SystemdClient, DEFAULT_SLICE, SCOPE_SUFFIX, SLICE_SUFFIX,
|
||||||
|
TIMEOUT_STOP_USEC,
|
||||||
|
};
|
||||||
|
use crate::{CgroupPid, CgroupStats, FreezerState, Manager};
|
||||||
|
|
||||||
|
/// Default kernel value for cpu quota period is 100000 us (100 ms), same
|
||||||
|
/// for v1 [1] and v2 [2].
|
||||||
|
///
|
||||||
|
/// 1: https://www.kernel.org/doc/html/latest/scheduler/sched-bwc.html
|
||||||
|
/// 2: https://www.kernel.org/doc/html/latest/admin-guide/cgroup-v2.html
|
||||||
|
const DEFAULT_CPU_QUOTA_PERIOD: u64 = 100_000; // 100ms
|
||||||
|
|
||||||
|
pub struct SystemdManager<'a> {
|
||||||
|
/// The name of slice
|
||||||
|
slice: String,
|
||||||
|
/// The name of unit
|
||||||
|
unit: String,
|
||||||
|
/// Systemd client
|
||||||
|
systemd_client: SystemdClient<'a>,
|
||||||
|
/// Cgroupfs manager
|
||||||
|
fs_manager: FsManager,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl SystemdManager<'_> {
|
||||||
|
fn parse_slice_and_unit(path: &str) -> Result<(String, String)> {
|
||||||
|
let parts: Vec<&str> = path.split(':').collect();
|
||||||
|
if parts.len() != 3 {
|
||||||
|
return Err(Error::InvalidArgument);
|
||||||
|
}
|
||||||
|
|
||||||
|
let slice = if parts[0].is_empty() {
|
||||||
|
DEFAULT_SLICE.to_string()
|
||||||
|
} else {
|
||||||
|
parts[0].to_string()
|
||||||
|
};
|
||||||
|
|
||||||
|
let unit = new_unit_name(parts[1], parts[2]);
|
||||||
|
|
||||||
|
Ok((slice, unit))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a new `SystemdManager` from a cgroup path.
|
||||||
|
///
|
||||||
|
/// # Arguments
|
||||||
|
///
|
||||||
|
/// * `path` - A string slice that holds the cgroup path in the format
|
||||||
|
/// "parent:scope_prefix:name".
|
||||||
|
pub fn new(path: &str) -> Result<Self> {
|
||||||
|
let (slice, unit) = Self::parse_slice_and_unit(path)?;
|
||||||
|
let props = PropertiesBuilder::default_cgroup(&slice, &unit).build();
|
||||||
|
let slice_base = expand_slice(&slice)?;
|
||||||
|
|
||||||
|
let fs_base = join_path(&slice_base, &unit);
|
||||||
|
let fs_manager = FsManager::new(&fs_base)?;
|
||||||
|
|
||||||
|
let cgroup = SystemdClient::new(&unit, props)?;
|
||||||
|
|
||||||
|
Ok(Self {
|
||||||
|
slice,
|
||||||
|
unit,
|
||||||
|
fs_manager,
|
||||||
|
systemd_client: cgroup,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl SystemdManager<'_> {
|
||||||
|
/// Get the slice name.
|
||||||
|
pub fn slice(&self) -> &str {
|
||||||
|
&self.slice
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the unit name.
|
||||||
|
pub fn unit(&self) -> &str {
|
||||||
|
&self.unit
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set_cpuset(&self, props: &mut Vec<Property>, linux_cpu: &LinuxCpu) -> Result<()> {
|
||||||
|
if let Some(cpus) = linux_cpu.cpus().as_ref() {
|
||||||
|
let (id, value) = cpuset::cpus(cpus)?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(mems) = linux_cpu.mems().as_ref() {
|
||||||
|
let (id, value) = cpuset::mems(mems)?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set_cpu(&self, props: &mut Vec<Property>, linux_cpu: &LinuxCpu) -> Result<()> {
|
||||||
|
if let Some(shares) = linux_cpu.shares() {
|
||||||
|
let shares = if self.v2() {
|
||||||
|
conv::cpu_shares_to_cgroup_v2(shares)
|
||||||
|
} else {
|
||||||
|
shares
|
||||||
|
};
|
||||||
|
let (id, value) = cpu::shares(shares, self.v2())?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
let period = linux_cpu.period().unwrap_or(0);
|
||||||
|
let quota = linux_cpu.quota().unwrap_or(0);
|
||||||
|
|
||||||
|
if period != 0 {
|
||||||
|
let (id, value) = cpu::period(period)?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
if period != 0 || quota != 0 {
|
||||||
|
// Corresponds to USEC_INFINITY in systemd
|
||||||
|
let mut quota_systemd = u64::MAX;
|
||||||
|
let mut period = period;
|
||||||
|
if quota > 0 {
|
||||||
|
if period == 0 {
|
||||||
|
period = DEFAULT_CPU_QUOTA_PERIOD;
|
||||||
|
}
|
||||||
|
// systemd converts CPUQuotaPerSecUSec (microseconds per
|
||||||
|
// CPU second) to CPUQuota (integer percentage of CPU)
|
||||||
|
// internally. This means that if a fractional percent of
|
||||||
|
// CPU is indicated by Resources.CpuQuota, we need to round
|
||||||
|
// up to the nearest 10ms (1% of a second) such that child
|
||||||
|
// cgroups can set the cpu.cfs_quota_us they expect.
|
||||||
|
quota_systemd = ((quota as u64) * s_to_us(1)) / period;
|
||||||
|
if quota_systemd % ms_to_us(10) != 0 {
|
||||||
|
quota_systemd = (quota_systemd / ms_to_us(10) + 1) * ms_to_us(10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let (id, value) = cpu::quota(quota_systemd)?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set_memory(&self, props: &mut Vec<Property>, linux_memory: &LinuxMemory) -> Result<()> {
|
||||||
|
let v2 = self.v2();
|
||||||
|
|
||||||
|
let mem_limit = linux_memory.limit().unwrap_or(0);
|
||||||
|
if mem_limit != 0 {
|
||||||
|
let (id, value) = memory::limit(mem_limit, v2)?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
let reservation = linux_memory.reservation().unwrap_or(0);
|
||||||
|
if reservation != 0 && v2 {
|
||||||
|
let (id, value) = memory::low(reservation, v2)?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
let memswap_limit = linux_memory.swap().unwrap_or(0);
|
||||||
|
if memswap_limit != 0 && v2 {
|
||||||
|
let memswap_limit = conv::memory_swap_to_cgroup_v2(memswap_limit, mem_limit)?;
|
||||||
|
let (id, value) = memory::swap(memswap_limit, v2)?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set_pids(&self, props: &mut Vec<Property>, linux_pids: &LinuxPids) -> Result<()> {
|
||||||
|
let limit = linux_pids.limit();
|
||||||
|
if limit == -1 || limit > 0 {
|
||||||
|
let (id, value) = pids::max(limit)?;
|
||||||
|
props.push((id, value.into()));
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The systemd sends SIGTERM to processes in the unit on stop. Once a
|
||||||
|
/// timeout occurs, SIGKILL will be sent to the processes.
|
||||||
|
///
|
||||||
|
/// The item could be retrieved by:
|
||||||
|
///
|
||||||
|
/// ```bash
|
||||||
|
/// $ systemctl show <unit> -p TimeoutStopUSec
|
||||||
|
/// ```
|
||||||
|
pub fn set_term_timeout(&mut self, timeout_in_sec: u64) -> Result<()> {
|
||||||
|
let timeout_in_usec = timeout_in_sec * 1_000_000;
|
||||||
|
let prop = (TIMEOUT_STOP_USEC, ZbusValue::U64(timeout_in_usec));
|
||||||
|
self.systemd_client.set_properties(&[prop])?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Manager for SystemdManager<'_> {
|
||||||
|
fn add_proc(&mut self, pid: CgroupPid) -> Result<()> {
|
||||||
|
if !self.systemd_client.exists() {
|
||||||
|
self.systemd_client.set_pid_prop(pid)?;
|
||||||
|
self.systemd_client.start()?;
|
||||||
|
// The fs_manager was created in load mode, which doesn't create
|
||||||
|
// the cgroups. So we create them here.
|
||||||
|
self.fs_manager.create_cgroups()?;
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let subcgroup = self.fs_manager.subcgroup();
|
||||||
|
self.systemd_client.add_process(pid, subcgroup)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// `add_thread()` is the same as `add_proc()`, as systemd doesn't
|
||||||
|
/// expose an API to add a thread directly. As a result, the whole
|
||||||
|
/// threads belonging to one process will be added to this cgroup.
|
||||||
|
fn add_thread(&mut self, pid: CgroupPid) -> Result<()> {
|
||||||
|
self.add_proc(pid)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn cgroup_path(&self, subsystem: Option<&str>) -> Result<String> {
|
||||||
|
self.fs_manager.cgroup_path(subsystem)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Destroy the cgroup and stop the transient unit.
|
||||||
|
///
|
||||||
|
/// Please note that if the current manager is in the cgroup, the
|
||||||
|
/// manager will be killed with SIGTERM signal. If you do not intend
|
||||||
|
/// that, please ignore the signal and do cleanup things immediately.
|
||||||
|
/// Systemd will forcibly terminate the process with SIGKILL after a
|
||||||
|
/// while.
|
||||||
|
fn destroy(&mut self) -> Result<()> {
|
||||||
|
self.systemd_client.stop()?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn enable_cpus_topdown(&self, cpus: &str) -> Result<()> {
|
||||||
|
self.fs_manager.enable_cpus_topdown(cpus)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn freeze(&self, state: FreezerState) -> Result<()> {
|
||||||
|
match state {
|
||||||
|
FreezerState::Thawed => self.systemd_client.thaw()?,
|
||||||
|
FreezerState::Frozen => self.systemd_client.freeze()?,
|
||||||
|
FreezerState::Freezing => return Err(Error::InvalidArgument),
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn pids(&self) -> Result<Vec<CgroupPid>> {
|
||||||
|
self.fs_manager.pids()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set(&mut self, resources: &LinuxResources) -> Result<()> {
|
||||||
|
let mut props = vec![];
|
||||||
|
|
||||||
|
if let Some(linux_cpu) = resources.cpu() {
|
||||||
|
self.set_cpuset(&mut props, linux_cpu)?;
|
||||||
|
self.set_cpu(&mut props, linux_cpu)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(linux_memory) = resources.memory() {
|
||||||
|
self.set_memory(&mut props, linux_memory)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(linux_pids) = resources.pids() {
|
||||||
|
self.set_pids(&mut props, linux_pids)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
self.systemd_client.set_properties(&props)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn stats(&self) -> CgroupStats {
|
||||||
|
self.fs_manager.stats()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn paths(&self) -> &HashMap<String, String> {
|
||||||
|
self.fs_manager.paths()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn mounts(&self) -> &HashMap<String, String> {
|
||||||
|
self.fs_manager.mounts()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn systemd(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
fn v2(&self) -> bool {
|
||||||
|
self.fs_manager.v2()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn new_unit_name(scope_prefix: &str, name: &str) -> String {
|
||||||
|
// By default, we create a scope unless the user explicitly asks
|
||||||
|
// for a slice.
|
||||||
|
if !name.ends_with(SLICE_SUFFIX) {
|
||||||
|
if scope_prefix.is_empty() {
|
||||||
|
// {name}.scope
|
||||||
|
return format!("{}{}", name, SCOPE_SUFFIX);
|
||||||
|
}
|
||||||
|
// {scope_prefix}-{name}.scope
|
||||||
|
return format!("{}-{}{}", scope_prefix, name, SCOPE_SUFFIX);
|
||||||
|
}
|
||||||
|
|
||||||
|
name.to_string()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
/// Convert milliseconds to microseconds.
|
||||||
|
fn ms_to_us(ms: u64) -> u64 {
|
||||||
|
ms * 1_000
|
||||||
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
/// Convert seconds to microseconds.
|
||||||
|
fn s_to_us(s: u64) -> u64 {
|
||||||
|
s * 1_000_000
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
//! Tests for the `SystemdManager` implementation of the `Manager`
|
||||||
|
//! trait.
|
||||||
|
//!
|
||||||
|
//! Don't run tests in parallel, use `--test-threads=1`!
|
||||||
|
//!
|
||||||
|
|
||||||
|
use std::path::Path;
|
||||||
|
use std::thread::sleep;
|
||||||
|
use std::time::Duration;
|
||||||
|
|
||||||
|
use oci_spec::runtime::{LinuxCpuBuilder, LinuxMemoryBuilder, LinuxResourcesBuilder};
|
||||||
|
use rand::distributions::Alphanumeric;
|
||||||
|
use rand::Rng;
|
||||||
|
|
||||||
|
use crate::fs::cpu::CpuController;
|
||||||
|
use crate::fs::memory::MemController;
|
||||||
|
use crate::fs::{ControllIdentifier, Controller, Subsystem};
|
||||||
|
use crate::manager::systemd::*;
|
||||||
|
use crate::manager::tests::{MEMORY_1G, MEMORY_2G, MEMORY_512M};
|
||||||
|
use crate::tests::spawn_sleep_inf;
|
||||||
|
use crate::{skip_if_cgroups_v1, skip_if_cgroups_v2, skip_if_no_systemd};
|
||||||
|
|
||||||
|
fn new_cgroups_path() -> (String, String, String) {
|
||||||
|
let rand_string: String = rand::thread_rng()
|
||||||
|
.sample_iter(&Alphanumeric)
|
||||||
|
.take(5)
|
||||||
|
.map(char::from)
|
||||||
|
.collect();
|
||||||
|
(
|
||||||
|
"cgroupsrs-test.slice".to_string(),
|
||||||
|
"cri".to_string(),
|
||||||
|
format!("pod{}", rand_string),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn new_systemd_manager<'a>() -> SystemdManager<'a> {
|
||||||
|
let (slice, scope_prefix, name) = new_cgroups_path();
|
||||||
|
SystemdManager::new(&format!("{}:{}:{}", slice, scope_prefix, name)).unwrap()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn managed_cgroup_path(manager: &SystemdManager<'_>, subsystem: Option<&str>) -> String {
|
||||||
|
if manager.v2() {
|
||||||
|
return manager.cgroup_path(None).unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let subsystem = subsystem.expect("cgroup v1 requires a subsystem");
|
||||||
|
let mountpoint = manager
|
||||||
|
.mounts()
|
||||||
|
.get(subsystem)
|
||||||
|
.expect("cgroup v1 subsystem mountpoint should exist");
|
||||||
|
let slice_base = expand_slice(manager.slice()).unwrap();
|
||||||
|
join_path(mountpoint, &join_path(&slice_base, manager.unit()))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run_set_resources_failed(resources: LinuxResources) {
|
||||||
|
let mut child = spawn_sleep_inf();
|
||||||
|
let mut manager = new_systemd_manager();
|
||||||
|
manager
|
||||||
|
.add_proc(CgroupPid {
|
||||||
|
pid: child.id() as u64,
|
||||||
|
})
|
||||||
|
.unwrap();
|
||||||
|
assert!(manager.set(&resources).is_err());
|
||||||
|
manager.destroy().unwrap();
|
||||||
|
child.wait().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run_set_resources<F>(linux_resources: LinuxResources, test_fn: F)
|
||||||
|
where
|
||||||
|
F: FnOnce(&mut SystemdManager),
|
||||||
|
{
|
||||||
|
let mut manager = new_systemd_manager();
|
||||||
|
let mut child = spawn_sleep_inf();
|
||||||
|
|
||||||
|
manager
|
||||||
|
.add_proc(CgroupPid {
|
||||||
|
pid: child.id() as u64,
|
||||||
|
})
|
||||||
|
.unwrap();
|
||||||
|
manager.set(&linux_resources).unwrap();
|
||||||
|
|
||||||
|
test_fn(&mut manager);
|
||||||
|
|
||||||
|
manager.destroy().unwrap();
|
||||||
|
child.wait().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_new_unit_name() {
|
||||||
|
assert_eq!(new_unit_name("test", "unit"), "test-unit.scope");
|
||||||
|
assert_eq!(new_unit_name("test", "unit.slice"), "unit.slice");
|
||||||
|
assert_eq!(new_unit_name("", "unit"), "unit.scope");
|
||||||
|
assert_eq!(new_unit_name("", "unit.slice"), "unit.slice");
|
||||||
|
assert_eq!(new_unit_name("prefix", "unit"), "prefix-unit.scope");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_slice_and_unit() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
let (slice, scope_prefix, name) = new_cgroups_path();
|
||||||
|
let manager = SystemdManager::new(&format!("{}:{}:{}", slice, scope_prefix, name)).unwrap();
|
||||||
|
|
||||||
|
assert_eq!(manager.slice(), "cgroupsrs-test.slice");
|
||||||
|
assert_eq!(manager.unit(), format!("{scope_prefix}-{name}.scope"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_destory() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
let (slice, scope_prefix, name) = new_cgroups_path();
|
||||||
|
let mut manager =
|
||||||
|
SystemdManager::new(&format!("{}:{}:{}", slice, scope_prefix, name)).unwrap();
|
||||||
|
|
||||||
|
let cgroup_path = managed_cgroup_path(&manager, (!manager.v2()).then_some("memory"));
|
||||||
|
// Before starting the unit, no cgroup should exist.
|
||||||
|
assert!(!Path::new(&cgroup_path).exists());
|
||||||
|
|
||||||
|
let mut child = spawn_sleep_inf();
|
||||||
|
manager
|
||||||
|
.add_proc(CgroupPid {
|
||||||
|
pid: child.id() as u64,
|
||||||
|
})
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
// Now cgroup should exist.
|
||||||
|
assert!(Path::new(&cgroup_path).exists());
|
||||||
|
|
||||||
|
manager.destroy().unwrap();
|
||||||
|
|
||||||
|
// This process should be killed.
|
||||||
|
child.wait().unwrap();
|
||||||
|
|
||||||
|
// No cgroup should exist after destroy, retry 5 times at 1-second
|
||||||
|
// intervals.
|
||||||
|
for _ in 0..5 {
|
||||||
|
if !Path::new(&cgroup_path).exists() {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
sleep(Duration::from_secs(1));
|
||||||
|
}
|
||||||
|
assert!(!Path::new(&cgroup_path).exists());
|
||||||
|
// Unit should be stopped.
|
||||||
|
assert!(!manager.systemd_client.exists());
|
||||||
|
}
|
||||||
|
|
||||||
|
fn controller<'a, T>(fs_manager: &'a FsManager) -> &'a T
|
||||||
|
where
|
||||||
|
&'a T: From<&'a Subsystem>,
|
||||||
|
T: Controller + ControllIdentifier,
|
||||||
|
{
|
||||||
|
let controller: &T = fs_manager.cgroup().controller_of().unwrap();
|
||||||
|
|
||||||
|
controller
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_set_cpu() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
// 1024 shares, every 100ms allows to use 1 CPU
|
||||||
|
let linux_cpu = LinuxCpuBuilder::default()
|
||||||
|
.shares(1024u64)
|
||||||
|
.quota(100000i64)
|
||||||
|
.period(100000u64)
|
||||||
|
.quota(100000i64)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let linux_resources = LinuxResourcesBuilder::default()
|
||||||
|
.cpu(linux_cpu)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
run_set_resources(linux_resources, |manager| {
|
||||||
|
let controller: &CpuController = controller(&manager.fs_manager);
|
||||||
|
let shares = controller.shares().unwrap();
|
||||||
|
let period = controller.cfs_period().unwrap();
|
||||||
|
let quota = controller.cfs_quota().unwrap();
|
||||||
|
|
||||||
|
if manager.v2() {
|
||||||
|
assert_eq!(shares, conv::cpu_shares_to_cgroup_v2(1024));
|
||||||
|
} else {
|
||||||
|
assert_eq!(shares, 1024);
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_eq!(period, 100000);
|
||||||
|
assert_eq!(quota, 100000);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_set_memory_v2() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
skip_if_cgroups_v1!();
|
||||||
|
|
||||||
|
// Expected failure: swap < limit
|
||||||
|
let linux_memory = LinuxMemoryBuilder::default()
|
||||||
|
.limit(MEMORY_1G)
|
||||||
|
.swap(MEMORY_512M)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
let linux_resources = LinuxResourcesBuilder::default()
|
||||||
|
.memory(linux_memory)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
run_set_resources_failed(linux_resources);
|
||||||
|
|
||||||
|
// Expected success
|
||||||
|
let linux_memory = LinuxMemoryBuilder::default()
|
||||||
|
.limit(MEMORY_512M)
|
||||||
|
.swap(MEMORY_1G)
|
||||||
|
.reservation(MEMORY_2G)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
let linux_resources = LinuxResourcesBuilder::default()
|
||||||
|
.memory(linux_memory)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
run_set_resources(linux_resources, |manager| {
|
||||||
|
let controller: &MemController = controller(&manager.fs_manager);
|
||||||
|
let memory_stat = controller.memory_stat();
|
||||||
|
let memory_swap_stat = controller.memswap();
|
||||||
|
|
||||||
|
assert_eq!(memory_stat.limit_in_bytes, MEMORY_512M);
|
||||||
|
assert_eq!(memory_swap_stat.limit_in_bytes, MEMORY_512M);
|
||||||
|
assert_eq!(memory_stat.soft_limit_in_bytes, MEMORY_2G);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_set_memory_v1() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
skip_if_cgroups_v2!();
|
||||||
|
|
||||||
|
// Expected success
|
||||||
|
let linux_memory = LinuxMemoryBuilder::default()
|
||||||
|
.limit(MEMORY_512M)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
let linux_resources = LinuxResourcesBuilder::default()
|
||||||
|
.memory(linux_memory)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
run_set_resources(linux_resources, |manager| {
|
||||||
|
let controller: &MemController = controller(&manager.fs_manager);
|
||||||
|
let memory_stat = controller.memory_stat();
|
||||||
|
assert_eq!(memory_stat.limit_in_bytes, MEMORY_512M);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
156
src/stats.rs
Normal file
156
src/stats.rs
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
// Copyright (c) 2018 Levente Kurusa
|
||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct CgroupStats {
|
||||||
|
pub cpu: CpuCgroupStats,
|
||||||
|
pub memory: MemoryCgroupStats,
|
||||||
|
pub pids: PidsCgroupStats,
|
||||||
|
pub blkio: BlkioCgroupStats,
|
||||||
|
pub hugetlb: HugeTlbCgroupStats,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct CpuCgroupStats {
|
||||||
|
pub cpu_acct: Option<CpuAcctStats>,
|
||||||
|
pub cpu_throttling: Option<CpuThrottlingStats>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct CpuAcctStats {
|
||||||
|
/// Usage in userspace, read from `cpuacct.stat` from the line starting
|
||||||
|
/// with `user`. Set 0 if no data.
|
||||||
|
pub user_usage: u64,
|
||||||
|
/// Usage in kernelspace, read from `cpuacct.stat` from the line
|
||||||
|
/// starting with `system`. Set 0 if no data.
|
||||||
|
pub system_usage: u64,
|
||||||
|
/// Total usage, read from `cpuacct.usage`. Set 0 if no data.
|
||||||
|
pub total_usage: u64,
|
||||||
|
/// Per-CPU usage, read from `cpuacct.usage_percpu`.
|
||||||
|
pub usage_percpu: Vec<u64>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct CpuThrottlingStats {
|
||||||
|
/// Periods, read from `cpu.stat` from the line starting with
|
||||||
|
/// `nr_periods`. Set 0 if no data.
|
||||||
|
pub periods: u64,
|
||||||
|
/// Throttled periods, read from `cpu.stat` from the line starting with
|
||||||
|
/// `nr_throttled`. Set 0 if no data.
|
||||||
|
pub throttled_periods: u64,
|
||||||
|
/// Throttled time, read from `cpu.stat` from the line starting with
|
||||||
|
/// `throttled_time`. Set 0 if no data.
|
||||||
|
pub throttled_time: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct MemoryCgroupStats {
|
||||||
|
pub memory: Option<MemoryStats>,
|
||||||
|
pub memory_swap: Option<MemoryStats>,
|
||||||
|
pub kernel_memory: Option<MemoryStats>,
|
||||||
|
|
||||||
|
/// Use hierarchy, read from `memory.use_hierarchy` in cgroups v1. Only
|
||||||
|
/// available in cgroups v1.
|
||||||
|
pub use_hierarchy: bool,
|
||||||
|
|
||||||
|
// The following data is read from `memory.stat`, see also
|
||||||
|
// `crate::fs::memory::MemoryStat::stat`.
|
||||||
|
pub cache: u64,
|
||||||
|
pub rss: u64,
|
||||||
|
pub rss_huge: u64,
|
||||||
|
pub shmem: u64,
|
||||||
|
pub mapped_file: u64,
|
||||||
|
pub dirty: u64,
|
||||||
|
pub writeback: u64,
|
||||||
|
pub swap: u64,
|
||||||
|
pub pgpgin: u64,
|
||||||
|
pub pgpgout: u64,
|
||||||
|
pub pgfault: u64,
|
||||||
|
pub pgmajfault: u64,
|
||||||
|
pub inactive_anon: u64,
|
||||||
|
pub active_anon: u64,
|
||||||
|
pub inactive_file: u64,
|
||||||
|
pub active_file: u64,
|
||||||
|
pub unevictable: u64,
|
||||||
|
pub hierarchical_memory_limit: i64,
|
||||||
|
pub hierarchical_memsw_limit: i64,
|
||||||
|
pub total_cache: u64,
|
||||||
|
pub total_rss: u64,
|
||||||
|
pub total_rss_huge: u64,
|
||||||
|
pub total_shmem: u64,
|
||||||
|
pub total_mapped_file: u64,
|
||||||
|
pub total_dirty: u64,
|
||||||
|
pub total_writeback: u64,
|
||||||
|
pub total_swap: u64,
|
||||||
|
pub total_pgpgin: u64,
|
||||||
|
pub total_pgpgout: u64,
|
||||||
|
pub total_pgfault: u64,
|
||||||
|
pub total_pgmajfault: u64,
|
||||||
|
pub total_inactive_anon: u64,
|
||||||
|
pub total_active_anon: u64,
|
||||||
|
pub total_inactive_file: u64,
|
||||||
|
pub total_active_file: u64,
|
||||||
|
pub total_unevictable: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct MemoryStats {
|
||||||
|
/// Memory [swap] usage, read from `memory[.memsw].usage_in_bytes` in
|
||||||
|
/// cgroups v1 and `memory[.swap].current` in cgroups v2.
|
||||||
|
pub usage: u64,
|
||||||
|
/// Maximum memory [swap] usage observed by cgroups, read from
|
||||||
|
/// `memory[.memsw].max_usage_in_bytes` in cgroups v1 and
|
||||||
|
/// `memory[.swap].peak` in cgroups v2.
|
||||||
|
pub max_usage: u64,
|
||||||
|
/// Memory [swap] limit, read from `memory[.memsw].limit_in_bytes` in
|
||||||
|
/// cgroups v1 and `memory[.swap].max` in cgroups v2.
|
||||||
|
pub limit: i64,
|
||||||
|
/// Failure count, read from `memory[.memsw].failcnt`. Only available in
|
||||||
|
/// cgroups v1.
|
||||||
|
pub fail_cnt: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct PidsCgroupStats {
|
||||||
|
/// Current number of processes in the cgroup, read from `pids.current`.
|
||||||
|
pub current: u64,
|
||||||
|
/// Maximum number of processes in the cgroup, read from `pids.limit`.
|
||||||
|
pub limit: i64,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct BlkioCgroupStats {
|
||||||
|
pub io_service_bytes_recursive: Vec<BlkioStat>,
|
||||||
|
pub io_serviced_recursive: Vec<BlkioStat>,
|
||||||
|
pub io_queued_recursive: Vec<BlkioStat>,
|
||||||
|
pub io_service_time_recursive: Vec<BlkioStat>,
|
||||||
|
pub io_wait_time_recursive: Vec<BlkioStat>,
|
||||||
|
pub io_merged_recursive: Vec<BlkioStat>,
|
||||||
|
pub io_time_recursive: Vec<BlkioStat>,
|
||||||
|
pub sectors_recursive: Vec<BlkioStat>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct BlkioStat {
|
||||||
|
pub major: u64,
|
||||||
|
pub minor: u64,
|
||||||
|
pub op: String,
|
||||||
|
pub value: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// A structure representing the statistics of the `hugetlb` subsystem of a
|
||||||
|
/// Cgroup. The key is the huge page size, and the value is the statistics
|
||||||
|
/// for that size.
|
||||||
|
pub type HugeTlbCgroupStats = HashMap<String, HugeTlbStat>;
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct HugeTlbStat {
|
||||||
|
pub usage: u64,
|
||||||
|
pub max_usage: u64,
|
||||||
|
pub fail_cnt: u64,
|
||||||
|
}
|
||||||
68
src/systemd/consts.rs
Normal file
68
src/systemd/consts.rs
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
/// Who enum: all
|
||||||
|
pub const WHO_ENUM_ALL: &str = "all";
|
||||||
|
|
||||||
|
/// Unit mode: replace
|
||||||
|
pub const UNIT_MODE_REPLACE: &str = "replace";
|
||||||
|
|
||||||
|
/// No such unit error
|
||||||
|
pub const NO_SUCH_UNIT: &str = "org.freedesktop.systemd1.NoSuchUnit";
|
||||||
|
|
||||||
|
/// Default description for transient units.
|
||||||
|
pub const DEFAULT_DESCRIPTION: &str = "cgroups-rs transient unit";
|
||||||
|
|
||||||
|
/// Turn on CPU usage accounting for this unit.
|
||||||
|
pub const CPU_ACCOUNTING: &str = "CPUAccounting";
|
||||||
|
/// This setting controls the memory controller in the unified hierarchy.
|
||||||
|
/// Added in version 208.
|
||||||
|
pub const MEMORY_ACCOUNTING: &str = "MemoryAccounting";
|
||||||
|
/// This setting controls the pids controller in the unified hierarchy.
|
||||||
|
pub const TASKS_ACCOUNTING: &str = "TasksAccounting";
|
||||||
|
/// This setting controls the io controller in the unified hierarchy.
|
||||||
|
/// Added in version 230.
|
||||||
|
pub const IO_ACCOUNTING: &str = "IOAccounting";
|
||||||
|
/// This setting controls the block IO controller in the legacy hierarchy.
|
||||||
|
/// Deprecated in version 252.
|
||||||
|
pub const BLOCK_IO_ACCOUNTING: &str = "BlockIOAccounting";
|
||||||
|
/// Description of the unit.
|
||||||
|
pub const DESCRIPTION: &str = "Description";
|
||||||
|
/// PIDs
|
||||||
|
pub const PIDS: &str = "PIDs";
|
||||||
|
/// Default dependencies for this unit.
|
||||||
|
pub const DEFAULT_DEPENDENCIES: &str = "DefaultDependencies";
|
||||||
|
/// Wants, expressing a weak dependency on other units.
|
||||||
|
pub const WANTS: &str = "Wants";
|
||||||
|
/// Slice, used to assign a unit to a specific slice.
|
||||||
|
pub const SLICE: &str = "Slice";
|
||||||
|
/// Turns on delegation of further resource control partitioning to
|
||||||
|
/// processes of the unit.
|
||||||
|
pub const DELEGATE: &str = "Delegate";
|
||||||
|
/// Timeout for stopping the unit in microseconds.
|
||||||
|
pub const TIMEOUT_STOP_USEC: &str = "TimeoutStopUSec";
|
||||||
|
|
||||||
|
/// CPU shares in the legacy hierarchy.
|
||||||
|
pub const CPU_SHARES: &str = "CPUShares";
|
||||||
|
/// CPU shares in the unified hierarchy.
|
||||||
|
pub const CPU_WEIGHT: &str = "CPUWeight";
|
||||||
|
/// CPU quota period us.
|
||||||
|
pub const CPU_QUOTA_PERIOD_US: &str = "CPUQuotaPeriodUSec";
|
||||||
|
/// CPU quota us
|
||||||
|
pub const CPU_QUOTA_PER_SEC_US: &str = "CPUQuotaPerSecUSec";
|
||||||
|
/// Allowed CPUs
|
||||||
|
pub const ALLOWED_CPUS: &str = "AllowedCPUs";
|
||||||
|
/// Allowed memory nodes
|
||||||
|
pub const ALLOWED_MEMORY_NODES: &str = "AllowedMemoryNodes";
|
||||||
|
/// Memory limit in the legacy hierarchy.
|
||||||
|
pub const MEMORY_LIMIT: &str = "MemoryLimit";
|
||||||
|
/// Memory limit in the unified hierarchy.
|
||||||
|
pub const MEMORY_MAX: &str = "MemoryMax";
|
||||||
|
/// Memory low
|
||||||
|
pub const MEMORY_LOW: &str = "MemoryLow";
|
||||||
|
/// Memory swap max
|
||||||
|
pub const MEMORY_SWAP_MAX: &str = "MemorySwapMax";
|
||||||
|
/// Tasks max
|
||||||
|
pub const TASKS_MAX: &str = "TasksMax";
|
||||||
29
src/systemd/cpu.rs
Normal file
29
src/systemd/cpu.rs
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use crate::systemd::error::Result;
|
||||||
|
use crate::systemd::{CPU_QUOTA_PERIOD_US, CPU_QUOTA_PER_SEC_US, CPU_SHARES, CPU_WEIGHT};
|
||||||
|
|
||||||
|
/// Returns the property for CPU shares.
|
||||||
|
///
|
||||||
|
/// Please note that if the shares is obtained from OCI runtime spec, it
|
||||||
|
/// MUST be converted, see [1] and `convert_shares_to_v2()`.
|
||||||
|
///
|
||||||
|
/// 1: https://github.com/containers/crun/blob/main/crun.1.md#cgroup-v2
|
||||||
|
pub fn shares(shares: u64, v2: bool) -> Result<(&'static str, u64)> {
|
||||||
|
let id = if v2 { CPU_WEIGHT } else { CPU_SHARES };
|
||||||
|
|
||||||
|
Ok((id, shares))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the property for CPU period.
|
||||||
|
pub fn period(period: u64) -> Result<(&'static str, u64)> {
|
||||||
|
Ok((CPU_QUOTA_PERIOD_US, period))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Return the property for CPU quota.
|
||||||
|
pub fn quota(quota: u64) -> Result<(&'static str, u64)> {
|
||||||
|
Ok((CPU_QUOTA_PER_SEC_US, quota))
|
||||||
|
}
|
||||||
96
src/systemd/cpuset.rs
Normal file
96
src/systemd/cpuset.rs
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use bit_vec::BitVec;
|
||||||
|
|
||||||
|
use crate::systemd::error::{Error, Result};
|
||||||
|
use crate::systemd::{ALLOWED_CPUS, ALLOWED_MEMORY_NODES};
|
||||||
|
|
||||||
|
const BYTE_IN_BITS: usize = 8;
|
||||||
|
|
||||||
|
/// Returns the property for cpuset CPUs.
|
||||||
|
pub fn cpus(cpus: &str) -> Result<(&'static str, Vec<u8>)> {
|
||||||
|
let mask = convert_list_to_mask(cpus)?;
|
||||||
|
Ok((ALLOWED_CPUS, mask))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the property for cpuset memory nodes.
|
||||||
|
pub fn mems(mems: &str) -> Result<(&'static str, Vec<u8>)> {
|
||||||
|
let mask = convert_list_to_mask(mems)?;
|
||||||
|
Ok((ALLOWED_MEMORY_NODES, mask))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Convert cpuset cpus/mems from the string in comma-separated list format
|
||||||
|
/// to bitmask restored in `Vec<u8>`, see [1].
|
||||||
|
///
|
||||||
|
/// 1: https://man7.org/linux/man-pages/man7/cpuset.7.html
|
||||||
|
///
|
||||||
|
/// # Arguments
|
||||||
|
///
|
||||||
|
/// * `list` - A string slice that holds the list of CPUs in the format
|
||||||
|
/// "0-3,5,7".
|
||||||
|
fn convert_list_to_mask(list: &str) -> Result<Vec<u8>> {
|
||||||
|
let mut bit_vec = BitVec::from_elem(8, false);
|
||||||
|
|
||||||
|
let local_idx =
|
||||||
|
|index: usize| -> usize { index / BYTE_IN_BITS * BYTE_IN_BITS + 7 - index % BYTE_IN_BITS };
|
||||||
|
|
||||||
|
for part1 in list.split(',') {
|
||||||
|
let range: Vec<&str> = part1.split('-').collect();
|
||||||
|
match range.len() {
|
||||||
|
// x-
|
||||||
|
1 => {
|
||||||
|
let left: usize = range[0].parse().map_err(|_| Error::InvalidArgument)?;
|
||||||
|
|
||||||
|
while left >= bit_vec.len() {
|
||||||
|
bit_vec.grow(BYTE_IN_BITS, false);
|
||||||
|
}
|
||||||
|
bit_vec.set(local_idx(left), true);
|
||||||
|
}
|
||||||
|
// x-y
|
||||||
|
2 => {
|
||||||
|
let left: usize = range[0].parse().map_err(|_| Error::InvalidArgument)?;
|
||||||
|
let right: usize = range[1].parse().map_err(|_| Error::InvalidArgument)?;
|
||||||
|
|
||||||
|
while right >= bit_vec.len() {
|
||||||
|
bit_vec.grow(BYTE_IN_BITS, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
for index in left..=right {
|
||||||
|
bit_vec.set(local_idx(index), true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
return Err(Error::InvalidArgument);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut mask = bit_vec.to_bytes();
|
||||||
|
mask.reverse();
|
||||||
|
|
||||||
|
Ok(mask)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use crate::systemd::cpuset::convert_list_to_mask;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_convert_list_to_mask() {
|
||||||
|
let mask = convert_list_to_mask("2-4").unwrap();
|
||||||
|
assert_eq!(vec![0b00011100_u8], mask);
|
||||||
|
|
||||||
|
let mask = convert_list_to_mask("1,7").unwrap();
|
||||||
|
assert_eq!(vec![0b10000010_u8], mask);
|
||||||
|
|
||||||
|
let mask = convert_list_to_mask("0-4,9").unwrap();
|
||||||
|
assert_eq!(vec![0b00000010_u8, 0b00011111_u8], mask);
|
||||||
|
|
||||||
|
assert!(convert_list_to_mask("1-3-4").is_err());
|
||||||
|
|
||||||
|
assert!(convert_list_to_mask("1-3,,").is_err());
|
||||||
|
}
|
||||||
|
}
|
||||||
17
src/systemd/dbus/README.md
Normal file
17
src/systemd/dbus/README.md
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
# Systemd Dbus
|
||||||
|
|
||||||
|
How to generate `xxx_proxy.rs` files
|
||||||
|
|
||||||
|
```shell
|
||||||
|
# install zbus-xmlgen if not
|
||||||
|
$ cargo install zbus-xmlgen
|
||||||
|
# generate interface in XML format
|
||||||
|
$ busctl introspect --xml-interface \
|
||||||
|
org.freedesktop.systemd1 \
|
||||||
|
/org/freedesktop/systemd1 \
|
||||||
|
org.freedesktop.systemd1.Manager > /tmp/systemd1-manager.xml
|
||||||
|
# generate Rust code from XML
|
||||||
|
$ zbus-xmlgen file /tmp/systemd1-manager.xml \
|
||||||
|
--output src/systemd/dbus/systemd_manager_proxy.rs
|
||||||
|
$ rm -rf /tmp/systemd1-manager.xml
|
||||||
|
```
|
||||||
560
src/systemd/dbus/client.rs
Normal file
560
src/systemd/dbus/client.rs
Normal file
@@ -0,0 +1,560 @@
|
|||||||
|
// Copyright 2021-2023 Kata Contributors
|
||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use zbus::zvariant::Value;
|
||||||
|
use zbus::{Error as ZbusError, Result as ZbusResult};
|
||||||
|
|
||||||
|
use crate::systemd::dbus::error::{Error, Result};
|
||||||
|
use crate::systemd::dbus::proxy::systemd_manager_proxy;
|
||||||
|
use crate::systemd::{Property, NO_SUCH_UNIT, PIDS, UNIT_MODE_REPLACE};
|
||||||
|
use crate::CgroupPid;
|
||||||
|
|
||||||
|
pub struct SystemdClient<'a> {
|
||||||
|
/// The name of the systemd unit (slice or scope)
|
||||||
|
unit: String,
|
||||||
|
props: Vec<Property<'a>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> SystemdClient<'a> {
|
||||||
|
pub fn new(unit: &str, props: Vec<Property<'a>>) -> Result<Self> {
|
||||||
|
Ok(Self {
|
||||||
|
unit: unit.to_string(),
|
||||||
|
props,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl SystemdClient<'_> {
|
||||||
|
/// Set the pid to the PIDs property of the unit.
|
||||||
|
///
|
||||||
|
/// Append a process ID to the PIDs property of the unit. If not
|
||||||
|
/// exists, one property will be created.
|
||||||
|
pub fn set_pid_prop(&mut self, pid: CgroupPid) -> Result<()> {
|
||||||
|
if self.exists() {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
for prop in self.props.iter_mut() {
|
||||||
|
if prop.0 == PIDS {
|
||||||
|
// If PIDS is already set, we append the new pid to the existing list.
|
||||||
|
if let Value::Array(arr) = &mut prop.1 {
|
||||||
|
arr.append(pid.pid.into())
|
||||||
|
.map_err(|_| Error::InvalidProperties)?;
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
// Invalid type of PIDs
|
||||||
|
return Err(Error::InvalidProperties);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// If PIDS is not set, we create a new property.
|
||||||
|
self.props
|
||||||
|
.push((PIDS, Value::Array(vec![pid.pid as u32].into())));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Start a slice or a scope unit controlled and supervised by systemd.
|
||||||
|
///
|
||||||
|
/// For more information, see:
|
||||||
|
/// https://www.freedesktop.org/software/systemd/man/latest/systemd.unit.html
|
||||||
|
/// https://www.freedesktop.org/software/systemd/man/latest/systemd.slice.html
|
||||||
|
/// https://www.freedesktop.org/software/systemd/man/latest/systemd.scope.html
|
||||||
|
pub fn start(&self) -> Result<()> {
|
||||||
|
// PIDs property must be present
|
||||||
|
if !self.props.iter().any(|(k, _)| k == &PIDS) {
|
||||||
|
return Err(Error::InvalidProperties);
|
||||||
|
}
|
||||||
|
|
||||||
|
let sys_proxy = systemd_manager_proxy()?;
|
||||||
|
|
||||||
|
let props_borrowed: Vec<(&str, &zbus::zvariant::Value)> =
|
||||||
|
self.props.iter().map(|(k, v)| (*k, v)).collect();
|
||||||
|
let props_borrowed: Vec<&(&str, &Value)> = props_borrowed.iter().collect();
|
||||||
|
|
||||||
|
sys_proxy.start_transient_unit(&self.unit, UNIT_MODE_REPLACE, &props_borrowed, &[])?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Stop the current transient unit, the processes will be killed on
|
||||||
|
/// unit stop, see [1].
|
||||||
|
///
|
||||||
|
/// 1. https://www.freedesktop.org/software/systemd/man/latest/systemd.kill.html#KillMode=
|
||||||
|
pub fn stop(&self) -> Result<()> {
|
||||||
|
let sys_proxy = systemd_manager_proxy()?;
|
||||||
|
|
||||||
|
let ret = sys_proxy.stop_unit(&self.unit, UNIT_MODE_REPLACE);
|
||||||
|
ignore_no_such_unit(ret)?;
|
||||||
|
|
||||||
|
// If we stop the unit and it still exists, it may be in a failed
|
||||||
|
// state, so we will try to reset it.
|
||||||
|
if self.exists() {
|
||||||
|
let ret = sys_proxy.reset_failed_unit(&self.unit);
|
||||||
|
ignore_no_such_unit(ret)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Set properties for the unit through dbus `SetUnitProperties`.
|
||||||
|
pub fn set_properties(&mut self, properties: &[Property<'static>]) -> Result<()> {
|
||||||
|
for prop in properties {
|
||||||
|
let new = prop.1.try_clone().map_err(|_| Error::InvalidProperties)?;
|
||||||
|
// Try to update the value first, if fails, append it.
|
||||||
|
if let Some(existing) = self.props.iter_mut().find(|p| p.0 == prop.0) {
|
||||||
|
existing.1 = new;
|
||||||
|
} else {
|
||||||
|
self.props.push((prop.0, new));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// The unit must exist before setting properties.
|
||||||
|
if !self.exists() {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let sys_proxy = systemd_manager_proxy()?;
|
||||||
|
|
||||||
|
let props_borrowed: Vec<(&str, &Value)> = properties.iter().map(|(k, v)| (*k, v)).collect();
|
||||||
|
let props_borrowed: Vec<&(&str, &Value)> = props_borrowed.iter().collect();
|
||||||
|
|
||||||
|
sys_proxy.set_unit_properties(&self.unit, true, &props_borrowed)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Freeze the unit through dbus `FreezeUnit`.
|
||||||
|
pub fn freeze(&self) -> Result<()> {
|
||||||
|
let sys_proxy = systemd_manager_proxy()?;
|
||||||
|
|
||||||
|
sys_proxy.freeze_unit(&self.unit)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Thaw the frozen unit through dbus `ThawUnit`.
|
||||||
|
pub fn thaw(&self) -> Result<()> {
|
||||||
|
let sys_proxy = systemd_manager_proxy()?;
|
||||||
|
|
||||||
|
sys_proxy.thaw_unit(&self.unit)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Check if the unit exists.
|
||||||
|
pub fn exists(&self) -> bool {
|
||||||
|
let sys_proxy = match systemd_manager_proxy() {
|
||||||
|
Ok(proxy) => proxy,
|
||||||
|
_ => return false,
|
||||||
|
};
|
||||||
|
|
||||||
|
sys_proxy
|
||||||
|
.get_unit(&self.unit)
|
||||||
|
.map(|_| true)
|
||||||
|
.unwrap_or_default()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Add a process (tgid) to the unit through dbus
|
||||||
|
/// `AttachProcessesToUnit`.
|
||||||
|
pub fn add_process(&self, pid: CgroupPid, subcgroup: &str) -> Result<()> {
|
||||||
|
let sys_proxy = systemd_manager_proxy()?;
|
||||||
|
|
||||||
|
sys_proxy.attach_processes_to_unit(&self.unit, subcgroup, &[pid.pid as u32])?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn ignore_no_such_unit<T>(result: ZbusResult<T>) -> ZbusResult<bool> {
|
||||||
|
if let Err(ZbusError::MethodError(err_name, _, _)) = &result {
|
||||||
|
if err_name.as_str() == NO_SUCH_UNIT {
|
||||||
|
return Ok(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
result.map(|_| false)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
pub mod tests {
|
||||||
|
//! Unit tests for the SystemdClient
|
||||||
|
//!
|
||||||
|
//! Not sure why the tests are going to fail if we run them in
|
||||||
|
//! parallel. Everything goes smoothly in serial.
|
||||||
|
//!
|
||||||
|
//! $ cargo test --package cgroups-rs --lib \
|
||||||
|
//! -- systemd::dbus::client::tests \
|
||||||
|
//! --show-output --test-threads=1
|
||||||
|
|
||||||
|
use std::fs;
|
||||||
|
use std::path::Path;
|
||||||
|
use std::process::Command;
|
||||||
|
use std::thread::sleep;
|
||||||
|
use std::time::Duration;
|
||||||
|
|
||||||
|
use rand::distributions::Alphanumeric;
|
||||||
|
use rand::Rng;
|
||||||
|
|
||||||
|
use crate::fs::hierarchies;
|
||||||
|
use crate::systemd::dbus::client::*;
|
||||||
|
use crate::systemd::props::PropertiesBuilder;
|
||||||
|
use crate::systemd::utils::expand_slice;
|
||||||
|
use crate::systemd::{DEFAULT_DESCRIPTION, DESCRIPTION, PIDS};
|
||||||
|
use crate::tests::{spawn_sleep_inf, spawn_yes};
|
||||||
|
|
||||||
|
const TEST_SLICE: &str = "cgroupsrs-test.slice";
|
||||||
|
|
||||||
|
fn test_unit() -> String {
|
||||||
|
let rand_string: String = rand::thread_rng()
|
||||||
|
.sample_iter(&Alphanumeric)
|
||||||
|
.take(5)
|
||||||
|
.map(char::from)
|
||||||
|
.collect();
|
||||||
|
format!("cri-pod{}.scope", rand_string)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! skip_if_no_systemd {
|
||||||
|
() => {
|
||||||
|
if $crate::tests::systemd_version().is_none() {
|
||||||
|
eprintln!("Test skipped, no systemd?");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
fn systemd_show(unit: &str) -> String {
|
||||||
|
let output = Command::new("systemctl")
|
||||||
|
.arg("show")
|
||||||
|
.arg(unit)
|
||||||
|
.output()
|
||||||
|
.expect("Failed to execute systemctl show command");
|
||||||
|
String::from_utf8_lossy(&output.stdout).to_string()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn start_default_cgroup(pid: CgroupPid, unit: &'_ str) -> SystemdClient<'_> {
|
||||||
|
let mut props = PropertiesBuilder::default_cgroup(TEST_SLICE, unit).build();
|
||||||
|
props.push((PIDS, Value::Array(vec![pid.pid as u32].into())));
|
||||||
|
let cgroup = SystemdClient::new(unit, props).unwrap();
|
||||||
|
// Stop the unit if it exists.
|
||||||
|
cgroup.stop().unwrap();
|
||||||
|
|
||||||
|
// Write the current process to the cgroup.
|
||||||
|
cgroup.start().unwrap();
|
||||||
|
cgroup.add_process(pid, "/").unwrap();
|
||||||
|
cgroup
|
||||||
|
}
|
||||||
|
|
||||||
|
fn stop_cgroup(cgroup: &SystemdClient) {
|
||||||
|
cgroup.stop().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_start() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
let v2 = hierarchies::is_cgroup2_unified_mode();
|
||||||
|
let unit = test_unit();
|
||||||
|
let mut child = spawn_sleep_inf();
|
||||||
|
let cgroup = start_default_cgroup(CgroupPid::from(child.id() as u64), &unit);
|
||||||
|
|
||||||
|
let base = expand_slice(TEST_SLICE).unwrap();
|
||||||
|
|
||||||
|
// Check if the cgroup exists in the filesystem
|
||||||
|
let full_base = if v2 {
|
||||||
|
format!("/sys/fs/cgroup/{}", base)
|
||||||
|
} else {
|
||||||
|
format!("/sys/fs/cgroup/memory/{}", base)
|
||||||
|
};
|
||||||
|
assert!(
|
||||||
|
Path::new(&full_base).exists(),
|
||||||
|
"Cgroup base path does not exist: {}",
|
||||||
|
full_base
|
||||||
|
);
|
||||||
|
|
||||||
|
// PIDs
|
||||||
|
let cgroup_procs_path = format!("{}/{}/cgroup.procs", full_base, &unit);
|
||||||
|
for i in 0..5 {
|
||||||
|
let content = fs::read_to_string(&cgroup_procs_path);
|
||||||
|
if let Ok(content) = &content {
|
||||||
|
if content.contains(&child.id().to_string()) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Retry attempts exhausted, resulting in failure
|
||||||
|
if i == 4 {
|
||||||
|
let content = content.as_ref().unwrap();
|
||||||
|
assert!(
|
||||||
|
content.contains(&child.id().to_string()),
|
||||||
|
"Cgroup procs does not contain the child process ID"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// Wait 500ms before next retrying
|
||||||
|
sleep(Duration::from_millis(500));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check the unit from "systemctl show <unit>"
|
||||||
|
let output = systemd_show(&cgroup.unit);
|
||||||
|
|
||||||
|
// Slice
|
||||||
|
assert!(
|
||||||
|
output
|
||||||
|
.lines()
|
||||||
|
.any(|line| line == format!("Slice={}", TEST_SLICE)),
|
||||||
|
"Slice not found"
|
||||||
|
);
|
||||||
|
// Delegate
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "Delegate=yes"),
|
||||||
|
"Delegate not set"
|
||||||
|
);
|
||||||
|
// DelegateControllers
|
||||||
|
// controllers: cpu cpuacct cpuset io blkio memory devices pids
|
||||||
|
let controllers = output
|
||||||
|
.lines()
|
||||||
|
.find(|line| line.starts_with("DelegateControllers="))
|
||||||
|
.map(|line| line.trim_start_matches("DelegateControllers="))
|
||||||
|
.unwrap();
|
||||||
|
let controllers = controllers.split(' ').collect::<Vec<&str>>();
|
||||||
|
assert!(
|
||||||
|
controllers.contains(&"cpu"),
|
||||||
|
"DelegateControllers cpu not set"
|
||||||
|
);
|
||||||
|
assert!(
|
||||||
|
controllers.contains(&"cpuset"),
|
||||||
|
"DelegateControllers cpuset not set"
|
||||||
|
);
|
||||||
|
if v2 {
|
||||||
|
assert!(
|
||||||
|
controllers.contains(&"io"),
|
||||||
|
"DelegateControllers io not set"
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
assert!(
|
||||||
|
controllers.contains(&"blkio"),
|
||||||
|
"DelegateControllers blkio not set"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
assert!(
|
||||||
|
controllers.contains(&"memory"),
|
||||||
|
"DelegateControllers memory not set"
|
||||||
|
);
|
||||||
|
assert!(
|
||||||
|
controllers.contains(&"pids"),
|
||||||
|
"DelegateControllers pids not set"
|
||||||
|
);
|
||||||
|
|
||||||
|
// CPUAccounting
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "CPUAccounting=yes"),
|
||||||
|
"CPUAccounting not set"
|
||||||
|
);
|
||||||
|
// IOAccounting for v2, and BlockIOAccounting for v1
|
||||||
|
if v2 {
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "IOAccounting=yes"),
|
||||||
|
"IOAccounting not set"
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "BlockIOAccounting=yes"),
|
||||||
|
"BlockIOAccounting not set"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// MemoryAccounting
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "MemoryAccounting=yes"),
|
||||||
|
"MemoryAccounting not set"
|
||||||
|
);
|
||||||
|
// TasksAccounting
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "TasksAccounting=yes"),
|
||||||
|
"TasksAccounting not set"
|
||||||
|
);
|
||||||
|
// ActiveState
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "ActiveState=active"),
|
||||||
|
"Unit is not active"
|
||||||
|
);
|
||||||
|
|
||||||
|
stop_cgroup(&cgroup);
|
||||||
|
child.wait().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_stop() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
let unit = test_unit();
|
||||||
|
let mut child = spawn_sleep_inf();
|
||||||
|
let cgroup = start_default_cgroup(CgroupPid::from(child.id() as u64), &unit);
|
||||||
|
|
||||||
|
// Check ActiveState: expected to be "active"
|
||||||
|
let output = systemd_show(&cgroup.unit);
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "ActiveState=active"),
|
||||||
|
"Unit is not active"
|
||||||
|
);
|
||||||
|
|
||||||
|
stop_cgroup(&cgroup);
|
||||||
|
|
||||||
|
// Check ActiveState: expected to be "inactive"
|
||||||
|
let output = systemd_show(&cgroup.unit);
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line == "ActiveState=inactive"),
|
||||||
|
"Unit is not inactive"
|
||||||
|
);
|
||||||
|
|
||||||
|
child.wait().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_set_properties() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
let unit = test_unit();
|
||||||
|
let mut child = spawn_sleep_inf();
|
||||||
|
let mut cgroup = start_default_cgroup(CgroupPid::from(child.id() as u64), &unit);
|
||||||
|
|
||||||
|
let output = systemd_show(&cgroup.unit);
|
||||||
|
assert!(
|
||||||
|
output.lines().any(|line| line
|
||||||
|
== format!(
|
||||||
|
"Description={} {}:{}",
|
||||||
|
DEFAULT_DESCRIPTION, TEST_SLICE, unit
|
||||||
|
)),
|
||||||
|
"Initial description not set correctly"
|
||||||
|
);
|
||||||
|
|
||||||
|
let properties = [(
|
||||||
|
DESCRIPTION,
|
||||||
|
Value::Str("kata-container1 description".into()),
|
||||||
|
)];
|
||||||
|
cgroup.set_properties(&properties).unwrap();
|
||||||
|
assert!(cgroup.props.iter().any(|(k, v)| {
|
||||||
|
k == &DESCRIPTION && v == &Value::Str("kata-container1 description".into())
|
||||||
|
}));
|
||||||
|
|
||||||
|
let output = systemd_show(&cgroup.unit);
|
||||||
|
assert!(
|
||||||
|
output
|
||||||
|
.lines()
|
||||||
|
.any(|line| line == "Description=kata-container1 description"),
|
||||||
|
"Updated description not set correctly"
|
||||||
|
);
|
||||||
|
|
||||||
|
stop_cgroup(&cgroup);
|
||||||
|
child.wait().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_freeze_and_thaw() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
let v2 = hierarchies::is_cgroup2_unified_mode();
|
||||||
|
let unit = test_unit();
|
||||||
|
let mut child = spawn_yes();
|
||||||
|
let cgroup = start_default_cgroup(CgroupPid::from(child.id() as u64), &unit);
|
||||||
|
|
||||||
|
// Freeze the unit
|
||||||
|
let freeze_result = cgroup.freeze();
|
||||||
|
if !v2 {
|
||||||
|
assert!(
|
||||||
|
freeze_result.is_err(),
|
||||||
|
"systemd should reject FreezeUnit on cgroup v1"
|
||||||
|
);
|
||||||
|
stop_cgroup(&cgroup);
|
||||||
|
child.wait().unwrap();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
freeze_result.unwrap();
|
||||||
|
|
||||||
|
let pid = child.id() as u64;
|
||||||
|
|
||||||
|
let stat_path = format!("/proc/{}/stat", pid);
|
||||||
|
let content = fs::read_to_string(&stat_path).unwrap();
|
||||||
|
// The process state is the third field, e.g.:
|
||||||
|
// 1234 (bash) S 1233 ...
|
||||||
|
// ^
|
||||||
|
let mut content_iter = content.split_whitespace();
|
||||||
|
assert_eq!(
|
||||||
|
content_iter.nth(2).unwrap(),
|
||||||
|
"S",
|
||||||
|
"Process should be in 'S' (sleeping) state after freezing"
|
||||||
|
);
|
||||||
|
|
||||||
|
// Thaw the unit
|
||||||
|
cgroup.thaw().unwrap();
|
||||||
|
|
||||||
|
// No more S now
|
||||||
|
let content = fs::read_to_string(&stat_path).unwrap();
|
||||||
|
let mut content_iter = content.split_whitespace();
|
||||||
|
assert_ne!(
|
||||||
|
content_iter.nth(2).unwrap(),
|
||||||
|
"S",
|
||||||
|
"Process should not be in 'S' (sleeping) state after thawing"
|
||||||
|
);
|
||||||
|
|
||||||
|
stop_cgroup(&cgroup);
|
||||||
|
child.wait().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_exists() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
let unit = test_unit();
|
||||||
|
let mut child = spawn_sleep_inf();
|
||||||
|
let cgroup = start_default_cgroup(CgroupPid::from(child.id() as u64), &unit);
|
||||||
|
|
||||||
|
assert!(cgroup.exists(), "Cgroup should exist after starting");
|
||||||
|
|
||||||
|
stop_cgroup(&cgroup);
|
||||||
|
child.wait().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_add_process() {
|
||||||
|
skip_if_no_systemd!();
|
||||||
|
|
||||||
|
let v2 = hierarchies::is_cgroup2_unified_mode();
|
||||||
|
let unit = test_unit();
|
||||||
|
let mut child = spawn_sleep_inf();
|
||||||
|
let cgroup = start_default_cgroup(CgroupPid::from(child.id() as u64), &unit);
|
||||||
|
|
||||||
|
let mut child1 = spawn_sleep_inf();
|
||||||
|
let pid1 = CgroupPid::from(child1.id() as u64);
|
||||||
|
cgroup.add_process(pid1, "/").unwrap();
|
||||||
|
|
||||||
|
let cgroup_root = if v2 {
|
||||||
|
Path::new("/sys/fs/cgroup")
|
||||||
|
} else {
|
||||||
|
Path::new("/sys/fs/cgroup/memory")
|
||||||
|
};
|
||||||
|
let cgroup_procs_path = cgroup_root
|
||||||
|
.join(expand_slice(TEST_SLICE).unwrap())
|
||||||
|
.join(&unit)
|
||||||
|
.join("cgroup.procs");
|
||||||
|
for i in 0..5 {
|
||||||
|
let content = fs::read_to_string(&cgroup_procs_path);
|
||||||
|
if let Ok(content) = content {
|
||||||
|
assert!(
|
||||||
|
content.contains(&child1.id().to_string()),
|
||||||
|
"Cgroup procs does not contain the child1 process ID"
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Retry attempts exhausted, resulting in failure
|
||||||
|
if i == 4 {
|
||||||
|
content.unwrap();
|
||||||
|
}
|
||||||
|
// Wait 500ms before next retrying
|
||||||
|
sleep(Duration::from_millis(500));
|
||||||
|
}
|
||||||
|
|
||||||
|
stop_cgroup(&cgroup);
|
||||||
|
child.wait().unwrap();
|
||||||
|
child1.wait().unwrap();
|
||||||
|
}
|
||||||
|
}
|
||||||
15
src/systemd/dbus/error.rs
Normal file
15
src/systemd/dbus/error.rs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
//
|
||||||
|
|
||||||
|
pub type Result<T> = std::result::Result<T, Error>;
|
||||||
|
|
||||||
|
#[derive(Debug, thiserror::Error)]
|
||||||
|
pub enum Error {
|
||||||
|
#[error("invalid properties")]
|
||||||
|
InvalidProperties,
|
||||||
|
|
||||||
|
#[error("dbus error: {0}")]
|
||||||
|
Dbus(#[from] zbus::Error),
|
||||||
|
}
|
||||||
18
src/systemd/dbus/mod.rs
Normal file
18
src/systemd/dbus/mod.rs
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
// Copyright (c) 2018 Levente Kurusa
|
||||||
|
// Copyright (c) 2020-2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
//! Systemd D-Bus interface for managing cgroups and units.
|
||||||
|
//!
|
||||||
|
//! References:
|
||||||
|
//! https://www.freedesktop.org/software/systemd/man/latest/org.freedesktop.systemd1.html
|
||||||
|
//! https://www.freedesktop.org/software/systemd/man/latest/systemd.service.html
|
||||||
|
//! https://www.freedesktop.org/software/systemd/man/latest/systemd.resource-control.html
|
||||||
|
|
||||||
|
mod client;
|
||||||
|
pub mod error;
|
||||||
|
mod systemd_manager_proxy;
|
||||||
|
pub use client::SystemdClient;
|
||||||
|
mod proxy;
|
||||||
16
src/systemd/dbus/proxy.rs
Normal file
16
src/systemd/dbus/proxy.rs
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use zbus::blocking::Connection;
|
||||||
|
use zbus::Result;
|
||||||
|
|
||||||
|
use crate::systemd::dbus::systemd_manager_proxy::ManagerProxyBlocking as SystemManager;
|
||||||
|
|
||||||
|
pub(crate) fn systemd_manager_proxy<'a>() -> Result<SystemManager<'a>> {
|
||||||
|
let connection = Connection::system()?;
|
||||||
|
let proxy = SystemManager::new(&connection)?;
|
||||||
|
|
||||||
|
Ok(proxy)
|
||||||
|
}
|
||||||
1011
src/systemd/dbus/systemd_manager_proxy.rs
Normal file
1011
src/systemd/dbus/systemd_manager_proxy.rs
Normal file
File diff suppressed because it is too large
Load Diff
15
src/systemd/error.rs
Normal file
15
src/systemd/error.rs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
pub type Result<T> = std::result::Result<T, Error>;
|
||||||
|
|
||||||
|
#[derive(Debug, thiserror::Error)]
|
||||||
|
pub enum Error {
|
||||||
|
#[error("invalid argument")]
|
||||||
|
InvalidArgument,
|
||||||
|
|
||||||
|
#[error("resource not supported by cgroups v1")]
|
||||||
|
CgroupsV1NotSupported,
|
||||||
|
}
|
||||||
32
src/systemd/memory.rs
Normal file
32
src/systemd/memory.rs
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use crate::systemd::error::{Error, Result};
|
||||||
|
use crate::systemd::{MEMORY_LIMIT, MEMORY_LOW, MEMORY_MAX, MEMORY_SWAP_MAX};
|
||||||
|
|
||||||
|
/// Returns the property for memory limit.
|
||||||
|
pub fn limit(limit: i64, v2: bool) -> Result<(&'static str, u64)> {
|
||||||
|
let id = if v2 { MEMORY_MAX } else { MEMORY_LIMIT };
|
||||||
|
|
||||||
|
Ok((id, limit as u64))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the property for memory limit.
|
||||||
|
pub fn low(low: i64, v2: bool) -> Result<(&'static str, u64)> {
|
||||||
|
if !v2 {
|
||||||
|
return Err(Error::CgroupsV1NotSupported);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok((MEMORY_LOW, low as u64))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the property for memory swap.
|
||||||
|
pub fn swap(swap: i64, v2: bool) -> Result<(&'static str, u64)> {
|
||||||
|
if !v2 {
|
||||||
|
return Err(Error::CgroupsV1NotSupported);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok((MEMORY_SWAP_MAX, swap as u64))
|
||||||
|
}
|
||||||
22
src/systemd/mod.rs
Normal file
22
src/systemd/mod.rs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
pub mod cpu;
|
||||||
|
pub mod cpuset;
|
||||||
|
pub mod dbus;
|
||||||
|
pub use dbus::SystemdClient;
|
||||||
|
mod consts;
|
||||||
|
pub use consts::*;
|
||||||
|
pub mod error;
|
||||||
|
pub mod memory;
|
||||||
|
pub mod pids;
|
||||||
|
pub mod props;
|
||||||
|
pub use props::Property;
|
||||||
|
pub mod utils;
|
||||||
|
|
||||||
|
pub const DEFAULT_SLICE: &str = "system.slice";
|
||||||
|
|
||||||
|
pub const SLICE_SUFFIX: &str = ".slice";
|
||||||
|
pub const SCOPE_SUFFIX: &str = ".scope";
|
||||||
11
src/systemd/pids.rs
Normal file
11
src/systemd/pids.rs
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use crate::systemd::error::Result;
|
||||||
|
use crate::systemd::TASKS_MAX;
|
||||||
|
|
||||||
|
pub fn max(max: i64) -> Result<(&'static str, u64)> {
|
||||||
|
Ok((TASKS_MAX, max as u64))
|
||||||
|
}
|
||||||
170
src/systemd/props.rs
Normal file
170
src/systemd/props.rs
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use zbus::zvariant::Value as ZbusValue;
|
||||||
|
|
||||||
|
use crate::fs::hierarchies;
|
||||||
|
use crate::systemd::utils::is_slice_unit;
|
||||||
|
use crate::systemd::{
|
||||||
|
BLOCK_IO_ACCOUNTING, CPU_ACCOUNTING, DEFAULT_DEPENDENCIES, DEFAULT_DESCRIPTION, DELEGATE,
|
||||||
|
DESCRIPTION, IO_ACCOUNTING, MEMORY_ACCOUNTING, PIDS, SLICE, TASKS_ACCOUNTING,
|
||||||
|
TIMEOUT_STOP_USEC, WANTS,
|
||||||
|
};
|
||||||
|
|
||||||
|
pub type Property<'a> = (&'a str, ZbusValue<'a>);
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Default)]
|
||||||
|
pub struct PropertiesBuilder {
|
||||||
|
cpu_accounting: Option<bool>,
|
||||||
|
// MemoryAccount is for cgroup v2 as documented in dbus. However,
|
||||||
|
// "github.com/opencontainer/runc" uses it for all. Shall we follow the
|
||||||
|
// same way?
|
||||||
|
memory_accounting: Option<bool>,
|
||||||
|
task_accounting: Option<bool>,
|
||||||
|
// Use IO_ACCOUNTING for cgroup v2 and BLOCK_IO_ACCOUNTING for cgroup v1.
|
||||||
|
io_accounting: Option<bool>,
|
||||||
|
default_dependencies: Option<bool>,
|
||||||
|
description: Option<String>,
|
||||||
|
wants: Option<String>,
|
||||||
|
slice: Option<String>,
|
||||||
|
delegate: Option<bool>,
|
||||||
|
pids: Option<Vec<u32>>,
|
||||||
|
timeout_stop_usec: Option<u64>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PropertiesBuilder {
|
||||||
|
pub fn default_cgroup(slice: &str, unit: &str) -> Self {
|
||||||
|
let mut builder = Self::default()
|
||||||
|
.cpu_accounting(true)
|
||||||
|
.memory_accounting(true)
|
||||||
|
.task_accounting(true)
|
||||||
|
.io_accounting(true)
|
||||||
|
.default_dependencies(false)
|
||||||
|
.description(format!("{} {}:{}", DEFAULT_DESCRIPTION, slice, unit));
|
||||||
|
|
||||||
|
if is_slice_unit(unit) {
|
||||||
|
// If we create a slice, the parent is defined via a Wants=.
|
||||||
|
builder = builder.wants(slice.to_string());
|
||||||
|
} else {
|
||||||
|
// Otherwise it's a scope, which we put into a Slice=.
|
||||||
|
builder = builder.slice(slice.to_string());
|
||||||
|
// Assume scopes always support delegation (supported since systemd v218).
|
||||||
|
builder = builder.delegate(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
builder
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn cpu_accounting(mut self, enabled: bool) -> Self {
|
||||||
|
self.cpu_accounting = Some(enabled);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn memory_accounting(mut self, enabled: bool) -> Self {
|
||||||
|
self.memory_accounting = Some(enabled);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn task_accounting(mut self, enabled: bool) -> Self {
|
||||||
|
self.task_accounting = Some(enabled);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn io_accounting(mut self, enabled: bool) -> Self {
|
||||||
|
self.io_accounting = Some(enabled);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn default_dependencies(mut self, enabled: bool) -> Self {
|
||||||
|
self.default_dependencies = Some(enabled);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn description(mut self, desc: String) -> Self {
|
||||||
|
self.description = Some(desc);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn wants(mut self, wants: String) -> Self {
|
||||||
|
self.wants = Some(wants);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn slice(mut self, slice: String) -> Self {
|
||||||
|
self.slice = Some(slice);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn delegate(mut self, enabled: bool) -> Self {
|
||||||
|
self.delegate = Some(enabled);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn pids(mut self, pids: Vec<u32>) -> Self {
|
||||||
|
self.pids = Some(pids);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn timeout_stop_usec(mut self, timeout: u64) -> Self {
|
||||||
|
self.timeout_stop_usec = Some(timeout);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn build(self) -> Vec<Property<'static>> {
|
||||||
|
let mut props = vec![];
|
||||||
|
|
||||||
|
if let Some(cpu_accounting) = self.cpu_accounting {
|
||||||
|
props.push((CPU_ACCOUNTING, ZbusValue::Bool(cpu_accounting)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(memory_accounting) = self.memory_accounting {
|
||||||
|
props.push((MEMORY_ACCOUNTING, ZbusValue::Bool(memory_accounting)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(task_accounting) = self.task_accounting {
|
||||||
|
props.push((TASKS_ACCOUNTING, ZbusValue::Bool(task_accounting)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(io_accounting) = self.io_accounting {
|
||||||
|
if hierarchies::is_cgroup2_unified_mode() {
|
||||||
|
props.push((IO_ACCOUNTING, ZbusValue::Bool(io_accounting)));
|
||||||
|
} else {
|
||||||
|
props.push((BLOCK_IO_ACCOUNTING, ZbusValue::Bool(io_accounting)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(default_dependencies) = self.default_dependencies {
|
||||||
|
props.push((DEFAULT_DEPENDENCIES, ZbusValue::Bool(default_dependencies)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(description) = self.description {
|
||||||
|
props.push((DESCRIPTION, ZbusValue::Str(description.into())));
|
||||||
|
} else {
|
||||||
|
props.push((DESCRIPTION, ZbusValue::Str(DEFAULT_DESCRIPTION.into())));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(wants) = self.wants {
|
||||||
|
props.push((WANTS, ZbusValue::Str(wants.into())));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(slice) = self.slice {
|
||||||
|
props.push((SLICE, ZbusValue::Str(slice.into())));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(delegate) = self.delegate {
|
||||||
|
props.push((DELEGATE, ZbusValue::Bool(delegate)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(pids) = self.pids {
|
||||||
|
props.push((PIDS, ZbusValue::Array(pids.into())));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(timeout) = self.timeout_stop_usec {
|
||||||
|
props.push((TIMEOUT_STOP_USEC, ZbusValue::U64(timeout)));
|
||||||
|
}
|
||||||
|
|
||||||
|
props
|
||||||
|
}
|
||||||
|
}
|
||||||
101
src/systemd/utils.rs
Normal file
101
src/systemd/utils.rs
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
// Copyright (c) 2025 Ant Group
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
use crate::systemd::error::{Error, Result};
|
||||||
|
use crate::systemd::{SCOPE_SUFFIX, SLICE_SUFFIX};
|
||||||
|
|
||||||
|
/// Check if a systemd unit name is a slice unit.
|
||||||
|
pub fn is_slice_unit(name: &str) -> bool {
|
||||||
|
name.ends_with(SLICE_SUFFIX)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Check if a systemd unit name is a scope unit.
|
||||||
|
pub fn is_scope_unit(name: &str) -> bool {
|
||||||
|
name.ends_with(SCOPE_SUFFIX)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Expand a slice name to a full path in the filesystem.
|
||||||
|
///
|
||||||
|
/// # Arguments
|
||||||
|
///
|
||||||
|
/// * `slice` - A string slice that holds the slice name in the format
|
||||||
|
/// "xxx-yyy-zzz.slice".
|
||||||
|
///
|
||||||
|
/// # Returns
|
||||||
|
///
|
||||||
|
/// A string that represents the full path of the slice in the filesystem.
|
||||||
|
/// In the above case, the value would be
|
||||||
|
/// "xxx.slice/xxx-yyy.slice/xxx-yyy-zzz.slice".
|
||||||
|
pub fn expand_slice(slice: &str) -> Result<String> {
|
||||||
|
// Name has to end with ".slice", but can't be just ".slice".
|
||||||
|
if !slice.ends_with(SLICE_SUFFIX) || slice.len() < SLICE_SUFFIX.len() {
|
||||||
|
return Err(Error::InvalidArgument);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Path-separators are not allowed.
|
||||||
|
if slice.contains('/') {
|
||||||
|
return Err(Error::InvalidArgument);
|
||||||
|
}
|
||||||
|
|
||||||
|
let name = slice.trim_end_matches(SLICE_SUFFIX);
|
||||||
|
|
||||||
|
// If input was -.slice, we should just return root now
|
||||||
|
if name == "-" {
|
||||||
|
return Ok("".to_string());
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut slice_path = String::new();
|
||||||
|
let mut prefix = String::new();
|
||||||
|
for sub_slice in name.split('-') {
|
||||||
|
if sub_slice.is_empty() {
|
||||||
|
return Err(Error::InvalidArgument);
|
||||||
|
}
|
||||||
|
|
||||||
|
slice_path = format!("{}/{}{}{}", slice_path, prefix, sub_slice, SLICE_SUFFIX);
|
||||||
|
prefix = format!("{}{}-", prefix, sub_slice);
|
||||||
|
}
|
||||||
|
|
||||||
|
// We need a relative path, so remove the first slash.
|
||||||
|
slice_path.remove(0);
|
||||||
|
|
||||||
|
Ok(slice_path)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use crate::systemd::utils::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_is_slice_unit() {
|
||||||
|
assert!(is_slice_unit("test.slice"));
|
||||||
|
assert!(!is_slice_unit("test.scope"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_is_scope_unit() {
|
||||||
|
assert!(is_scope_unit("test.scope"));
|
||||||
|
assert!(!is_scope_unit("test.slice"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_expand_slice() {
|
||||||
|
assert_eq!(expand_slice("test.slice").unwrap(), "test.slice");
|
||||||
|
assert_eq!(
|
||||||
|
expand_slice("test-1.slice").unwrap(),
|
||||||
|
"test.slice/test-1.slice"
|
||||||
|
);
|
||||||
|
assert_eq!(
|
||||||
|
expand_slice("test-1-test-2.slice").unwrap(),
|
||||||
|
"test.slice/test-1.slice/test-1-test.slice/test-1-test-2.slice"
|
||||||
|
);
|
||||||
|
assert_eq!(
|
||||||
|
expand_slice("slice-slice.slice").unwrap(),
|
||||||
|
"slice.slice/slice-slice.slice"
|
||||||
|
);
|
||||||
|
assert_eq!(expand_slice("-.slice").unwrap(), "");
|
||||||
|
assert!(expand_slice("invalid/slice").is_err());
|
||||||
|
assert!(expand_slice("invalid-slice").is_err());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,24 +5,25 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
//! Some simple tests covering the builder pattern for control groups.
|
//! Some simple tests covering the builder pattern for control groups.
|
||||||
use cgroups_rs::blkio::*;
|
use cgroups_rs::fs::blkio::*;
|
||||||
use cgroups_rs::cgroup_builder::*;
|
use cgroups_rs::fs::cgroup_builder::*;
|
||||||
use cgroups_rs::cpu::*;
|
use cgroups_rs::fs::cpu::*;
|
||||||
use cgroups_rs::devices::*;
|
use cgroups_rs::fs::devices::*;
|
||||||
use cgroups_rs::hugetlb::*;
|
use cgroups_rs::fs::hugetlb::*;
|
||||||
use cgroups_rs::memory::*;
|
use cgroups_rs::fs::memory::*;
|
||||||
use cgroups_rs::net_cls::*;
|
use cgroups_rs::fs::net_cls::*;
|
||||||
use cgroups_rs::pid::*;
|
use cgroups_rs::fs::pid::*;
|
||||||
use cgroups_rs::*;
|
use cgroups_rs::fs::*;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
pub fn test_cpu_res_build() {
|
pub fn test_cpu_res_build() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg: Cgroup = CgroupBuilder::new("test_cpu_res_build")
|
let cg: Cgroup = CgroupBuilder::new("test_cpu_res_build")
|
||||||
.cpu()
|
.cpu()
|
||||||
.shares(85)
|
.shares(85)
|
||||||
.done()
|
.done()
|
||||||
.build(h);
|
.build(h)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
{
|
{
|
||||||
let cpu: &CpuController = cg.controller_of().unwrap();
|
let cpu: &CpuController = cg.controller_of().unwrap();
|
||||||
@@ -35,14 +36,15 @@ pub fn test_cpu_res_build() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
pub fn test_memory_res_build() {
|
pub fn test_memory_res_build() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg: Cgroup = CgroupBuilder::new("test_memory_res_build")
|
let cg: Cgroup = CgroupBuilder::new("test_memory_res_build")
|
||||||
.memory()
|
.memory()
|
||||||
.kernel_memory_limit(128 * 1024 * 1024)
|
.kernel_memory_limit(128 * 1024 * 1024)
|
||||||
.swappiness(70)
|
.swappiness(70)
|
||||||
.memory_hard_limit(1024 * 1024 * 1024)
|
.memory_hard_limit(1024 * 1024 * 1024)
|
||||||
.done()
|
.done()
|
||||||
.build(h);
|
.build(h)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
{
|
{
|
||||||
let c: &MemController = cg.controller_of().unwrap();
|
let c: &MemController = cg.controller_of().unwrap();
|
||||||
@@ -59,12 +61,13 @@ pub fn test_memory_res_build() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
pub fn test_pid_res_build() {
|
pub fn test_pid_res_build() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg: Cgroup = CgroupBuilder::new("test_pid_res_build")
|
let cg: Cgroup = CgroupBuilder::new("test_pid_res_build")
|
||||||
.pid()
|
.pid()
|
||||||
.maximum_number_of_processes(MaxValue::Value(123))
|
.maximum_number_of_processes(MaxValue::Value(123))
|
||||||
.done()
|
.done()
|
||||||
.build(h);
|
.build(h)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
{
|
{
|
||||||
let c: &PidController = cg.controller_of().unwrap();
|
let c: &PidController = cg.controller_of().unwrap();
|
||||||
@@ -78,12 +81,13 @@ pub fn test_pid_res_build() {
|
|||||||
#[test]
|
#[test]
|
||||||
#[ignore] // ignore this test for now, not sure why my kernel doesn't like it
|
#[ignore] // ignore this test for now, not sure why my kernel doesn't like it
|
||||||
pub fn test_devices_res_build() {
|
pub fn test_devices_res_build() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg: Cgroup = CgroupBuilder::new("test_devices_res_build")
|
let cg: Cgroup = CgroupBuilder::new("test_devices_res_build")
|
||||||
.devices()
|
.devices()
|
||||||
.device(1, 6, DeviceType::Char, true, vec![DevicePermissions::Read])
|
.device(1, 6, DeviceType::Char, true, vec![DevicePermissions::Read])
|
||||||
.done()
|
.done()
|
||||||
.build(h);
|
.build(h)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
{
|
{
|
||||||
let c: &DevicesController = cg.controller_of().unwrap();
|
let c: &DevicesController = cg.controller_of().unwrap();
|
||||||
@@ -104,7 +108,7 @@ pub fn test_devices_res_build() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
pub fn test_network_res_build() {
|
pub fn test_network_res_build() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
if h.v2() {
|
if h.v2() {
|
||||||
// FIXME add cases for v2
|
// FIXME add cases for v2
|
||||||
return;
|
return;
|
||||||
@@ -113,7 +117,8 @@ pub fn test_network_res_build() {
|
|||||||
.network()
|
.network()
|
||||||
.class_id(1337)
|
.class_id(1337)
|
||||||
.done()
|
.done()
|
||||||
.build(h);
|
.build(h)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
{
|
{
|
||||||
let c: &NetClsController = cg.controller_of().unwrap();
|
let c: &NetClsController = cg.controller_of().unwrap();
|
||||||
@@ -125,7 +130,7 @@ pub fn test_network_res_build() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
pub fn test_hugepages_res_build() {
|
pub fn test_hugepages_res_build() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
if h.v2() {
|
if h.v2() {
|
||||||
// FIXME add cases for v2
|
// FIXME add cases for v2
|
||||||
return;
|
return;
|
||||||
@@ -134,7 +139,8 @@ pub fn test_hugepages_res_build() {
|
|||||||
.hugepages()
|
.hugepages()
|
||||||
.limit("2MB".to_string(), 4 * 2 * 1024 * 1024)
|
.limit("2MB".to_string(), 4 * 2 * 1024 * 1024)
|
||||||
.done()
|
.done()
|
||||||
.build(h);
|
.build(h)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
{
|
{
|
||||||
let c: &HugeTlbController = cg.controller_of().unwrap();
|
let c: &HugeTlbController = cg.controller_of().unwrap();
|
||||||
@@ -147,12 +153,13 @@ pub fn test_hugepages_res_build() {
|
|||||||
#[test]
|
#[test]
|
||||||
#[ignore] // high version kernel not support `blkio.weight`
|
#[ignore] // high version kernel not support `blkio.weight`
|
||||||
pub fn test_blkio_res_build() {
|
pub fn test_blkio_res_build() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg: Cgroup = CgroupBuilder::new("test_blkio_res_build")
|
let cg: Cgroup = CgroupBuilder::new("test_blkio_res_build")
|
||||||
.blkio()
|
.blkio()
|
||||||
.weight(100)
|
.weight(100)
|
||||||
.done()
|
.done()
|
||||||
.build(h);
|
.build(h)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
{
|
{
|
||||||
let c: &BlkIoController = cg.controller_of().unwrap();
|
let c: &BlkIoController = cg.controller_of().unwrap();
|
||||||
|
|||||||
204
tests/cgroup.rs
204
tests/cgroup.rs
@@ -5,29 +5,62 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
//! Simple unit tests about the control groups system.
|
//! Simple unit tests about the control groups system.
|
||||||
use cgroups_rs::memory::MemController;
|
use std::process::Command;
|
||||||
use cgroups_rs::Controller;
|
use std::thread::sleep;
|
||||||
use cgroups_rs::{Cgroup, CgroupPid, Subsystem};
|
use std::time::Duration;
|
||||||
|
|
||||||
|
use cgroups_rs::fs::cgroup::{
|
||||||
|
CGROUP_MODE_DOMAIN, CGROUP_MODE_DOMAIN_INVALID, CGROUP_MODE_DOMAIN_THREADED,
|
||||||
|
CGROUP_MODE_THREADED,
|
||||||
|
};
|
||||||
|
use cgroups_rs::fs::memory::MemController;
|
||||||
|
use cgroups_rs::fs::Controller;
|
||||||
|
use cgroups_rs::fs::{Cgroup, Subsystem};
|
||||||
|
use cgroups_rs::CgroupPid;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_tasks_iterator() {
|
fn test_procs_iterator_cgroup() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let pid = libc::pid_t::from(nix::unistd::getpid()) as u64;
|
let pid = libc::pid_t::from(nix::unistd::getpid()) as u64;
|
||||||
let cg = Cgroup::new(h, String::from("test_tasks_iterator"));
|
let cg = Cgroup::new(h, String::from("test_procs_iterator_cgroup")).unwrap();
|
||||||
|
{
|
||||||
|
// Add a task to the control group.
|
||||||
|
cg.add_task_by_tgid(CgroupPid::from(pid)).unwrap();
|
||||||
|
|
||||||
|
let mut procs = cg.procs().into_iter();
|
||||||
|
// Verify that the task is indeed in the xcontrol group
|
||||||
|
assert_eq!(procs.next(), Some(CgroupPid::from(pid)));
|
||||||
|
assert_eq!(procs.next(), None);
|
||||||
|
|
||||||
|
// Now, try removing it.
|
||||||
|
cg.remove_task_by_tgid(CgroupPid::from(pid)).unwrap();
|
||||||
|
procs = cg.procs().into_iter();
|
||||||
|
|
||||||
|
// Verify that it was indeed removed.
|
||||||
|
assert_eq!(procs.next(), None);
|
||||||
|
}
|
||||||
|
cg.delete().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_tasks_iterator_cgroup_v1() {
|
||||||
|
if cgroups_rs::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
|
let pid = libc::pid_t::from(nix::unistd::getpid()) as u64;
|
||||||
|
let cg = Cgroup::new(h, String::from("test_tasks_iterator_cgroup_v1")).unwrap();
|
||||||
{
|
{
|
||||||
// Add a task to the control group.
|
// Add a task to the control group.
|
||||||
cg.add_task(CgroupPid::from(pid)).unwrap();
|
cg.add_task(CgroupPid::from(pid)).unwrap();
|
||||||
|
|
||||||
use std::{thread, time};
|
|
||||||
thread::sleep(time::Duration::from_millis(100));
|
|
||||||
|
|
||||||
let mut tasks = cg.tasks().into_iter();
|
let mut tasks = cg.tasks().into_iter();
|
||||||
// Verify that the task is indeed in the control group
|
// Verify that the task is indeed in the xcontrol group
|
||||||
assert_eq!(tasks.next(), Some(CgroupPid::from(pid)));
|
assert_eq!(tasks.next(), Some(CgroupPid::from(pid)));
|
||||||
assert_eq!(tasks.next(), None);
|
assert_eq!(tasks.next(), None);
|
||||||
|
|
||||||
// Now, try removing it.
|
// Now, try removing it.
|
||||||
cg.remove_task(CgroupPid::from(pid));
|
cg.remove_task(CgroupPid::from(pid)).unwrap();
|
||||||
tasks = cg.tasks().into_iter();
|
tasks = cg.tasks().into_iter();
|
||||||
|
|
||||||
// Verify that it was indeed removed.
|
// Verify that it was indeed removed.
|
||||||
@@ -37,11 +70,148 @@ fn test_tasks_iterator() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_cgroup_with_relative_paths() {
|
fn test_tasks_iterator_cgroup_threaded_mode() {
|
||||||
if cgroups_rs::hierarchies::is_cgroup2_unified_mode() {
|
if !cgroups_rs::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let pid = libc::pid_t::from(nix::unistd::getpid()) as u64;
|
||||||
|
let cg = Cgroup::new(
|
||||||
|
cgroups_rs::fs::hierarchies::auto(),
|
||||||
|
String::from("test_tasks_iterator_cgroup_threaded_mode"),
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
let cg_threaded_sub1 = Cgroup::new_with_specified_controllers(
|
||||||
|
cgroups_rs::fs::hierarchies::auto(),
|
||||||
|
String::from("test_tasks_iterator_cgroup_threaded_mode/threaded_sub1"),
|
||||||
|
Some(vec![String::from("cpuset"), String::from("cpu")]),
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
let cg_threaded_sub2 = Cgroup::new_with_specified_controllers(
|
||||||
|
cgroups_rs::fs::hierarchies::auto(),
|
||||||
|
String::from("test_tasks_iterator_cgroup_threaded_mode/threaded_sub2"),
|
||||||
|
Some(vec![String::from("cpuset"), String::from("cpu")]),
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
{
|
||||||
|
// Verify that cgroup type of the control group is domain mode.
|
||||||
|
assert_eq!(cg.get_cgroup_type().unwrap(), CGROUP_MODE_DOMAIN);
|
||||||
|
|
||||||
|
// Set cgroup type of the sub-control group is thread mode.
|
||||||
|
cg_threaded_sub1
|
||||||
|
.set_cgroup_type(CGROUP_MODE_THREADED)
|
||||||
|
.unwrap();
|
||||||
|
// Verify that cgroup type of the sub-control group is thread mode.
|
||||||
|
assert_eq!(
|
||||||
|
cg_threaded_sub1.get_cgroup_type().unwrap(),
|
||||||
|
CGROUP_MODE_THREADED
|
||||||
|
);
|
||||||
|
// Verify that the cgroup type of the sub-control group that does
|
||||||
|
// not set the cgroup type is domain invalid mode.
|
||||||
|
assert_eq!(
|
||||||
|
cg_threaded_sub2.get_cgroup_type().unwrap(),
|
||||||
|
CGROUP_MODE_DOMAIN_INVALID
|
||||||
|
);
|
||||||
|
// Verify whether the cgroup type of the parent control group of
|
||||||
|
// the control group whose cgroup type is set to thread mode is
|
||||||
|
// domain thread mode.
|
||||||
|
assert_eq!(cg.get_cgroup_type().unwrap(), CGROUP_MODE_DOMAIN_THREADED);
|
||||||
|
|
||||||
|
// Set cgroup type of the sub-control group is thread mode.
|
||||||
|
cg_threaded_sub2
|
||||||
|
.set_cgroup_type(CGROUP_MODE_THREADED)
|
||||||
|
.unwrap();
|
||||||
|
// Verify that cgroup type of the sub-control group is thread mode.
|
||||||
|
assert_eq!(
|
||||||
|
cg_threaded_sub2.get_cgroup_type().unwrap(),
|
||||||
|
CGROUP_MODE_THREADED
|
||||||
|
);
|
||||||
|
|
||||||
|
// Add a proc to the control group.
|
||||||
|
cg.add_task_by_tgid(CgroupPid::from(pid)).unwrap();
|
||||||
|
|
||||||
|
let mut procs = cg.procs().into_iter();
|
||||||
|
// Verify that the task is indeed in the x control group
|
||||||
|
assert_eq!(procs.next(), Some(CgroupPid::from(pid)));
|
||||||
|
assert_eq!(procs.next(), None);
|
||||||
|
|
||||||
|
// Add a task to the sub control group.
|
||||||
|
cg_threaded_sub1.add_task(CgroupPid::from(pid)).unwrap();
|
||||||
|
|
||||||
|
let mut tasks = cg_threaded_sub1.tasks().into_iter();
|
||||||
|
// Verify that the task is indeed in the xcontrol group
|
||||||
|
assert_eq!(tasks.next(), Some(CgroupPid::from(pid)));
|
||||||
|
assert_eq!(tasks.next(), None);
|
||||||
|
|
||||||
|
// Now, try move it to parent.
|
||||||
|
cg_threaded_sub1
|
||||||
|
.move_task_to_parent(CgroupPid::from(pid))
|
||||||
|
.unwrap();
|
||||||
|
tasks = cg_threaded_sub1.tasks().into_iter();
|
||||||
|
|
||||||
|
// Verify that it was indeed removed.
|
||||||
|
assert_eq!(tasks.next(), None);
|
||||||
|
|
||||||
|
// Now, try removing it.
|
||||||
|
cg.remove_task_by_tgid(CgroupPid::from(pid)).unwrap();
|
||||||
|
procs = cg.procs().into_iter();
|
||||||
|
|
||||||
|
// Verify that it was indeed removed.
|
||||||
|
assert_eq!(procs.next(), None);
|
||||||
|
}
|
||||||
|
cg_threaded_sub1.delete().unwrap();
|
||||||
|
cg_threaded_sub2.delete().unwrap();
|
||||||
|
cg.delete().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_kill_cgroup() {
|
||||||
|
if !cgroups_rs::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
|
let cg = Cgroup::new(h, String::from("test_kill_cgroup")).unwrap();
|
||||||
|
{
|
||||||
|
// Spawn a proc, don't want to getpid(2) here.
|
||||||
|
let mut child = Command::new("sleep").arg("infinity").spawn().unwrap();
|
||||||
|
cg.add_task_by_tgid(CgroupPid::from(child.id() as u64))
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let cg_procs = cg.procs();
|
||||||
|
assert_eq!(cg_procs.len(), 1_usize);
|
||||||
|
|
||||||
|
// Now kill and wait on the proc.
|
||||||
|
cg.kill().unwrap();
|
||||||
|
|
||||||
|
let mut tries = 0;
|
||||||
|
let status: Option<std::process::ExitStatus> = loop {
|
||||||
|
match child.try_wait() {
|
||||||
|
Ok(Some(status)) => {
|
||||||
|
break Some(status);
|
||||||
|
}
|
||||||
|
Ok(None) => {
|
||||||
|
if tries > 3 {
|
||||||
|
break None;
|
||||||
|
}
|
||||||
|
sleep(Duration::from_millis(100));
|
||||||
|
tries += 1;
|
||||||
|
}
|
||||||
|
Err(e) => {
|
||||||
|
child.kill().unwrap();
|
||||||
|
panic!("error attempting to wait: {}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
assert!(status.is_some());
|
||||||
|
}
|
||||||
|
cg.delete().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_cgroup_with_relative_paths() {
|
||||||
|
if cgroups_rs::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cgroup_root = h.root();
|
let cgroup_root = h.root();
|
||||||
let cgroup_name = "test_cgroup_with_relative_paths";
|
let cgroup_name = "test_cgroup_with_relative_paths";
|
||||||
|
|
||||||
@@ -79,11 +249,11 @@ fn test_cgroup_with_relative_paths() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_cgroup_v2() {
|
fn test_cgroup_v2() {
|
||||||
if !cgroups_rs::hierarchies::is_cgroup2_unified_mode() {
|
if !cgroups_rs::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_v2"));
|
let cg = Cgroup::new(h, String::from("test_v2")).unwrap();
|
||||||
|
|
||||||
let mem_controller: &MemController = cg.controller_of().unwrap();
|
let mem_controller: &MemController = cg.controller_of().unwrap();
|
||||||
let (mem, swp, rev) = (4 * 1024 * 1000, 2 * 1024 * 1000, 1024 * 1000);
|
let (mem, swp, rev) = (4 * 1024 * 1000, 2 * 1024 * 1000, 1024 * 1000);
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
//! Simple unit tests about the CPU control groups system.
|
//! Simple unit tests about the CPU control groups system.
|
||||||
use cgroups_rs::cpu::CpuController;
|
use cgroups_rs::fs::cpu::CpuController;
|
||||||
use cgroups_rs::Cgroup;
|
use cgroups_rs::fs::Cgroup;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_cfs_quota_and_periods() {
|
fn test_cfs_quota_and_periods() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_cfs_quota_and_periods"));
|
let cg = Cgroup::new(h, String::from("test_cfs_quota_and_periods")).unwrap();
|
||||||
|
|
||||||
let cpu_controller: &CpuController = cg.controller_of().unwrap();
|
let cpu_controller: &CpuController = cg.controller_of().unwrap();
|
||||||
|
|
||||||
|
|||||||
@@ -3,17 +3,17 @@
|
|||||||
//
|
//
|
||||||
// SPDX-License-Identifier: Apache-2.0 or MIT
|
// SPDX-License-Identifier: Apache-2.0 or MIT
|
||||||
//
|
//
|
||||||
|
|
||||||
use cgroups_rs::cpuset::CpuSetController;
|
|
||||||
use cgroups_rs::error::ErrorKind;
|
|
||||||
use cgroups_rs::{Cgroup, CgroupPid};
|
|
||||||
|
|
||||||
use std::fs;
|
use std::fs;
|
||||||
|
|
||||||
|
use cgroups_rs::fs::cpuset::CpuSetController;
|
||||||
|
use cgroups_rs::fs::error::ErrorKind;
|
||||||
|
use cgroups_rs::fs::Cgroup;
|
||||||
|
use cgroups_rs::CgroupPid;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_cpuset_memory_pressure_root_cg() {
|
fn test_cpuset_memory_pressure_root_cg() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_cpuset_memory_pressure_root_cg"));
|
let cg = Cgroup::new(h, String::from("test_cpuset_memory_pressure_root_cg")).unwrap();
|
||||||
{
|
{
|
||||||
let cpuset: &CpuSetController = cg.controller_of().unwrap();
|
let cpuset: &CpuSetController = cg.controller_of().unwrap();
|
||||||
|
|
||||||
@@ -26,8 +26,8 @@ fn test_cpuset_memory_pressure_root_cg() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_cpuset_set_cpus() {
|
fn test_cpuset_set_cpus() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_cpuset_set_cpus"));
|
let cg = Cgroup::new(h, String::from("test_cpuset_set_cpus")).unwrap();
|
||||||
{
|
{
|
||||||
let cpuset: &CpuSetController = cg.controller_of().unwrap();
|
let cpuset: &CpuSetController = cg.controller_of().unwrap();
|
||||||
|
|
||||||
@@ -63,8 +63,8 @@ fn test_cpuset_set_cpus() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_cpuset_set_cpus_add_task() {
|
fn test_cpuset_set_cpus_add_task() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_cpuset_set_cpus_add_task/sub-dir"));
|
let cg = Cgroup::new(h, String::from("test_cpuset_set_cpus_add_task/sub-dir")).unwrap();
|
||||||
|
|
||||||
let cpuset: &CpuSetController = cg.controller_of().unwrap();
|
let cpuset: &CpuSetController = cg.controller_of().unwrap();
|
||||||
let set = cpuset.cpuset();
|
let set = cpuset.cpuset();
|
||||||
@@ -77,13 +77,13 @@ fn test_cpuset_set_cpus_add_task() {
|
|||||||
|
|
||||||
// Add a task to the control group.
|
// Add a task to the control group.
|
||||||
let pid_i = libc::pid_t::from(nix::unistd::getpid()) as u64;
|
let pid_i = libc::pid_t::from(nix::unistd::getpid()) as u64;
|
||||||
let _ = cg.add_task(CgroupPid::from(pid_i));
|
let _ = cg.add_task_by_tgid(CgroupPid::from(pid_i));
|
||||||
let tasks = cg.tasks();
|
let tasks = cg.tasks();
|
||||||
assert!(!tasks.is_empty());
|
assert!(!tasks.is_empty());
|
||||||
println!("tasks after added: {:?}", tasks);
|
println!("tasks after added: {:?}", tasks);
|
||||||
|
|
||||||
// remove task
|
// remove task
|
||||||
cg.remove_task(CgroupPid::from(pid_i));
|
cg.remove_task_by_tgid(CgroupPid::from(pid_i)).unwrap();
|
||||||
let tasks = cg.tasks();
|
let tasks = cg.tasks();
|
||||||
println!("tasks after deleted: {:?}", tasks);
|
println!("tasks after deleted: {:?}", tasks);
|
||||||
assert_eq!(0, tasks.len());
|
assert_eq!(0, tasks.len());
|
||||||
|
|||||||
@@ -6,18 +6,18 @@
|
|||||||
|
|
||||||
//! Integration tests about the devices subsystem
|
//! Integration tests about the devices subsystem
|
||||||
|
|
||||||
use cgroups_rs::devices::{DevicePermissions, DeviceType, DevicesController};
|
use cgroups_rs::fs::devices::{DevicePermissions, DeviceType, DevicesController};
|
||||||
use cgroups_rs::{Cgroup, DeviceResource};
|
use cgroups_rs::fs::{Cgroup, DeviceResource};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_devices_parsing() {
|
fn test_devices_parsing() {
|
||||||
// now only v2
|
// now only v2
|
||||||
if cgroups_rs::hierarchies::is_cgroup2_unified_mode() {
|
if cgroups_rs::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_devices_parsing"));
|
let cg = Cgroup::new(h, String::from("test_devices_parsing")).unwrap();
|
||||||
{
|
{
|
||||||
let devices: &DevicesController = cg.controller_of().unwrap();
|
let devices: &DevicesController = cg.controller_of().unwrap();
|
||||||
|
|
||||||
|
|||||||
@@ -4,20 +4,20 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
//! Integration tests about the hugetlb subsystem
|
//! Integration tests about the hugetlb subsystem
|
||||||
use cgroups_rs::error::*;
|
use cgroups_rs::fs::error::*;
|
||||||
use cgroups_rs::hugetlb::{self, HugeTlbController};
|
use cgroups_rs::fs::hugetlb::{self, HugeTlbController};
|
||||||
use cgroups_rs::Cgroup;
|
use cgroups_rs::fs::Cgroup;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_hugetlb_sizes() {
|
fn test_hugetlb_sizes() {
|
||||||
// now only v2
|
// now only v2
|
||||||
if cgroups_rs::hierarchies::is_cgroup2_unified_mode() {
|
if cgroups_rs::fs::hierarchies::is_cgroup2_unified_mode() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_hugetlb_sizes"));
|
let cg = Cgroup::new(h, String::from("test_hugetlb_sizes")).unwrap();
|
||||||
{
|
{
|
||||||
let hugetlb_controller: &HugeTlbController = cg.controller_of().unwrap();
|
let hugetlb_controller: &HugeTlbController = cg.controller_of().unwrap();
|
||||||
let _ = hugetlb_controller.get_sizes();
|
let _ = hugetlb_controller.get_sizes();
|
||||||
|
|||||||
@@ -4,14 +4,13 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
//! Integration tests about the hugetlb subsystem
|
//! Integration tests about the hugetlb subsystem
|
||||||
use cgroups_rs::memory::{MemController, SetMemory};
|
use cgroups_rs::fs::memory::{MemController, SetMemory};
|
||||||
use cgroups_rs::Controller;
|
use cgroups_rs::fs::{Cgroup, Controller, MaxValue};
|
||||||
use cgroups_rs::{Cgroup, MaxValue};
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_disable_oom_killer() {
|
fn test_disable_oom_killer() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_disable_oom_killer"));
|
let cg = Cgroup::new(h, String::from("test_disable_oom_killer")).unwrap();
|
||||||
{
|
{
|
||||||
let mem_controller: &MemController = cg.controller_of().unwrap();
|
let mem_controller: &MemController = cg.controller_of().unwrap();
|
||||||
|
|
||||||
@@ -35,12 +34,12 @@ fn test_disable_oom_killer() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn set_kmem_limit_v1() {
|
fn set_kmem_limit_v1() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
if h.v2() {
|
if h.v2() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let cg = Cgroup::new(h, String::from("set_kmem_limit_v1"));
|
let cg = Cgroup::new(h, String::from("set_kmem_limit_v1")).unwrap();
|
||||||
{
|
{
|
||||||
let mem_controller: &MemController = cg.controller_of().unwrap();
|
let mem_controller: &MemController = cg.controller_of().unwrap();
|
||||||
mem_controller.set_kmem_limit(1).unwrap();
|
mem_controller.set_kmem_limit(1).unwrap();
|
||||||
@@ -50,12 +49,12 @@ fn set_kmem_limit_v1() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn set_mem_v2() {
|
fn set_mem_v2() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
if !h.v2() {
|
if !h.v2() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let cg = Cgroup::new(h, String::from("set_mem_v2"));
|
let cg = Cgroup::new(h, String::from("set_mem_v2")).unwrap();
|
||||||
{
|
{
|
||||||
let mem_controller: &MemController = cg.controller_of().unwrap();
|
let mem_controller: &MemController = cg.controller_of().unwrap();
|
||||||
|
|
||||||
|
|||||||
@@ -5,19 +5,16 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
//! Integration tests about the pids subsystem
|
//! Integration tests about the pids subsystem
|
||||||
use cgroups_rs::pid::PidController;
|
use cgroups_rs::fs::pid::PidController;
|
||||||
use cgroups_rs::Controller;
|
use cgroups_rs::fs::{Cgroup, Controller, MaxValue};
|
||||||
use cgroups_rs::{Cgroup, MaxValue};
|
use libc::pid_t;
|
||||||
|
|
||||||
use nix::sys::wait::{waitpid, WaitStatus};
|
use nix::sys::wait::{waitpid, WaitStatus};
|
||||||
use nix::unistd::{fork, ForkResult};
|
use nix::unistd::{fork, ForkResult};
|
||||||
|
|
||||||
use libc::pid_t;
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn create_and_delete_cgroup() {
|
fn create_and_delete_cgroup() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("create_and_delete_cgroup"));
|
let cg = Cgroup::new(h, String::from("create_and_delete_cgroup")).unwrap();
|
||||||
{
|
{
|
||||||
let pidcontroller: &PidController = cg.controller_of().unwrap();
|
let pidcontroller: &PidController = cg.controller_of().unwrap();
|
||||||
pidcontroller.set_pid_max(MaxValue::Value(1337)).unwrap();
|
pidcontroller.set_pid_max(MaxValue::Value(1337)).unwrap();
|
||||||
@@ -30,8 +27,8 @@ fn create_and_delete_cgroup() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_pids_current_is_zero() {
|
fn test_pids_current_is_zero() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_pids_current_is_zero"));
|
let cg = Cgroup::new(h, String::from("test_pids_current_is_zero")).unwrap();
|
||||||
{
|
{
|
||||||
let pidcontroller: &PidController = cg.controller_of().unwrap();
|
let pidcontroller: &PidController = cg.controller_of().unwrap();
|
||||||
let current = pidcontroller.get_pid_current();
|
let current = pidcontroller.get_pid_current();
|
||||||
@@ -42,8 +39,8 @@ fn test_pids_current_is_zero() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_pids_events_is_zero() {
|
fn test_pids_events_is_zero() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_pids_events_is_zero"));
|
let cg = Cgroup::new(h, String::from("test_pids_events_is_zero")).unwrap();
|
||||||
{
|
{
|
||||||
let pidcontroller: &PidController = cg.controller_of().unwrap();
|
let pidcontroller: &PidController = cg.controller_of().unwrap();
|
||||||
let events = pidcontroller.get_pid_events();
|
let events = pidcontroller.get_pid_events();
|
||||||
@@ -55,8 +52,8 @@ fn test_pids_events_is_zero() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_pid_events_is_not_zero() {
|
fn test_pid_events_is_not_zero() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("test_pid_events_is_not_zero"));
|
let cg = Cgroup::new(h, String::from("test_pid_events_is_not_zero")).unwrap();
|
||||||
{
|
{
|
||||||
let pids: &PidController = cg.controller_of().unwrap();
|
let pids: &PidController = cg.controller_of().unwrap();
|
||||||
let before = pids.get_pid_events();
|
let before = pids.get_pid_events();
|
||||||
@@ -65,7 +62,7 @@ fn test_pid_events_is_not_zero() {
|
|||||||
match unsafe { fork() } {
|
match unsafe { fork() } {
|
||||||
Ok(ForkResult::Parent { child, .. }) => {
|
Ok(ForkResult::Parent { child, .. }) => {
|
||||||
// move the process into the control group
|
// move the process into the control group
|
||||||
let _ = pids.add_task(&(pid_t::from(child) as u64).into());
|
let _ = pids.add_task_by_tgid(&(pid_t::from(child) as u64).into());
|
||||||
|
|
||||||
println!("added task to cg: {:?}", child);
|
println!("added task to cg: {:?}", child);
|
||||||
|
|
||||||
|
|||||||
@@ -5,13 +5,13 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
//! Integration test about setting resources using `apply()`
|
//! Integration test about setting resources using `apply()`
|
||||||
use cgroups_rs::pid::PidController;
|
use cgroups_rs::fs::pid::PidController;
|
||||||
use cgroups_rs::{Cgroup, MaxValue, PidResources, Resources};
|
use cgroups_rs::fs::{Cgroup, MaxValue, PidResources, Resources};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn pid_resources() {
|
fn pid_resources() {
|
||||||
let h = cgroups_rs::hierarchies::auto();
|
let h = cgroups_rs::fs::hierarchies::auto();
|
||||||
let cg = Cgroup::new(h, String::from("pid_resources"));
|
let cg = Cgroup::new(h, String::from("pid_resources")).unwrap();
|
||||||
{
|
{
|
||||||
let res = Resources {
|
let res = Resources {
|
||||||
pid: PidResources {
|
pid: PidResources {
|
||||||
|
|||||||
Reference in New Issue
Block a user