Skip to content

Commit 0d1587c

Browse files
committed
Add interface AddTask to control groups.
So that we can set tasks when we need. Signed-off-by: Lu Jingxiao <[email protected]>
1 parent 07683a6 commit 0d1587c

File tree

3 files changed

+82
-1
lines changed

3 files changed

+82
-1
lines changed

cgroup.go

+30
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,36 @@ func (c *cgroup) add(process Process) error {
137137
return nil
138138
}
139139

140+
// AddTask moves the provided tasks (threads) into the new cgroup
141+
func (c *cgroup) AddTask(process Process) error {
142+
if process.Pid <= 0 {
143+
return ErrInvalidPid
144+
}
145+
c.mu.Lock()
146+
defer c.mu.Unlock()
147+
if c.err != nil {
148+
return c.err
149+
}
150+
return c.addTask(process)
151+
}
152+
153+
func (c *cgroup) addTask(process Process) error {
154+
for _, s := range pathers(c.subsystems) {
155+
p, err := c.path(s.Name())
156+
if err != nil {
157+
return err
158+
}
159+
if err := ioutil.WriteFile(
160+
filepath.Join(s.Path(p), cgroupTasks),
161+
[]byte(strconv.Itoa(process.Pid)),
162+
defaultFilePerm,
163+
); err != nil {
164+
return err
165+
}
166+
}
167+
return nil
168+
}
169+
140170
// Delete will remove the control group from each of the subsystems registered
141171
func (c *cgroup) Delete() error {
142172
c.mu.Lock()

cgroup_test.go

+48
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,29 @@ func TestAdd(t *testing.T) {
101101
}
102102
}
103103

104+
func TestAddTask(t *testing.T) {
105+
mock, err := newMock()
106+
if err != nil {
107+
t.Fatal(err)
108+
}
109+
defer mock.delete()
110+
control, err := New(mock.hierarchy, StaticPath("test"), &specs.LinuxResources{})
111+
if err != nil {
112+
t.Error(err)
113+
return
114+
}
115+
if err := control.AddTask(Process{Pid: 1234}); err != nil {
116+
t.Error(err)
117+
return
118+
}
119+
for _, s := range Subsystems() {
120+
if err := checkTaskid(mock, filepath.Join(string(s), "test"), 1234); err != nil {
121+
t.Error(err)
122+
return
123+
}
124+
}
125+
}
126+
104127
func TestListPids(t *testing.T) {
105128
mock, err := newMock()
106129
if err != nil {
@@ -159,6 +182,21 @@ func checkPid(mock *mockCgroup, path string, expected int) error {
159182
return nil
160183
}
161184

185+
func checkTaskid(mock *mockCgroup, path string, expected int) error {
186+
data, err := readValue(mock, filepath.Join(path, cgroupTasks))
187+
if err != nil {
188+
return err
189+
}
190+
v, err := strconv.Atoi(string(data))
191+
if err != nil {
192+
return err
193+
}
194+
if v != expected {
195+
return fmt.Errorf("expectd task id %d but received %d", expected, v)
196+
}
197+
return nil
198+
}
199+
162200
func TestLoad(t *testing.T) {
163201
mock, err := newMock()
164202
if err != nil {
@@ -222,6 +260,16 @@ func TestCreateSubCgroup(t *testing.T) {
222260
return
223261
}
224262
}
263+
if err := sub.AddTask(Process{Pid: 5678}); err != nil {
264+
t.Error(err)
265+
return
266+
}
267+
for _, s := range Subsystems() {
268+
if err := checkTaskid(mock, filepath.Join(string(s), "test", "child"), 5678); err != nil {
269+
t.Error(err)
270+
return
271+
}
272+
}
225273
}
226274

227275
func TestFreezeThaw(t *testing.T) {

control.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424

2525
const (
2626
cgroupProcs = "cgroup.procs"
27+
cgroupTasks = "tasks"
2728
defaultDirPerm = 0755
2829
)
2930

@@ -48,8 +49,10 @@ type Process struct {
4849
type Cgroup interface {
4950
// New creates a new cgroup under the calling cgroup
5051
New(string, *specs.LinuxResources) (Cgroup, error)
51-
// Add adds a process to the cgroup
52+
// Add adds a process to the cgroup (cgroup.procs)
5253
Add(Process) error
54+
// AddTask adds a process to the cgroup (tasks)
55+
AddTask(Process) error
5356
// Delete removes the cgroup as a whole
5457
Delete() error
5558
// MoveTo moves all the processes under the calling cgroup to the provided one

0 commit comments

Comments
 (0)