This refines the check for determining whether exec will succeed to work when an error occurs. This check previously relied on the `Ref` being populated in the result context but this would only happen if we were paused from a breakpoint or by stepping. An error would not fill in this field. The check is now refined to use the new gateway filesystem exec API so we can create the container and then check even if we don't have a returned gateway reference. The logic to determine which mount to check has also been moved. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
290 lines
5.9 KiB
Go
290 lines
5.9 KiB
Go
package dap
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/docker/buildx/build"
|
|
"github.com/docker/buildx/util/ioset"
|
|
"github.com/docker/cli/cli-plugins/metadata"
|
|
"github.com/google/go-dap"
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/sync/errgroup"
|
|
"golang.org/x/sync/semaphore"
|
|
)
|
|
|
|
type shell struct {
|
|
// SocketPath is set on the first time Init is invoked
|
|
// and stays that way.
|
|
SocketPath string
|
|
|
|
// Locks access to the session from the debug adapter.
|
|
// Only one debug thread can access the shell at a time.
|
|
sem *semaphore.Weighted
|
|
|
|
// Initialized once per shell and reused.
|
|
once sync.Once
|
|
err error
|
|
l net.Listener
|
|
eg *errgroup.Group
|
|
|
|
// For the specific session.
|
|
fwd *ioset.Forwarder
|
|
connected chan struct{}
|
|
mu sync.RWMutex
|
|
}
|
|
|
|
func newShell() *shell {
|
|
sh := &shell{
|
|
sem: semaphore.NewWeighted(1),
|
|
}
|
|
sh.resetSession()
|
|
return sh
|
|
}
|
|
|
|
func (s *shell) resetSession() {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
|
|
s.fwd = nil
|
|
s.connected = make(chan struct{})
|
|
}
|
|
|
|
// Init initializes the shell for connections on the client side.
|
|
// Attach will block until the terminal has been initialized.
|
|
func (s *shell) Init() error {
|
|
return s.listen()
|
|
}
|
|
|
|
func (s *shell) listen() error {
|
|
s.once.Do(func() {
|
|
var dir string
|
|
dir, s.err = os.MkdirTemp("", "buildx-dap-exec")
|
|
if s.err != nil {
|
|
return
|
|
}
|
|
defer func() {
|
|
if s.err != nil {
|
|
os.RemoveAll(dir)
|
|
}
|
|
}()
|
|
s.SocketPath = filepath.Join(dir, "s.sock")
|
|
|
|
lc := net.ListenConfig{}
|
|
s.l, s.err = lc.Listen(context.Background(), "unix", s.SocketPath)
|
|
if s.err != nil {
|
|
return
|
|
}
|
|
|
|
s.eg, _ = errgroup.WithContext(context.Background())
|
|
s.eg.Go(s.acceptLoop)
|
|
})
|
|
return s.err
|
|
}
|
|
|
|
func (s *shell) acceptLoop() error {
|
|
for {
|
|
if err := s.accept(); err != nil {
|
|
if errors.Is(err, net.ErrClosed) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *shell) accept() error {
|
|
conn, err := s.l.Accept()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
|
|
if s.fwd != nil {
|
|
writeLine(conn, "Error: Already connected to exec instance.")
|
|
conn.Close()
|
|
return nil
|
|
}
|
|
|
|
// Set the input of the forwarder to the connection.
|
|
s.fwd = ioset.NewForwarder()
|
|
s.fwd.SetIn(&ioset.In{
|
|
Stdin: io.NopCloser(conn),
|
|
Stdout: conn,
|
|
Stderr: nopCloser{conn},
|
|
})
|
|
|
|
close(s.connected)
|
|
writeLine(conn, "Attached to build process.")
|
|
return nil
|
|
}
|
|
|
|
// Attach will attach the given thread to the shell.
|
|
// Only one container can attach to a shell at any given time.
|
|
// Other attaches will block until the context is canceled or it is
|
|
// able to reserve the shell for its own use.
|
|
//
|
|
// This method is intended to be called by paused threads.
|
|
func (s *shell) Attach(ctx context.Context, t *thread) {
|
|
rCtx := t.rCtx
|
|
if rCtx == nil {
|
|
return
|
|
}
|
|
|
|
var f dap.StackFrame
|
|
if len(t.stackTrace) > 0 {
|
|
f = t.frames[t.stackTrace[0]].StackFrame
|
|
}
|
|
|
|
cfg := &build.InvokeConfig{Tty: true}
|
|
if len(cfg.Entrypoint) == 0 && len(cfg.Cmd) == 0 {
|
|
cfg.Entrypoint = []string{"/bin/sh"} // launch shell by default
|
|
cfg.Cmd = []string{}
|
|
cfg.NoCmd = false
|
|
}
|
|
|
|
for {
|
|
if err := s.attach(ctx, f, rCtx, cfg); err != nil {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *shell) wait(ctx context.Context) error {
|
|
s.mu.RLock()
|
|
connected := s.connected
|
|
s.mu.RUnlock()
|
|
|
|
select {
|
|
case <-connected:
|
|
return nil
|
|
case <-ctx.Done():
|
|
return context.Cause(ctx)
|
|
}
|
|
}
|
|
|
|
func (s *shell) attach(ctx context.Context, f dap.StackFrame, rCtx *build.ResultHandle, cfg *build.InvokeConfig) (retErr error) {
|
|
if err := s.wait(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
in, out := ioset.Pipe()
|
|
defer in.Close()
|
|
defer out.Close()
|
|
|
|
s.mu.RLock()
|
|
fwd := s.fwd
|
|
s.mu.RUnlock()
|
|
|
|
fwd.SetOut(&out)
|
|
defer func() {
|
|
if retErr != nil {
|
|
fwd.SetOut(nil)
|
|
}
|
|
}()
|
|
|
|
if err := s.sem.Acquire(ctx, 1); err != nil {
|
|
return err
|
|
}
|
|
defer s.sem.Release(1)
|
|
|
|
ctr, err := build.NewContainer(ctx, rCtx, cfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer ctr.Cancel()
|
|
|
|
// Check if the entrypoint is executable. If it isn't, don't bother
|
|
// trying to invoke.
|
|
if err := ctr.CanInvoke(ctx, cfg); err != nil {
|
|
writeLineF(in.Stdout, "Build container is not executable. (reason: %s)", err)
|
|
<-ctx.Done()
|
|
return context.Cause(ctx)
|
|
}
|
|
|
|
writeLineF(in.Stdout, "Running %s in build container from line %d.",
|
|
strings.Join(append(cfg.Entrypoint, cfg.Cmd...), " "),
|
|
f.Line,
|
|
)
|
|
|
|
writeLine(in.Stdout, "Changes to the container will be reset after the next step is executed.")
|
|
err = ctr.Exec(ctx, cfg, in.Stdin, in.Stdout, in.Stderr)
|
|
|
|
// Send newline to properly terminate the output.
|
|
writeLine(in.Stdout, "")
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fwd.Close()
|
|
s.resetSession()
|
|
return nil
|
|
}
|
|
|
|
// SendRunInTerminalRequest will send the request to the client to attach to
|
|
// the socket path that was created by Init. This is intended to be run
|
|
// from the adapter and interact directly with the client.
|
|
func (s *shell) SendRunInTerminalRequest(ctx Context) error {
|
|
var args []string
|
|
if docker := os.Getenv(metadata.ReexecEnvvar); docker != "" {
|
|
args = []string{docker, "buildx"}
|
|
} else if len(os.Args) > 0 {
|
|
args = []string{os.Args[0]}
|
|
} else {
|
|
return errors.New("cannot find exec target for buildx")
|
|
}
|
|
args = append(args, "dap", "attach", s.SocketPath)
|
|
|
|
req := &dap.RunInTerminalRequest{
|
|
Request: dap.Request{
|
|
Command: "runInTerminal",
|
|
},
|
|
Arguments: dap.RunInTerminalRequestArguments{
|
|
Kind: "integrated",
|
|
Args: args,
|
|
Env: map[string]any{
|
|
"BUILDX_EXPERIMENTAL": "1",
|
|
},
|
|
},
|
|
}
|
|
|
|
resp := ctx.Request(req)
|
|
if !resp.GetResponse().Success {
|
|
return errors.New(resp.GetResponse().Message)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type nopCloser struct {
|
|
io.Writer
|
|
}
|
|
|
|
func (nopCloser) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func writeLine(w io.Writer, msg string) {
|
|
if os.PathSeparator == '\\' {
|
|
fmt.Fprint(w, msg+"\r\n")
|
|
} else {
|
|
fmt.Fprintln(w, msg)
|
|
}
|
|
}
|
|
|
|
func writeLineF(w io.Writer, format string, a ...any) {
|
|
if os.PathSeparator == '\\' {
|
|
fmt.Fprintf(w, format+"\r\n", a...)
|
|
} else {
|
|
fmt.Fprintf(w, format+"\n", a...)
|
|
}
|
|
}
|