-
Notifications
You must be signed in to change notification settings - Fork 10
/
utils.go
53 lines (46 loc) · 1.21 KB
/
utils.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
package manager
import (
"os"
"path/filepath"
"strconv"
"github.com/cilium/ebpf"
)
// getEnv retrieves the environment variable key. If it does not exist it returns the default.
func getEnv(key string, dfault string, combineWith ...string) string {
value := os.Getenv(key)
if value == "" {
value = dfault
}
switch len(combineWith) {
case 0:
return value
case 1:
return filepath.Join(value, combineWith[0])
default:
all := make([]string, len(combineWith)+1)
all[0] = value
copy(all[1:], combineWith)
return filepath.Join(all...)
}
}
// hostProc returns joins the provided path with the host /proc directory
func hostProc(combineWith ...string) string {
return getEnv("HOST_PROC", "/proc", combineWith...)
}
// Getpid returns the current process ID in the host namespace if $HOST_PROC is defined, the pid in the current namespace
// otherwise
func Getpid() int {
p, err := os.Readlink(hostProc("/self"))
if err == nil {
if pid, err := strconv.ParseInt(p, 10, 32); err == nil {
return int(pid)
}
}
return os.Getpid()
}
// cleanupProgramSpec removes unused internal fields to free up some memory
func cleanupProgramSpec(spec *ebpf.ProgramSpec) {
if spec != nil {
spec.Instructions = nil
}
}