mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
da3eb80271
See updated comment in sentry/kernel/pipe/vfs.go. PiperOrigin-RevId: 610516821
160 lines
4.3 KiB
Go
160 lines
4.3 KiB
Go
// Copyright 2019 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 pipe
|
|
|
|
import (
|
|
"io"
|
|
"math"
|
|
|
|
"golang.org/x/sys/unix"
|
|
"gvisor.dev/gvisor/pkg/abi/linux"
|
|
"gvisor.dev/gvisor/pkg/context"
|
|
"gvisor.dev/gvisor/pkg/errors/linuxerr"
|
|
"gvisor.dev/gvisor/pkg/marshal/primitive"
|
|
"gvisor.dev/gvisor/pkg/safemem"
|
|
"gvisor.dev/gvisor/pkg/sentry/arch"
|
|
"gvisor.dev/gvisor/pkg/usermem"
|
|
"gvisor.dev/gvisor/pkg/waiter"
|
|
)
|
|
|
|
// This file contains Pipe file functionality that is tied to neither VFS nor
|
|
// the old fs architecture.
|
|
|
|
// Release cleans up the pipe's state.
|
|
func (p *Pipe) Release(context.Context) {
|
|
p.rClose()
|
|
p.wClose()
|
|
|
|
// Wake up readers and writers.
|
|
p.queue.Notify(waiter.ReadableEvents | waiter.WritableEvents)
|
|
}
|
|
|
|
// Read reads from the Pipe into dst.
|
|
func (p *Pipe) Read(ctx context.Context, dst usermem.IOSequence) (int64, error) {
|
|
n, err := p.read(dst.NumBytes(), func(srcs safemem.BlockSeq) (uint64, error) {
|
|
var done uint64
|
|
for !srcs.IsEmpty() {
|
|
src := srcs.Head()
|
|
n, err := dst.CopyOut(ctx, src.ToSlice())
|
|
done += uint64(n)
|
|
if err != nil {
|
|
return done, err
|
|
}
|
|
dst = dst.DropFirst(n)
|
|
srcs = srcs.Tail()
|
|
}
|
|
return done, nil
|
|
}, true /* removeFromSrc */)
|
|
if n > 0 {
|
|
p.queue.Notify(waiter.WritableEvents)
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
func (p *Pipe) read(count int64, f func(srcs safemem.BlockSeq) (uint64, error), removeFromSrc bool) (int64, error) {
|
|
p.mu.Lock()
|
|
defer p.mu.Unlock()
|
|
n, err := p.peekLocked(0, count, f)
|
|
if n > 0 && removeFromSrc {
|
|
p.consumeLocked(n)
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
// WriteTo writes to w from the Pipe.
|
|
func (p *Pipe) WriteTo(ctx context.Context, w io.Writer, count int64, dup bool) (int64, error) {
|
|
n, err := p.read(count, func(srcs safemem.BlockSeq) (uint64, error) {
|
|
return safemem.FromIOWriter{w}.WriteFromBlocks(srcs)
|
|
}, !dup /* removeFromSrc */)
|
|
if n > 0 && !dup {
|
|
p.queue.Notify(waiter.WritableEvents)
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
// Write writes to the Pipe from src.
|
|
func (p *Pipe) Write(ctx context.Context, src usermem.IOSequence) (int64, error) {
|
|
n, err := p.write(src.NumBytes(), func(dsts safemem.BlockSeq) (uint64, error) {
|
|
var done uint64
|
|
for !dsts.IsEmpty() {
|
|
dst := dsts.Head()
|
|
n, err := src.CopyIn(ctx, dst.ToSlice())
|
|
done += uint64(n)
|
|
if err != nil {
|
|
return done, err
|
|
}
|
|
src = src.DropFirst(n)
|
|
dsts = dsts.Tail()
|
|
}
|
|
return done, nil
|
|
})
|
|
if n > 0 {
|
|
p.queue.Notify(waiter.ReadableEvents)
|
|
}
|
|
if linuxerr.Equals(linuxerr.EPIPE, err) {
|
|
// If we are returning EPIPE send SIGPIPE to the task.
|
|
if sendSig := linux.SignalNoInfoFuncFromContext(ctx); sendSig != nil {
|
|
sendSig(linux.SIGPIPE)
|
|
}
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
func (p *Pipe) write(count int64, f func(safemem.BlockSeq) (uint64, error)) (int64, error) {
|
|
p.mu.Lock()
|
|
defer p.mu.Unlock()
|
|
return p.writeLocked(count, f)
|
|
}
|
|
|
|
// ReadFrom reads from r to the Pipe.
|
|
func (p *Pipe) ReadFrom(ctx context.Context, r io.Reader, count int64) (int64, error) {
|
|
n, err := p.write(count, func(dsts safemem.BlockSeq) (uint64, error) {
|
|
return safemem.FromIOReader{r}.ReadToBlocks(dsts)
|
|
})
|
|
if n > 0 {
|
|
p.queue.Notify(waiter.ReadableEvents)
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
// Readiness returns the ready events in the underlying pipe.
|
|
func (p *Pipe) Readiness(mask waiter.EventMask) waiter.EventMask {
|
|
return p.rwReadiness() & mask
|
|
}
|
|
|
|
// Ioctl implements ioctls on the Pipe.
|
|
func (p *Pipe) Ioctl(ctx context.Context, io usermem.IO, sysno uintptr, args arch.SyscallArguments) (uintptr, error) {
|
|
// Switch on ioctl request.
|
|
switch int(args[1].Int()) {
|
|
case linux.FIONREAD:
|
|
v := p.queued()
|
|
if v > math.MaxInt32 {
|
|
v = math.MaxInt32 // Silently truncate.
|
|
}
|
|
// Copy result to userspace.
|
|
iocc := usermem.IOCopyContext{
|
|
IO: io,
|
|
Ctx: ctx,
|
|
Opts: usermem.IOOpts{
|
|
AddressSpaceActive: true,
|
|
},
|
|
}
|
|
_, err := primitive.CopyInt32Out(&iocc, args[2].Pointer(), int32(v))
|
|
return 0, err
|
|
default:
|
|
return 0, unix.ENOTTY
|
|
}
|
|
}
|