mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 18:28:00 -05:00
269 lines
4.8 KiB
Go
269 lines
4.8 KiB
Go
package ray
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"sync"
|
|
"time"
|
|
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/common/buf"
|
|
"v2ray.com/core/common/platform"
|
|
"v2ray.com/core/common/signal"
|
|
)
|
|
|
|
type Option func(*directRay)
|
|
|
|
type addInt64 interface {
|
|
Add(int64) int64
|
|
}
|
|
|
|
func WithUplinkStatCounter(c addInt64) Option {
|
|
return func(s *directRay) {
|
|
s.Input.onDataSize = append(s.Input.onDataSize, func(delta uint64) {
|
|
c.Add(int64(delta))
|
|
})
|
|
}
|
|
}
|
|
|
|
func WithDownlinkStatCounter(c addInt64) Option {
|
|
return func(s *directRay) {
|
|
s.Output.onDataSize = append(s.Output.onDataSize, func(delta uint64) {
|
|
c.Add(int64(delta))
|
|
})
|
|
}
|
|
}
|
|
|
|
// New creates a new Ray for direct traffic transport.
|
|
func New(ctx context.Context, opts ...Option) Ray {
|
|
r := &directRay{
|
|
Input: NewStream(ctx),
|
|
Output: NewStream(ctx),
|
|
}
|
|
for _, opt := range opts {
|
|
opt(r)
|
|
}
|
|
return r
|
|
}
|
|
|
|
type directRay struct {
|
|
Input *Stream
|
|
Output *Stream
|
|
}
|
|
|
|
func (v *directRay) OutboundInput() InputStream {
|
|
return v.Input
|
|
}
|
|
|
|
func (v *directRay) OutboundOutput() OutputStream {
|
|
return v.Output
|
|
}
|
|
|
|
func (v *directRay) InboundInput() OutputStream {
|
|
return v.Input
|
|
}
|
|
|
|
func (v *directRay) InboundOutput() InputStream {
|
|
return v.Output
|
|
}
|
|
|
|
var streamSizeLimit uint64 = 10 * 1024 * 1024
|
|
|
|
func init() {
|
|
const raySizeEnvKey = "v2ray.ray.buffer.size"
|
|
size := platform.EnvFlag{
|
|
Name: raySizeEnvKey,
|
|
AltName: platform.NormalizeEnvName(raySizeEnvKey),
|
|
}.GetValueAsInt(10)
|
|
streamSizeLimit = uint64(size) * 1024 * 1024
|
|
}
|
|
|
|
// Stream is a sequential container for data in bytes.
|
|
type Stream struct {
|
|
access sync.RWMutex
|
|
data buf.MultiBuffer
|
|
size uint64
|
|
ctx context.Context
|
|
readSignal *signal.Notifier
|
|
writeSignal *signal.Notifier
|
|
onDataSize []func(uint64)
|
|
close bool
|
|
err bool
|
|
}
|
|
|
|
// NewStream creates a new Stream.
|
|
func NewStream(ctx context.Context) *Stream {
|
|
s := &Stream{
|
|
ctx: ctx,
|
|
readSignal: signal.NewNotifier(),
|
|
writeSignal: signal.NewNotifier(),
|
|
size: 0,
|
|
}
|
|
return s
|
|
}
|
|
|
|
func (s *Stream) getData() (buf.MultiBuffer, error) {
|
|
s.access.Lock()
|
|
defer s.access.Unlock()
|
|
|
|
if s.data != nil {
|
|
mb := s.data
|
|
s.data = nil
|
|
s.size = 0
|
|
return mb, nil
|
|
}
|
|
|
|
if s.err {
|
|
return nil, io.ErrClosedPipe
|
|
}
|
|
|
|
if s.close {
|
|
return nil, io.EOF
|
|
}
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
// Peek fills in the given buffer with data from head of the Stream.
|
|
func (s *Stream) Peek(b *buf.Buffer) {
|
|
s.access.RLock()
|
|
defer s.access.RUnlock()
|
|
|
|
common.Must(b.Reset(func(data []byte) (int, error) {
|
|
return s.data.Copy(data), nil
|
|
}))
|
|
}
|
|
|
|
// ReadMultiBuffer reads data from the Stream.
|
|
func (s *Stream) ReadMultiBuffer() (buf.MultiBuffer, error) {
|
|
for {
|
|
mb, err := s.getData()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if mb != nil {
|
|
s.readSignal.Signal()
|
|
return mb, nil
|
|
}
|
|
|
|
select {
|
|
case <-s.ctx.Done():
|
|
return nil, s.ctx.Err()
|
|
case <-s.writeSignal.Wait():
|
|
}
|
|
}
|
|
}
|
|
|
|
// ReadTimeout reads from the Stream with a specified timeout.
|
|
func (s *Stream) ReadTimeout(timeout time.Duration) (buf.MultiBuffer, error) {
|
|
for {
|
|
mb, err := s.getData()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if mb != nil {
|
|
s.readSignal.Signal()
|
|
return mb, nil
|
|
}
|
|
|
|
select {
|
|
case <-s.ctx.Done():
|
|
return nil, s.ctx.Err()
|
|
case <-time.After(timeout):
|
|
return nil, buf.ErrReadTimeout
|
|
case <-s.writeSignal.Wait():
|
|
}
|
|
}
|
|
}
|
|
|
|
// Size returns the number of bytes hold in the Stream.
|
|
func (s *Stream) Size() uint64 {
|
|
s.access.RLock()
|
|
defer s.access.RUnlock()
|
|
|
|
return s.size
|
|
}
|
|
|
|
// waitForStreamSize waits until the Stream has room for more data, or any error happens.
|
|
func (s *Stream) waitForStreamSize() error {
|
|
if streamSizeLimit == 0 {
|
|
return nil
|
|
}
|
|
|
|
for s.Size() >= streamSizeLimit {
|
|
select {
|
|
case <-s.ctx.Done():
|
|
return s.ctx.Err()
|
|
case <-s.readSignal.Wait():
|
|
if s.err || s.close {
|
|
return io.ErrClosedPipe
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// WriteMultiBuffer writes more data into the Stream.
|
|
func (s *Stream) WriteMultiBuffer(data buf.MultiBuffer) error {
|
|
if data.IsEmpty() {
|
|
return nil
|
|
}
|
|
|
|
if err := s.waitForStreamSize(); err != nil {
|
|
data.Release()
|
|
return err
|
|
}
|
|
|
|
s.access.Lock()
|
|
defer s.access.Unlock()
|
|
|
|
if s.err || s.close {
|
|
data.Release()
|
|
return io.ErrClosedPipe
|
|
}
|
|
|
|
if s.data == nil {
|
|
s.data = buf.NewMultiBufferCap(128)
|
|
}
|
|
|
|
dataSize := uint64(data.Len())
|
|
for _, f := range s.onDataSize {
|
|
f(dataSize)
|
|
}
|
|
|
|
s.data.AppendMulti(data)
|
|
s.size += dataSize
|
|
s.writeSignal.Signal()
|
|
|
|
return nil
|
|
}
|
|
|
|
// Close closes the stream for writing. Read() still works until EOF.
|
|
func (s *Stream) Close() error {
|
|
s.access.Lock()
|
|
s.close = true
|
|
s.readSignal.Signal()
|
|
s.writeSignal.Signal()
|
|
s.access.Unlock()
|
|
return nil
|
|
}
|
|
|
|
// CloseError closes the Stream with error. Read() will return an error afterwards.
|
|
func (s *Stream) CloseError() {
|
|
s.access.Lock()
|
|
s.err = true
|
|
if s.data != nil {
|
|
s.data.Release()
|
|
s.data = nil
|
|
s.size = 0
|
|
}
|
|
s.access.Unlock()
|
|
|
|
s.readSignal.Signal()
|
|
s.writeSignal.Signal()
|
|
|
|
}
|