-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
cgroup.go
84 lines (70 loc) · 2.13 KB
/
cgroup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
Copyright 2019 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package handlers
import (
"log"
"os"
"strings"
"knative.dev/serving/test/types"
)
// cgroupV1Paths is the set of cgroups probed and returned to the
// client as Cgroups.
var cgroupV1Paths = []string{
"/sys/fs/cgroup/memory/memory.limit_in_bytes",
"/sys/fs/cgroup/cpu/cpu.cfs_period_us",
"/sys/fs/cgroup/cpu/cpu.cfs_quota_us",
"/sys/fs/cgroup/cpu/cpu.shares"}
var cgroupV2Paths = []string{
"/sys/fs/cgroup/memory.max",
"/sys/fs/cgroup/cpu.max",
"/sys/fs/cgroup/cpu.weight"}
var (
yes = true
no = false
)
func cgroupPaths() []string {
cgroupv2File := "/sys/fs/cgroup/cgroup.controllers"
_, err := os.Stat(cgroupv2File)
if err == nil {
log.Println("using cgroup v2")
return cgroupV2Paths
}
log.Println("using cgroup v1")
return cgroupV1Paths
}
func cgroups(paths ...string) []*types.Cgroup {
var cgroups []*types.Cgroup
for _, path := range paths {
if _, err := os.Stat(path); os.IsNotExist(err) {
cgroups = append(cgroups, &types.Cgroup{Name: path, Error: err.Error()})
continue
}
bc, err := os.ReadFile(path)
if err != nil {
cgroups = append(cgroups, &types.Cgroup{Name: path, Error: err.Error()})
continue
}
cs := strings.Trim(string(bc), "\n")
// Try to write to the Cgroup. We expect this to fail as a cheap
// method for read-only validation
newValue := []byte{'9'}
// #nosec G306
err = os.WriteFile(path, newValue, 0644)
if err != nil {
cgroups = append(cgroups, &types.Cgroup{Name: path, Value: &cs, ReadOnly: &yes})
} else {
cgroups = append(cgroups, &types.Cgroup{Name: path, Value: &cs, ReadOnly: &no})
}
}
return cgroups
}