-
Notifications
You must be signed in to change notification settings - Fork 767
Expand file tree
/
Copy pathparent_linux.go
More file actions
125 lines (108 loc) · 3.4 KB
/
parent_linux.go
File metadata and controls
125 lines (108 loc) · 3.4 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
Copyright The containerd 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 rootlessutil
import (
"errors"
"fmt"
"os"
"os/exec"
"path/filepath"
"strconv"
"strings"
"syscall"
"github.com/containerd/log"
"github.com/containerd/nerdctl/v2/pkg/internal/filesystem"
)
func IsRootlessParent() bool {
return os.Geteuid() != 0
}
func RootlessKitStateDir() (string, error) {
if v := os.Getenv("ROOTLESSKIT_STATE_DIR"); v != "" {
return v, nil
}
xdr, err := XDGRuntimeDir()
if err != nil {
return "", err
}
// "${XDG_RUNTIME_DIR}/containerd-rootless" is hardcoded in containerd-rootless.sh
stateDir := filepath.Join(xdr, "containerd-rootless")
if _, err := os.Stat(stateDir); err != nil {
return "", err
}
return stateDir, nil
}
func RootlessKitChildPid(stateDir string) (int, error) {
pidFilePath := filepath.Join(stateDir, "child_pid")
if _, err := os.Stat(pidFilePath); err != nil {
return 0, err
}
pidFileBytes, err := filesystem.ReadFile(pidFilePath)
if err != nil {
return 0, err
}
pidStr := strings.TrimSpace(string(pidFileBytes))
return strconv.Atoi(pidStr)
}
func ParentMain(hostGatewayIP string) error {
if !IsRootlessParent() {
return errors.New("should not be called when !IsRootlessParent()")
}
stateDir, err := RootlessKitStateDir()
log.L.Debugf("stateDir: %s", stateDir)
if err != nil {
return fmt.Errorf("rootless containerd not running? (hint: use `containerd-rootless-setuptool.sh install` to start rootless containerd): %w", err)
}
childPid, err := RootlessKitChildPid(stateDir)
if err != nil {
return err
}
detachedNetNSPath, err := detachedNetNS(stateDir)
if err != nil {
return err
}
detachNetNSMode := detachedNetNSPath != ""
log.L.Debugf("RootlessKit detach-netns mode: %v", detachNetNSMode)
// FIXME: remove dependency on `nsenter` binary
arg0, err := exec.LookPath("nsenter")
if err != nil {
return err
}
args := []string{arg0}
// Only append wd if we do have a working dir
// - https://github.com/rootless-containers/usernetes/pull/327
// - https://github.com/containerd/nerdctl/issues/3328
wd, err := os.Getwd()
if err != nil {
log.L.WithError(err).Warn("unable to determine working directory")
} else {
args = append(args, "-w"+wd)
os.Setenv("PWD", wd)
}
args = append(args, "--preserve-credentials",
"-m", "-U",
"-t", strconv.Itoa(childPid),
"-F", // no fork
)
if !detachNetNSMode {
args = append(args, "-n")
}
args = append(args, os.Args...)
log.L.Debugf("rootless parent main: executing %q with %v", arg0, args)
// Env vars corresponds to RootlessKit spec:
// https://github.com/rootless-containers/rootlesskit/tree/v0.13.1#environment-variables
os.Setenv("ROOTLESSKIT_STATE_DIR", stateDir)
os.Setenv("ROOTLESSKIT_PARENT_EUID", strconv.Itoa(os.Geteuid()))
os.Setenv("ROOTLESSKIT_PARENT_EGID", strconv.Itoa(os.Getegid()))
os.Setenv("NERDCTL_HOST_GATEWAY_IP", hostGatewayIP)
return syscall.Exec(arg0, args, os.Environ())
}