summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs/fdpipe/pipe_state.go
blob: 387f713aabd79a073890c84cc6c38e5387a20c2b (plain)
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
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package fdpipe

import (
	"fmt"
	"io/ioutil"

	"gvisor.dev/gvisor/pkg/context"
	"gvisor.dev/gvisor/pkg/sentry/fs"
	"gvisor.dev/gvisor/pkg/sync"
)

// beforeSave is invoked by stateify.
func (p *pipeOperations) beforeSave() {
	if p.flags.Read {
		data, err := ioutil.ReadAll(p.file)
		if err != nil && !isBlockError(err) {
			panic(fmt.Sprintf("failed to read from pipe: %v", err))
		}
		p.readAheadBuffer = append(p.readAheadBuffer, data...)
	} else if p.flags.Write {
		file, err := p.opener.NonBlockingOpen(context.Background(), fs.PermMask{Write: true})
		if err != nil {
			panic(&fs.ErrSaveRejection{
				Err: fmt.Errorf("write-only pipe end cannot be re-opened as %#v: %w", p, err),
			})
		}
		file.Close()
	}
}

// saveFlags is invoked by stateify.
func (p *pipeOperations) saveFlags() fs.FileFlags {
	return p.flags
}

// readPipeOperationsLoading is used to ensure that write-only pipe fds are
// opened after read/write and read-only pipe fds, to avoid ENXIO when
// multiple pipe fds refer to different ends of the same pipe.
var readPipeOperationsLoading sync.WaitGroup

// loadFlags is invoked by stateify.
func (p *pipeOperations) loadFlags(flags fs.FileFlags) {
	// This is a hack to ensure that readPipeOperationsLoading includes all
	// readable pipe fds before any asynchronous calls to
	// readPipeOperationsLoading.Wait().
	if flags.Read {
		readPipeOperationsLoading.Add(1)
	}
	p.flags = flags
}

// afterLoad is invoked by stateify.
func (p *pipeOperations) afterLoad() {
	load := func() error {
		if !p.flags.Read {
			readPipeOperationsLoading.Wait()
		} else {
			defer readPipeOperationsLoading.Done()
		}
		var err error
		p.file, err = p.opener.NonBlockingOpen(context.Background(), fs.PermMask{
			Read:  p.flags.Read,
			Write: p.flags.Write,
		})
		if err != nil {
			return fmt.Errorf("unable to open pipe %v: %v", p, err)
		}
		if err := p.init(); err != nil {
			return fmt.Errorf("unable to initialize pipe %v: %v", p, err)
		}
		return nil
	}

	// Do background opening of pipe ends. Note for write-only pipe ends we
	// have to do it asynchronously to avoid blocking the restore.
	fs.Async(fs.CatchError(load))
}