Add basic fifo support for IO copy
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
e480aedaea
commit
e9f63fc9a4
14 changed files with 141 additions and 191 deletions
|
@ -17,7 +17,7 @@ func (h *AddProcessEvent) Handle(e *Event) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
l, err := h.s.log(ci.container.Path(), io)
|
l, err := h.s.copyIO(e.Stdout, e.Stderr, io)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// log the error but continue with the other commands
|
// log the error but continue with the other commands
|
||||||
logrus.WithFields(logrus.Fields{
|
logrus.WithFields(logrus.Fields{
|
||||||
|
@ -30,7 +30,7 @@ func (h *AddProcessEvent) Handle(e *Event) error {
|
||||||
}
|
}
|
||||||
h.s.processes[e.Pid] = &containerInfo{
|
h.s.processes[e.Pid] = &containerInfo{
|
||||||
container: ci.container,
|
container: ci.container,
|
||||||
logger: l,
|
copier: l,
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,8 @@ func (s *apiServer) CreateContainer(ctx context.Context, c *types.CreateContaine
|
||||||
e := containerd.NewEvent(containerd.StartContainerEventType)
|
e := containerd.NewEvent(containerd.StartContainerEventType)
|
||||||
e.ID = c.Id
|
e.ID = c.Id
|
||||||
e.BundlePath = c.BundlePath
|
e.BundlePath = c.BundlePath
|
||||||
|
e.Stdout = c.Stdout
|
||||||
|
e.Stderr = c.Stderr
|
||||||
if c.Checkpoint != "" {
|
if c.Checkpoint != "" {
|
||||||
e.Checkpoint = &runtime.Checkpoint{
|
e.Checkpoint = &runtime.Checkpoint{
|
||||||
Name: c.Checkpoint,
|
Name: c.Checkpoint,
|
||||||
|
|
|
@ -2,7 +2,12 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"sync"
|
||||||
|
"syscall"
|
||||||
"text/tabwriter"
|
"text/tabwriter"
|
||||||
|
|
||||||
"github.com/codegangsta/cli"
|
"github.com/codegangsta/cli"
|
||||||
|
@ -63,6 +68,10 @@ var StartCommand = cli.Command{
|
||||||
Value: "",
|
Value: "",
|
||||||
Usage: "checkpoint to start the container from",
|
Usage: "checkpoint to start the container from",
|
||||||
},
|
},
|
||||||
|
cli.BoolFlag{
|
||||||
|
Name: "interactive,i",
|
||||||
|
Usage: "connect to the stdio of the container",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Action: func(context *cli.Context) {
|
Action: func(context *cli.Context) {
|
||||||
var (
|
var (
|
||||||
|
@ -75,17 +84,71 @@ var StartCommand = cli.Command{
|
||||||
if id == "" {
|
if id == "" {
|
||||||
fatal("container id cannot be empty", 1)
|
fatal("container id cannot be empty", 1)
|
||||||
}
|
}
|
||||||
c := getClient()
|
r := &types.CreateContainerRequest{
|
||||||
if _, err := c.CreateContainer(netcontext.Background(), &types.CreateContainerRequest{
|
|
||||||
Id: id,
|
Id: id,
|
||||||
BundlePath: path,
|
BundlePath: path,
|
||||||
Checkpoint: context.String("checkpoint"),
|
Checkpoint: context.String("checkpoint"),
|
||||||
}); err != nil {
|
}
|
||||||
|
wg := &sync.WaitGroup{}
|
||||||
|
if context.Bool("interactive") {
|
||||||
|
if err := attachStdio(r, wg); err != nil {
|
||||||
|
fatal(err.Error(), 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
c := getClient()
|
||||||
|
if _, err := c.CreateContainer(netcontext.Background(), r); err != nil {
|
||||||
fatal(err.Error(), 1)
|
fatal(err.Error(), 1)
|
||||||
}
|
}
|
||||||
|
wg.Wait()
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func attachStdio(r *types.CreateContainerRequest, wg *sync.WaitGroup) error {
|
||||||
|
dir, err := ioutil.TempDir("", "ctr-")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
wg.Add(2)
|
||||||
|
for _, p := range []struct {
|
||||||
|
path string
|
||||||
|
flag int
|
||||||
|
done func(f *os.File)
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
path: filepath.Join(dir, "stdout"),
|
||||||
|
flag: syscall.O_RDWR,
|
||||||
|
done: func(f *os.File) {
|
||||||
|
r.Stdout = filepath.Join(dir, "stdout")
|
||||||
|
go func() {
|
||||||
|
io.Copy(os.Stdout, f)
|
||||||
|
wg.Done()
|
||||||
|
}()
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: filepath.Join(dir, "stderr"),
|
||||||
|
flag: syscall.O_RDWR,
|
||||||
|
done: func(f *os.File) {
|
||||||
|
r.Stderr = filepath.Join(dir, "stderr")
|
||||||
|
go func() {
|
||||||
|
io.Copy(os.Stderr, f)
|
||||||
|
wg.Done()
|
||||||
|
}()
|
||||||
|
},
|
||||||
|
},
|
||||||
|
} {
|
||||||
|
if err := syscall.Mkfifo(p.path, 0755); err != nil {
|
||||||
|
return fmt.Errorf("mkfifo: %s %v", p.path, err)
|
||||||
|
}
|
||||||
|
f, err := os.OpenFile(p.path, p.flag, 0)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("open: %s %v", p.path, err)
|
||||||
|
}
|
||||||
|
p.done(f)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
var KillCommand = cli.Command{
|
var KillCommand = cli.Command{
|
||||||
Name: "kill",
|
Name: "kill",
|
||||||
Usage: "send a signal to a container or it's processes",
|
Usage: "send a signal to a container or it's processes",
|
||||||
|
|
60
ctr/logs.go
60
ctr/logs.go
|
@ -1,60 +0,0 @@
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"io"
|
|
||||||
"os"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/codegangsta/cli"
|
|
||||||
"github.com/docker/containerd"
|
|
||||||
)
|
|
||||||
|
|
||||||
var LogsCommand = cli.Command{
|
|
||||||
Name: "logs",
|
|
||||||
Usage: "view binary container logs generated by containerd",
|
|
||||||
Flags: []cli.Flag{
|
|
||||||
cli.BoolFlag{
|
|
||||||
Name: "follow,f",
|
|
||||||
Usage: "follow/tail the logs",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Action: func(context *cli.Context) {
|
|
||||||
path := context.Args().First()
|
|
||||||
if path == "" {
|
|
||||||
fatal("path to the log cannot be empty", 1)
|
|
||||||
}
|
|
||||||
if err := readLogs(path, context.Bool("follow")); err != nil {
|
|
||||||
fatal(err.Error(), 1)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
func readLogs(path string, follow bool) error {
|
|
||||||
f, err := os.Open(path)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer f.Close()
|
|
||||||
dec := json.NewDecoder(f)
|
|
||||||
for {
|
|
||||||
var msg *containerd.Message
|
|
||||||
if err := dec.Decode(&msg); err != nil {
|
|
||||||
if err == io.EOF {
|
|
||||||
if follow {
|
|
||||||
time.Sleep(100 * time.Millisecond)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
switch msg.Stream {
|
|
||||||
case "stdout":
|
|
||||||
os.Stdout.Write(msg.Data)
|
|
||||||
case "stderr":
|
|
||||||
os.Stderr.Write(msg.Data)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
|
@ -37,7 +37,6 @@ func main() {
|
||||||
CheckpointCommand,
|
CheckpointCommand,
|
||||||
ContainersCommand,
|
ContainersCommand,
|
||||||
EventsCommand,
|
EventsCommand,
|
||||||
LogsCommand,
|
|
||||||
}
|
}
|
||||||
app.Before = func(context *cli.Context) error {
|
app.Before = func(context *cli.Context) error {
|
||||||
if context.GlobalBool("debug") {
|
if context.GlobalBool("debug") {
|
||||||
|
|
|
@ -14,9 +14,9 @@ func (h *DeleteEvent) Handle(e *Event) error {
|
||||||
if err := h.deleteContainer(i.container); err != nil {
|
if err := h.deleteContainer(i.container); err != nil {
|
||||||
logrus.WithField("error", err).Error("containerd: deleting container")
|
logrus.WithField("error", err).Error("containerd: deleting container")
|
||||||
}
|
}
|
||||||
if i.logger != nil {
|
if i.copier != nil {
|
||||||
if err := i.logger.Close(); err != nil {
|
if err := i.copier.Close(); err != nil {
|
||||||
logrus.WithField("error", err).Error("containerd: close container logger")
|
logrus.WithField("error", err).Error("containerd: close container copier")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
h.s.notifySubscribers(&Event{
|
h.s.notifySubscribers(&Event{
|
||||||
|
|
2
event.go
2
event.go
|
@ -36,6 +36,8 @@ type Event struct {
|
||||||
Timestamp time.Time
|
Timestamp time.Time
|
||||||
ID string
|
ID string
|
||||||
BundlePath string
|
BundlePath string
|
||||||
|
Stdout string
|
||||||
|
Stderr string
|
||||||
Pid int
|
Pid int
|
||||||
Status int
|
Status int
|
||||||
Signal os.Signal
|
Signal os.Signal
|
||||||
|
|
2
exit.go
2
exit.go
|
@ -46,7 +46,7 @@ func (h *ExecExitEvent) Handle(e *Event) error {
|
||||||
if err := info.container.RemoveProcess(e.Pid); err != nil {
|
if err := info.container.RemoveProcess(e.Pid); err != nil {
|
||||||
logrus.WithField("error", err).Error("containerd: find container for pid")
|
logrus.WithField("error", err).Error("containerd: find container for pid")
|
||||||
}
|
}
|
||||||
if err := info.logger.Close(); err != nil {
|
if err := info.copier.Close(); err != nil {
|
||||||
logrus.WithField("error", err).Error("containerd: close process IO")
|
logrus.WithField("error", err).Error("containerd: close process IO")
|
||||||
}
|
}
|
||||||
delete(h.s.processes, e.Pid)
|
delete(h.s.processes, e.Pid)
|
||||||
|
|
52
io.go
Normal file
52
io.go
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
package containerd
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ioConfig struct {
|
||||||
|
StdoutPath string
|
||||||
|
StderrPath string
|
||||||
|
Stdin io.WriteCloser
|
||||||
|
Stdout io.ReadCloser
|
||||||
|
Stderr io.ReadCloser
|
||||||
|
}
|
||||||
|
|
||||||
|
func newCopier(i *ioConfig) (*copier, error) {
|
||||||
|
l := &copier{
|
||||||
|
config: i,
|
||||||
|
}
|
||||||
|
if i.StdoutPath != "" {
|
||||||
|
f, err := os.OpenFile(i.StdoutPath, os.O_RDWR, 0)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
go io.Copy(f, i.Stdout)
|
||||||
|
}
|
||||||
|
if i.StderrPath != "" {
|
||||||
|
f, err := os.OpenFile(i.StderrPath, os.O_RDWR, 0)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
go io.Copy(f, i.Stderr)
|
||||||
|
}
|
||||||
|
return l, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type copier struct {
|
||||||
|
config *ioConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *copier) Close() (err error) {
|
||||||
|
for _, c := range []io.Closer{
|
||||||
|
l.config.Stdin,
|
||||||
|
l.config.Stdout,
|
||||||
|
l.config.Stderr,
|
||||||
|
} {
|
||||||
|
if cerr := c.Close(); err == nil {
|
||||||
|
err = cerr
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
110
log.go
110
log.go
|
@ -1,110 +0,0 @@
|
||||||
package containerd
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"io"
|
|
||||||
"os"
|
|
||||||
"path/filepath"
|
|
||||||
"sync"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/Sirupsen/logrus"
|
|
||||||
)
|
|
||||||
|
|
||||||
type logConfig struct {
|
|
||||||
BundlePath string
|
|
||||||
LogSize int64 // in bytes
|
|
||||||
Stdin io.WriteCloser
|
|
||||||
Stdout io.ReadCloser
|
|
||||||
Stderr io.ReadCloser
|
|
||||||
}
|
|
||||||
|
|
||||||
func newLogger(i *logConfig) (*logger, error) {
|
|
||||||
l := &logger{
|
|
||||||
config: i,
|
|
||||||
messages: make(chan *Message, DefaultBufferSize),
|
|
||||||
}
|
|
||||||
f, err := os.OpenFile(
|
|
||||||
filepath.Join(l.config.BundlePath, "logs.json"),
|
|
||||||
os.O_CREATE|os.O_WRONLY|os.O_APPEND,
|
|
||||||
0655,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
l.f = f
|
|
||||||
hout := &logHandler{
|
|
||||||
stream: "stdout",
|
|
||||||
messages: l.messages,
|
|
||||||
}
|
|
||||||
herr := &logHandler{
|
|
||||||
stream: "stderr",
|
|
||||||
messages: l.messages,
|
|
||||||
}
|
|
||||||
go func() {
|
|
||||||
io.Copy(hout, i.Stdout)
|
|
||||||
}()
|
|
||||||
go func() {
|
|
||||||
io.Copy(herr, i.Stderr)
|
|
||||||
}()
|
|
||||||
l.start()
|
|
||||||
return l, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type Message struct {
|
|
||||||
Stream string `json:"stream"`
|
|
||||||
Timestamp time.Time `json:"timestamp"`
|
|
||||||
Data []byte `json:"data"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type logger struct {
|
|
||||||
config *logConfig
|
|
||||||
f *os.File
|
|
||||||
wg sync.WaitGroup
|
|
||||||
messages chan *Message
|
|
||||||
}
|
|
||||||
|
|
||||||
type logHandler struct {
|
|
||||||
stream string
|
|
||||||
messages chan *Message
|
|
||||||
}
|
|
||||||
|
|
||||||
func (h *logHandler) Write(b []byte) (int, error) {
|
|
||||||
h.messages <- &Message{
|
|
||||||
Stream: h.stream,
|
|
||||||
Timestamp: time.Now(),
|
|
||||||
Data: b,
|
|
||||||
}
|
|
||||||
return len(b), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) start() {
|
|
||||||
l.wg.Add(1)
|
|
||||||
go func() {
|
|
||||||
l.wg.Done()
|
|
||||||
enc := json.NewEncoder(l.f)
|
|
||||||
for m := range l.messages {
|
|
||||||
if err := enc.Encode(m); err != nil {
|
|
||||||
logrus.WithField("error", err).Error("write log message")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) Close() (err error) {
|
|
||||||
for _, c := range []io.Closer{
|
|
||||||
l.config.Stdin,
|
|
||||||
l.config.Stdout,
|
|
||||||
l.config.Stderr,
|
|
||||||
} {
|
|
||||||
if cerr := c.Close(); err == nil {
|
|
||||||
err = cerr
|
|
||||||
}
|
|
||||||
}
|
|
||||||
close(l.messages)
|
|
||||||
l.wg.Wait()
|
|
||||||
if ferr := l.f.Close(); err == nil {
|
|
||||||
err = ferr
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
|
@ -44,6 +44,7 @@ func (i *IO) Close() error {
|
||||||
i.Stdin,
|
i.Stdin,
|
||||||
i.Stdout,
|
i.Stdout,
|
||||||
i.Stderr,
|
i.Stderr,
|
||||||
|
i.Console,
|
||||||
} {
|
} {
|
||||||
if c != nil {
|
if c != nil {
|
||||||
if err := c.Close(); oerr == nil {
|
if err := c.Close(); oerr == nil {
|
||||||
|
@ -51,9 +52,6 @@ func (i *IO) Close() error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if i.Console != nil {
|
|
||||||
oerr = i.Console.Close()
|
|
||||||
}
|
|
||||||
return oerr
|
return oerr
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
start.go
2
start.go
|
@ -18,6 +18,8 @@ func (h *StartEvent) Handle(e *Event) error {
|
||||||
Err: e.Err,
|
Err: e.Err,
|
||||||
IO: io,
|
IO: io,
|
||||||
Container: container,
|
Container: container,
|
||||||
|
Stdout: e.Stdout,
|
||||||
|
Stderr: e.Stderr,
|
||||||
}
|
}
|
||||||
if e.Checkpoint != nil {
|
if e.Checkpoint != nil {
|
||||||
task.Checkpoint = e.Checkpoint.Name
|
task.Checkpoint = e.Checkpoint.Name
|
||||||
|
|
|
@ -56,7 +56,7 @@ func NewSupervisor(id, stateDir string, tasks chan *StartTask) (*Supervisor, err
|
||||||
|
|
||||||
type containerInfo struct {
|
type containerInfo struct {
|
||||||
container runtime.Container
|
container runtime.Container
|
||||||
logger *logger
|
copier *copier
|
||||||
}
|
}
|
||||||
|
|
||||||
type Supervisor struct {
|
type Supervisor struct {
|
||||||
|
@ -222,14 +222,15 @@ func (s *Supervisor) SendEvent(evt *Event) {
|
||||||
s.events <- evt
|
s.events <- evt
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Supervisor) log(path string, i *runtime.IO) (*logger, error) {
|
func (s *Supervisor) copyIO(stdout, stderr string, i *runtime.IO) (*copier, error) {
|
||||||
config := &logConfig{
|
config := &ioConfig{
|
||||||
BundlePath: path,
|
|
||||||
Stdin: i.Stdin,
|
Stdin: i.Stdin,
|
||||||
Stdout: i.Stdout,
|
Stdout: i.Stdout,
|
||||||
Stderr: i.Stderr,
|
Stderr: i.Stderr,
|
||||||
|
StdoutPath: stdout,
|
||||||
|
StderrPath: stderr,
|
||||||
}
|
}
|
||||||
l, err := newLogger(config)
|
l, err := newCopier(config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,8 @@ type StartTask struct {
|
||||||
Container runtime.Container
|
Container runtime.Container
|
||||||
Checkpoint string
|
Checkpoint string
|
||||||
IO *runtime.IO
|
IO *runtime.IO
|
||||||
|
Stdout string
|
||||||
|
Stderr string
|
||||||
Err chan error
|
Err chan error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,8 +36,7 @@ func (w *worker) Start() {
|
||||||
defer w.wg.Done()
|
defer w.wg.Done()
|
||||||
for t := range w.s.tasks {
|
for t := range w.s.tasks {
|
||||||
started := time.Now()
|
started := time.Now()
|
||||||
// start logging the container's stdio
|
l, err := w.s.copyIO(t.Stdout, t.Stderr, t.IO)
|
||||||
l, err := w.s.log(t.Container.Path(), t.IO)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
evt := NewEvent(DeleteEventType)
|
evt := NewEvent(DeleteEventType)
|
||||||
evt.ID = t.Container.ID()
|
evt.ID = t.Container.ID()
|
||||||
|
@ -43,7 +44,7 @@ func (w *worker) Start() {
|
||||||
t.Err <- err
|
t.Err <- err
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
w.s.containers[t.Container.ID()].logger = l
|
w.s.containers[t.Container.ID()].copier = l
|
||||||
if t.Checkpoint != "" {
|
if t.Checkpoint != "" {
|
||||||
if err := t.Container.Restore(t.Checkpoint); err != nil {
|
if err := t.Container.Restore(t.Checkpoint); err != nil {
|
||||||
evt := NewEvent(DeleteEventType)
|
evt := NewEvent(DeleteEventType)
|
||||||
|
|
Loading…
Reference in a new issue