2023-01-17 20:59:04 +00:00
|
|
|
//go:build linux
|
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package memlimit
|
|
|
|
|
|
|
|
import (
|
2023-05-01 10:01:36 +01:00
|
|
|
"path/filepath"
|
|
|
|
|
2023-04-03 10:16:17 +01:00
|
|
|
"github.com/containerd/cgroups/v3"
|
|
|
|
"github.com/containerd/cgroups/v3/cgroup1"
|
|
|
|
"github.com/containerd/cgroups/v3/cgroup2"
|
2023-01-17 20:59:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
cgroupMountPoint = "/sys/fs/cgroup"
|
|
|
|
)
|
|
|
|
|
|
|
|
// FromCgroup returns the memory limit based on the cgroups version on this system.
|
|
|
|
func FromCgroup() (uint64, error) {
|
|
|
|
switch cgroups.Mode() {
|
|
|
|
case cgroups.Legacy:
|
|
|
|
return FromCgroupV1()
|
2023-05-01 10:01:36 +01:00
|
|
|
case cgroups.Hybrid:
|
|
|
|
return fromCgroupHybrid()
|
|
|
|
case cgroups.Unified:
|
2023-01-17 20:59:04 +00:00
|
|
|
return FromCgroupV2()
|
|
|
|
}
|
|
|
|
return 0, ErrNoCgroup
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromCgroupV1 returns the memory limit from the cgroup v1.
|
|
|
|
func FromCgroupV1() (uint64, error) {
|
2023-04-03 10:16:17 +01:00
|
|
|
cg, err := cgroup1.Load(cgroup1.RootPath, cgroup1.WithHiearchy(
|
|
|
|
cgroup1.SingleSubsystem(cgroup1.Default, cgroup1.Memory),
|
|
|
|
))
|
2023-01-17 20:59:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2023-04-03 10:16:17 +01:00
|
|
|
metrics, err := cg.Stat(cgroup1.IgnoreNotExist)
|
2023-01-17 20:59:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2023-05-01 10:01:36 +01:00
|
|
|
if limit := metrics.GetMemory().GetHierarchicalMemoryLimit(); limit != 0 {
|
|
|
|
return limit, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0, ErrNoLimit
|
|
|
|
}
|
|
|
|
|
|
|
|
// fromCgroupHybrid returns the memory limit from the cgroup v1 or v2.
|
|
|
|
// It checks the cgroup v2 first, and if it fails, it falls back to cgroup v1.
|
|
|
|
// TODO: make this function public in the next minor version.
|
|
|
|
func fromCgroupHybrid() (uint64, error) {
|
|
|
|
limit, err := fromCgroupV2(filepath.Join(cgroupMountPoint, "unified"))
|
|
|
|
if err == nil {
|
|
|
|
return limit, nil
|
|
|
|
} else if err != ErrNoLimit {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return FromCgroupV1()
|
2023-01-17 20:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FromCgroupV2 returns the memory limit from the cgroup v2.
|
|
|
|
func FromCgroupV2() (uint64, error) {
|
2023-05-01 10:01:36 +01:00
|
|
|
return fromCgroupV2(cgroupMountPoint)
|
|
|
|
}
|
|
|
|
|
|
|
|
func fromCgroupV2(mountPoint string) (uint64, error) {
|
2023-04-03 10:16:17 +01:00
|
|
|
path, err := cgroup2.NestedGroupPath("")
|
2023-01-17 20:59:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2023-05-01 10:01:36 +01:00
|
|
|
m, err := cgroup2.Load(path, cgroup2.WithMountpoint(mountPoint))
|
2023-01-17 20:59:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
stats, err := m.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2023-05-01 10:01:36 +01:00
|
|
|
if limit := stats.GetMemory().GetUsageLimit(); limit != 0 {
|
|
|
|
return limit, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0, ErrNoLimit
|
2023-01-17 20:59:04 +00:00
|
|
|
}
|