blob: 9eaf8a44343bf33f34c2130db4fda30956ce0cb6 (
plain)
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
|
// +build !windows
package osutil
import (
"fmt"
"os"
"os/exec"
"os/user"
"strconv"
"syscall"
)
// IsolateProcess change gpid for the process to avoid bypassing signals to php processes.
func IsolateProcess(cmd *exec.Cmd) {
cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true, Pgid: 0}
}
// ExecuteFromUser may work only if run RR under root user
func ExecuteFromUser(cmd *exec.Cmd, u string) error {
usr, err := user.Lookup(u)
if err != nil {
return err
}
usrI32, err := strconv.Atoi(usr.Uid)
if err != nil {
return err
}
grI32, err := strconv.Atoi(usr.Gid)
if err != nil {
return err
}
// For more information:
// https://www.man7.org/linux/man-pages/man7/user_namespaces.7.html
// https://www.man7.org/linux/man-pages/man7/namespaces.7.html
if _, err := os.Stat("/proc/self/ns/user"); err != nil {
if os.IsNotExist(err) {
return fmt.Errorf("kernel doesn't support user namespaces")
}
if os.IsPermission(err) {
return fmt.Errorf("unable to test user namespaces due to permissions")
}
return fmt.Errorf("failed to stat /proc/self/ns/user: %v", err)
}
cmd.SysProcAttr.Credential = &syscall.Credential{
Uid: uint32(usrI32),
Gid: uint32(grI32),
}
return nil
}
|