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
|
// +build !windows
package utils
import (
"fmt"
"os"
"os/exec"
"os/user"
"strconv"
"syscall"
"github.com/spiral/errors"
)
// 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 {
const op = errors.Op("execute_from_user")
usr, err := user.Lookup(u)
if err != nil {
return errors.E(op, err)
}
usrI32, err := strconv.ParseInt(usr.Uid, 10, 32)
if err != nil {
return errors.E(op, err)
}
grI32, err := strconv.ParseInt(usr.Gid, 10, 32)
if err != nil {
return errors.E(op, 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 errors.E(op, errors.Errorf("failed to stat /proc/self/ns/user: %v", err))
}
cmd.SysProcAttr.Credential = &syscall.Credential{
Uid: uint32(usrI32),
Gid: uint32(grI32),
}
return nil
}
|