61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
// +build linux
|
|
|
|
package fingerprint
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/opencontainers/runc/libcontainer/cgroups"
|
|
)
|
|
|
|
const (
|
|
cgroupAvailable = "available"
|
|
)
|
|
|
|
// FindCgroupMountpointDir is used to find the cgroup mount point on a Linux
|
|
// system.
|
|
func FindCgroupMountpointDir() (string, error) {
|
|
mount, err := cgroups.FindCgroupMountpointDir()
|
|
if err != nil {
|
|
switch e := err.(type) {
|
|
case *cgroups.NotFoundError:
|
|
// It's okay if the mount point is not discovered
|
|
return "", nil
|
|
default:
|
|
// All other errors are passed back as is
|
|
return "", e
|
|
}
|
|
}
|
|
return mount, nil
|
|
}
|
|
|
|
// Fingerprint tries to find a valid cgroup mount point
|
|
func (f *CGroupFingerprint) Fingerprint(req *FingerprintRequest, resp *FingerprintResponse) error {
|
|
mount, err := f.mountPointDetector.MountPoint()
|
|
if err != nil {
|
|
f.clearCGroupAttributes(resp)
|
|
return fmt.Errorf("Failed to discover cgroup mount point: %s", err)
|
|
}
|
|
|
|
// Check if a cgroup mount point was found
|
|
if mount == "" {
|
|
|
|
f.clearCGroupAttributes(resp)
|
|
|
|
if f.lastState == cgroupAvailable {
|
|
f.logger.Info("cgroups are unavailable")
|
|
}
|
|
f.lastState = cgroupUnavailable
|
|
return nil
|
|
}
|
|
|
|
resp.AddAttribute("unique.cgroup.mountpoint", mount)
|
|
resp.Detected = true
|
|
|
|
if f.lastState == cgroupUnavailable {
|
|
f.logger.Info("cgroups are available")
|
|
}
|
|
f.lastState = cgroupAvailable
|
|
return nil
|
|
}
|