-
Notifications
You must be signed in to change notification settings - Fork 337
/
setup.go
153 lines (136 loc) · 4.98 KB
/
setup.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package devcontainer
import (
"context"
"encoding/json"
"fmt"
"io"
"os"
"path/filepath"
"runtime"
"strings"
"github.com/loft-sh/devpod/pkg/agent"
"github.com/loft-sh/devpod/pkg/agent/tunnelserver"
"github.com/loft-sh/devpod/pkg/compress"
"github.com/loft-sh/devpod/pkg/devcontainer/config"
"github.com/loft-sh/devpod/pkg/devcontainer/sshtunnel"
"github.com/loft-sh/devpod/pkg/driver"
provider2 "github.com/loft-sh/devpod/pkg/provider"
"github.com/loft-sh/log"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
func (r *runner) setupContainer(
ctx context.Context,
rawConfig *config.DevContainerConfig,
containerDetails *config.ContainerDetails,
mergedConfig *config.MergedDevContainerConfig,
substitutionContext *config.SubstitutionContext,
) (*config.Result, error) {
// inject agent
err := agent.InjectAgent(ctx, func(ctx context.Context, command string, stdin io.Reader, stdout io.Writer, stderr io.Writer) error {
return r.Driver.CommandDevContainer(ctx, r.ID, "root", command, stdin, stdout, stderr)
}, false, agent.ContainerDevPodHelperLocation, agent.DefaultAgentDownloadURL(), false, r.Log)
if err != nil {
return nil, errors.Wrap(err, "inject agent")
}
r.Log.Debugf("Injected into container")
defer r.Log.Debugf("Done setting up container")
// compress info
result := &config.Result{
DevContainerConfigWithPath: &config.DevContainerConfigWithPath{
Config: rawConfig,
Path: getRelativeDevContainerJson(rawConfig.Origin, r.LocalWorkspaceFolder),
},
MergedConfig: mergedConfig,
SubstitutionContext: substitutionContext,
ContainerDetails: containerDetails,
}
// Ensure workspace mounts cannot escape their content folder for local agents in proxy mode.
// There _might_ be a use-case that requires an allowlist for certain directories
// when running as a standalone runner with docker-in-docker set up. Let's add it when/if the time comes.
if r.WorkspaceConfig.Agent.Local == "true" && r.WorkspaceConfig.CLIOptions.Proxy {
result.MergedConfig.Mounts = filterWorkspaceMounts(result.MergedConfig.Mounts, r.WorkspaceConfig.ContentFolder, r.Log)
}
marshalled, err := json.Marshal(result)
if err != nil {
return nil, err
}
compressed, err := compress.Compress(string(marshalled))
if err != nil {
return nil, err
}
// compress container workspace info
workspaceConfigRaw, err := json.Marshal(&provider2.ContainerWorkspaceInfo{
IDE: r.WorkspaceConfig.Workspace.IDE,
CLIOptions: r.WorkspaceConfig.CLIOptions,
Dockerless: r.WorkspaceConfig.Agent.Dockerless,
ContainerTimeout: r.WorkspaceConfig.Agent.ContainerTimeout,
})
if err != nil {
return nil, err
}
workspaceConfigCompressed, err := compress.Compress(string(workspaceConfigRaw))
if err != nil {
return nil, err
}
// check if docker driver
_, isDockerDriver := r.Driver.(driver.DockerDriver)
// ssh tunnel
sshTunnelCmd := fmt.Sprintf("'%s' helper ssh-server --stdio", agent.ContainerDevPodHelperLocation)
if r.Log.GetLevel() == logrus.DebugLevel {
sshTunnelCmd += " --debug"
}
// setup container
r.Log.Infof("Setup container...")
setupCommand := fmt.Sprintf("'%s' agent container setup --setup-info '%s' --container-workspace-info '%s'", agent.ContainerDevPodHelperLocation, compressed, workspaceConfigCompressed)
if runtime.GOOS == "linux" || !isDockerDriver {
setupCommand += " --chown-workspace"
}
if !isDockerDriver {
setupCommand += " --stream-mounts"
}
if r.WorkspaceConfig.Agent.InjectGitCredentials != "false" {
setupCommand += " --inject-git-credentials"
}
if r.Log.GetLevel() == logrus.DebugLevel {
setupCommand += " --debug"
}
agentInjectFunc := func(cancelCtx context.Context, sshCmd string, sshTunnelStdinReader, sshTunnelStdoutWriter *os.File, writer io.WriteCloser) error {
return r.Driver.CommandDevContainer(cancelCtx, r.ID, "root", sshCmd, sshTunnelStdinReader, sshTunnelStdoutWriter, writer)
}
return sshtunnel.ExecuteCommand(
ctx,
nil,
agentInjectFunc,
sshTunnelCmd,
setupCommand,
r.Log,
func(ctx context.Context, stdin io.WriteCloser, stdout io.Reader) (*config.Result, error) {
return tunnelserver.RunSetupServer(
ctx,
stdout,
stdin,
r.WorkspaceConfig.Agent.InjectGitCredentials != "false",
r.WorkspaceConfig.Agent.InjectDockerCredentials != "false",
config.GetMounts(result),
r.Log,
)
},
)
}
func getRelativeDevContainerJson(origin, localWorkspaceFolder string) string {
relativePath := strings.TrimPrefix(filepath.ToSlash(origin), filepath.ToSlash(localWorkspaceFolder))
return strings.TrimPrefix(relativePath, "/")
}
func filterWorkspaceMounts(mounts []*config.Mount, baseFolder string, log log.Logger) []*config.Mount {
retMounts := []*config.Mount{}
for _, mount := range mounts {
rel, err := filepath.Rel(baseFolder, mount.Source)
if err != nil || strings.Contains(rel, "..") {
log.Infof("Dropping workspace mount %s because it possibly accesses data outside of it's content directory", mount.Source)
continue
}
retMounts = append(retMounts, mount)
}
return retMounts
}