|
@@ -37,65 +37,28 @@ type data struct {
|
|
|
}
|
|
|
|
|
|
func Apply(c *cgroups.Cgroup, pid int) (cgroups.ActiveCgroup, error) {
|
|
|
- // We have two implementation of cgroups support, one is based on
|
|
|
- // systemd and the dbus api, and one is based on raw cgroup fs operations
|
|
|
- // following the pre-single-writer model docs at:
|
|
|
- // http://www.freedesktop.org/wiki/Software/systemd/PaxControlGroups/
|
|
|
- //
|
|
|
- // we can pick any subsystem to find the root
|
|
|
-
|
|
|
- cgroupRoot, err := cgroups.FindCgroupMountpoint("cpu")
|
|
|
+ d, err := getCgroupData(c, pid)
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
- cgroupRoot = filepath.Dir(cgroupRoot)
|
|
|
|
|
|
- if _, err := os.Stat(cgroupRoot); err != nil {
|
|
|
- return nil, fmt.Errorf("cgroups fs not found")
|
|
|
- }
|
|
|
-
|
|
|
- cgroup := c.Name
|
|
|
- if c.Parent != "" {
|
|
|
- cgroup = filepath.Join(c.Parent, cgroup)
|
|
|
- }
|
|
|
-
|
|
|
- d := &data{
|
|
|
- root: cgroupRoot,
|
|
|
- cgroup: cgroup,
|
|
|
- c: c,
|
|
|
- pid: pid,
|
|
|
- }
|
|
|
for _, sys := range subsystems {
|
|
|
if err := sys.Set(d); err != nil {
|
|
|
d.Cleanup()
|
|
|
return nil, err
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
return d, nil
|
|
|
}
|
|
|
|
|
|
func GetStats(c *cgroups.Cgroup) (*cgroups.Stats, error) {
|
|
|
stats := cgroups.NewStats()
|
|
|
- cgroupRoot, err := cgroups.FindCgroupMountpoint("cpu")
|
|
|
+
|
|
|
+ d, err := getCgroupData(c, 0)
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
- cgroupRoot = filepath.Dir(cgroupRoot)
|
|
|
-
|
|
|
- if _, err := os.Stat(cgroupRoot); err != nil {
|
|
|
- return nil, fmt.Errorf("cgroups fs not found")
|
|
|
- }
|
|
|
-
|
|
|
- cgroup := c.Name
|
|
|
- if c.Parent != "" {
|
|
|
- cgroup = filepath.Join(c.Parent, cgroup)
|
|
|
- }
|
|
|
-
|
|
|
- d := &data{
|
|
|
- root: cgroupRoot,
|
|
|
- cgroup: cgroup,
|
|
|
- c: c,
|
|
|
- }
|
|
|
|
|
|
for _, sys := range subsystems {
|
|
|
if err := sys.GetStats(d, stats); err != nil {
|
|
@@ -106,7 +69,37 @@ func GetStats(c *cgroups.Cgroup) (*cgroups.Stats, error) {
|
|
|
return stats, nil
|
|
|
}
|
|
|
|
|
|
+// Freeze toggles the container's freezer cgroup depending on the state
|
|
|
+// provided
|
|
|
+func Freeze(c *cgroups.Cgroup, state cgroups.FreezerState) error {
|
|
|
+ d, err := getCgroupData(c, 0)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ c.Freezer = state
|
|
|
+
|
|
|
+ freezer := subsystems["freezer"]
|
|
|
+
|
|
|
+ return freezer.Set(d)
|
|
|
+}
|
|
|
+
|
|
|
func GetPids(c *cgroups.Cgroup) ([]int, error) {
|
|
|
+ d, err := getCgroupData(c, 0)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+
|
|
|
+ dir, err := d.path("devices")
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+
|
|
|
+ return cgroups.ReadProcsFile(dir)
|
|
|
+}
|
|
|
+
|
|
|
+func getCgroupData(c *cgroups.Cgroup, pid int) (*data, error) {
|
|
|
+ // we can pick any subsystem to find the root
|
|
|
cgroupRoot, err := cgroups.FindCgroupMountpoint("cpu")
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
@@ -114,7 +107,7 @@ func GetPids(c *cgroups.Cgroup) ([]int, error) {
|
|
|
cgroupRoot = filepath.Dir(cgroupRoot)
|
|
|
|
|
|
if _, err := os.Stat(cgroupRoot); err != nil {
|
|
|
- return nil, fmt.Errorf("cgroup root %s not found", cgroupRoot)
|
|
|
+ return nil, fmt.Errorf("cgroups fs not found")
|
|
|
}
|
|
|
|
|
|
cgroup := c.Name
|
|
@@ -122,18 +115,12 @@ func GetPids(c *cgroups.Cgroup) ([]int, error) {
|
|
|
cgroup = filepath.Join(c.Parent, cgroup)
|
|
|
}
|
|
|
|
|
|
- d := &data{
|
|
|
+ return &data{
|
|
|
root: cgroupRoot,
|
|
|
cgroup: cgroup,
|
|
|
c: c,
|
|
|
- }
|
|
|
-
|
|
|
- dir, err := d.path("devices")
|
|
|
- if err != nil {
|
|
|
- return nil, err
|
|
|
- }
|
|
|
-
|
|
|
- return cgroups.ReadProcsFile(dir)
|
|
|
+ pid: pid,
|
|
|
+ }, nil
|
|
|
}
|
|
|
|
|
|
func (raw *data) parent(subsystem string) (string, error) {
|