This rewrites the Go imports after switching to the new github org. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
		
			
				
	
	
		
			142 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			142 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package shim
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"encoding/json"
 | 
						|
	"fmt"
 | 
						|
	"io"
 | 
						|
	"os"
 | 
						|
	"path/filepath"
 | 
						|
	"sync"
 | 
						|
	"syscall"
 | 
						|
 | 
						|
	shimapi "github.com/containerd/containerd/api/services/shim"
 | 
						|
	"github.com/crosbymichael/console"
 | 
						|
	runc "github.com/crosbymichael/go-runc"
 | 
						|
	specs "github.com/opencontainers/runtime-spec/specs-go"
 | 
						|
	"github.com/tonistiigi/fifo"
 | 
						|
)
 | 
						|
 | 
						|
type execProcess struct {
 | 
						|
	sync.WaitGroup
 | 
						|
 | 
						|
	id      int
 | 
						|
	console console.Console
 | 
						|
	io      runc.IO
 | 
						|
	status  int
 | 
						|
	pid     int
 | 
						|
	closers []io.Closer
 | 
						|
 | 
						|
	parent *initProcess
 | 
						|
}
 | 
						|
 | 
						|
func newExecProcess(context context.Context, path string, r *shimapi.ExecRequest, parent *initProcess, id int) (process, error) {
 | 
						|
	e := &execProcess{
 | 
						|
		id:     id,
 | 
						|
		parent: parent,
 | 
						|
	}
 | 
						|
	var (
 | 
						|
		err     error
 | 
						|
		socket  *runc.ConsoleSocket
 | 
						|
		io      runc.IO
 | 
						|
		pidfile = filepath.Join(path, fmt.Sprintf("%d.pid", id))
 | 
						|
	)
 | 
						|
	if r.Terminal {
 | 
						|
		if socket, err = runc.NewConsoleSocket(filepath.Join(path, "pty.sock")); err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		defer os.Remove(socket.Path())
 | 
						|
	} else {
 | 
						|
		// TODO: get uid/gid
 | 
						|
		if io, err = runc.NewPipeIO(0, 0); err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		e.io = io
 | 
						|
	}
 | 
						|
	opts := &runc.ExecOpts{
 | 
						|
		PidFile:       pidfile,
 | 
						|
		ConsoleSocket: socket,
 | 
						|
		IO:            io,
 | 
						|
		Detach:        true,
 | 
						|
	}
 | 
						|
 | 
						|
	// process exec request
 | 
						|
	var spec specs.Process
 | 
						|
	if err := json.Unmarshal(r.Spec.Value, &spec); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	spec.Terminal = r.Terminal
 | 
						|
 | 
						|
	if err := parent.runc.Exec(context, parent.id, spec, opts); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if r.Stdin != "" {
 | 
						|
		sc, err := fifo.OpenFifo(context, r.Stdin, syscall.O_WRONLY|syscall.O_NONBLOCK, 0)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		e.closers = append(e.closers, sc)
 | 
						|
	}
 | 
						|
	if socket != nil {
 | 
						|
		console, err := socket.ReceiveMaster()
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		e.console = console
 | 
						|
		if err := copyConsole(context, console, r.Stdin, r.Stdout, r.Stderr, &e.WaitGroup); err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		if err := copyPipes(context, io, r.Stdin, r.Stdout, r.Stderr, &e.WaitGroup); err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
	}
 | 
						|
	pid, err := runc.ReadPidFile(opts.PidFile)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	e.pid = pid
 | 
						|
	return e, nil
 | 
						|
}
 | 
						|
 | 
						|
func rlimits(rr []*shimapi.Rlimit) (o []specs.LinuxRlimit) {
 | 
						|
	for _, r := range rr {
 | 
						|
		o = append(o, specs.LinuxRlimit{
 | 
						|
			Type: r.Type,
 | 
						|
			Hard: r.Hard,
 | 
						|
			Soft: r.Soft,
 | 
						|
		})
 | 
						|
	}
 | 
						|
	return o
 | 
						|
}
 | 
						|
 | 
						|
func (e *execProcess) Pid() int {
 | 
						|
	return e.pid
 | 
						|
}
 | 
						|
 | 
						|
func (e *execProcess) Status() int {
 | 
						|
	return e.status
 | 
						|
}
 | 
						|
 | 
						|
func (e *execProcess) Exited(status int) {
 | 
						|
	e.status = status
 | 
						|
	e.Wait()
 | 
						|
	if e.io != nil {
 | 
						|
		for _, c := range e.closers {
 | 
						|
			c.Close()
 | 
						|
		}
 | 
						|
		e.io.Close()
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (e *execProcess) Delete(ctx context.Context) error {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (e *execProcess) Resize(ws console.WinSize) error {
 | 
						|
	if e.console == nil {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
	return e.console.Resize(ws)
 | 
						|
}
 |