mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-26 18:44:47 +01:00
Add the Makefile target of building shimv2. Fixes: #485 Signed-off-by: fupan <lifupan@gmail.com>
128 lines
2.1 KiB
Go
128 lines
2.1 KiB
Go
// Copyright (c) 2018 HyperHQ Inc.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package containerdshim
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"sync"
|
|
"syscall"
|
|
|
|
"github.com/containerd/fifo"
|
|
)
|
|
|
|
// The buffer size used to specify the buffer for IO streams copy
|
|
const bufSize = 32 << 10
|
|
|
|
var (
|
|
bufPool = sync.Pool{
|
|
New: func() interface{} {
|
|
buffer := make([]byte, bufSize)
|
|
return &buffer
|
|
},
|
|
}
|
|
)
|
|
|
|
type ttyIO struct {
|
|
Stdin io.ReadCloser
|
|
Stdout io.Writer
|
|
Stderr io.Writer
|
|
}
|
|
|
|
func (tty *ttyIO) close() {
|
|
|
|
if tty.Stdin != nil {
|
|
tty.Stdin.Close()
|
|
}
|
|
cf := func(w io.Writer) {
|
|
if w == nil {
|
|
return
|
|
}
|
|
if c, ok := w.(io.WriteCloser); ok {
|
|
c.Close()
|
|
}
|
|
}
|
|
cf(tty.Stdout)
|
|
cf(tty.Stderr)
|
|
}
|
|
|
|
func newTtyIO(ctx context.Context, stdin, stdout, stderr string, console bool) (*ttyIO, error) {
|
|
var in io.ReadCloser
|
|
var outw io.Writer
|
|
var errw io.Writer
|
|
var err error
|
|
|
|
if stdin != "" {
|
|
in, err = fifo.OpenFifo(ctx, stdin, syscall.O_RDONLY, 0)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
if stdout != "" {
|
|
outw, err = fifo.OpenFifo(ctx, stdout, syscall.O_WRONLY, 0)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
if !console && stderr != "" {
|
|
errw, err = fifo.OpenFifo(ctx, stderr, syscall.O_WRONLY, 0)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
ttyIO := &ttyIO{
|
|
Stdin: in,
|
|
Stdout: outw,
|
|
Stderr: errw,
|
|
}
|
|
|
|
return ttyIO, nil
|
|
}
|
|
|
|
func ioCopy(exitch chan struct{}, tty *ttyIO, stdinPipe io.WriteCloser, stdoutPipe, stderrPipe io.Reader) {
|
|
var wg sync.WaitGroup
|
|
var closeOnce sync.Once
|
|
|
|
if tty.Stdin != nil {
|
|
wg.Add(1)
|
|
go func() {
|
|
p := bufPool.Get().(*[]byte)
|
|
defer bufPool.Put(p)
|
|
io.CopyBuffer(stdinPipe, tty.Stdin, *p)
|
|
wg.Done()
|
|
}()
|
|
}
|
|
|
|
if tty.Stdout != nil {
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
p := bufPool.Get().(*[]byte)
|
|
defer bufPool.Put(p)
|
|
io.CopyBuffer(tty.Stdout, stdoutPipe, *p)
|
|
wg.Done()
|
|
closeOnce.Do(tty.close)
|
|
}()
|
|
}
|
|
|
|
if tty.Stderr != nil && stderrPipe != nil {
|
|
wg.Add(1)
|
|
go func() {
|
|
p := bufPool.Get().(*[]byte)
|
|
defer bufPool.Put(p)
|
|
io.CopyBuffer(tty.Stderr, stderrPipe, *p)
|
|
wg.Done()
|
|
}()
|
|
}
|
|
|
|
wg.Wait()
|
|
closeOnce.Do(tty.close)
|
|
close(exitch)
|
|
}
|