2015-10-14 09:07:13 -04:00
|
|
|
package ray
|
|
|
|
|
|
|
|
import (
|
2017-02-07 11:37:26 -05:00
|
|
|
"context"
|
2016-04-18 12:44:10 -04:00
|
|
|
"io"
|
2017-05-15 14:31:52 -04:00
|
|
|
"os"
|
|
|
|
"strconv"
|
2017-04-16 03:57:28 -04:00
|
|
|
"sync"
|
2017-01-04 06:34:01 -05:00
|
|
|
"time"
|
|
|
|
|
2016-12-09 05:35:27 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2015-10-14 09:07:13 -04:00
|
|
|
)
|
|
|
|
|
2015-10-15 07:15:59 -04:00
|
|
|
// NewRay creates a new Ray for direct traffic transport.
|
2017-01-26 14:46:44 -05:00
|
|
|
func NewRay(ctx context.Context) Ray {
|
2015-10-14 09:07:13 -04:00
|
|
|
return &directRay{
|
2017-01-26 14:46:44 -05:00
|
|
|
Input: NewStream(ctx),
|
|
|
|
Output: NewStream(ctx),
|
2015-10-14 09:07:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type directRay struct {
|
2016-04-18 12:44:10 -04:00
|
|
|
Input *Stream
|
|
|
|
Output *Stream
|
2015-10-14 09:07:13 -04:00
|
|
|
}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
func (v *directRay) OutboundInput() InputStream {
|
|
|
|
return v.Input
|
2015-10-14 09:07:13 -04:00
|
|
|
}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
func (v *directRay) OutboundOutput() OutputStream {
|
|
|
|
return v.Output
|
2015-10-14 09:07:13 -04:00
|
|
|
}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
func (v *directRay) InboundInput() OutputStream {
|
|
|
|
return v.Input
|
2015-10-14 09:07:13 -04:00
|
|
|
}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
func (v *directRay) InboundOutput() InputStream {
|
|
|
|
return v.Output
|
2015-10-14 09:07:13 -04:00
|
|
|
}
|
2016-04-18 12:44:10 -04:00
|
|
|
|
2017-05-18 18:21:48 -04:00
|
|
|
var streamSizeLimit uint64 = 10 * 1024 * 1024
|
2017-05-15 14:31:52 -04:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
const raySizeEnvKey = "v2ray.ray.buffer.size"
|
|
|
|
sizeStr := os.Getenv(raySizeEnvKey)
|
|
|
|
if len(sizeStr) > 0 {
|
|
|
|
customSize, err := strconv.ParseUint(sizeStr, 10, 32)
|
|
|
|
if err == nil {
|
2017-05-15 14:58:27 -04:00
|
|
|
streamSizeLimit = customSize * 1024 * 1024
|
2017-05-15 14:31:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 12:44:10 -04:00
|
|
|
type Stream struct {
|
2017-05-15 14:42:10 -04:00
|
|
|
access sync.RWMutex
|
|
|
|
data buf.MultiBuffer
|
|
|
|
size uint64
|
|
|
|
ctx context.Context
|
|
|
|
readSignal chan bool
|
|
|
|
writeSignal chan bool
|
|
|
|
close bool
|
|
|
|
err bool
|
2016-04-18 12:44:10 -04:00
|
|
|
}
|
|
|
|
|
2017-01-26 14:46:44 -05:00
|
|
|
func NewStream(ctx context.Context) *Stream {
|
2016-04-18 12:44:10 -04:00
|
|
|
return &Stream{
|
2017-05-15 14:42:10 -04:00
|
|
|
ctx: ctx,
|
|
|
|
readSignal: make(chan bool, 1),
|
|
|
|
writeSignal: make(chan bool, 1),
|
|
|
|
size: 0,
|
2016-04-18 12:44:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 03:57:28 -04:00
|
|
|
func (s *Stream) getData() (buf.MultiBuffer, error) {
|
|
|
|
s.access.Lock()
|
|
|
|
defer s.access.Unlock()
|
|
|
|
|
|
|
|
if s.data != nil {
|
|
|
|
mb := s.data
|
|
|
|
s.data = nil
|
2017-05-15 14:31:52 -04:00
|
|
|
s.size = 0
|
2017-04-16 03:57:28 -04:00
|
|
|
return mb, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.close {
|
|
|
|
return nil, io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.err {
|
2016-12-24 18:42:03 -05:00
|
|
|
return nil, io.ErrClosedPipe
|
2017-04-16 03:57:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2017-04-25 04:48:06 -04:00
|
|
|
func (s *Stream) Peek(b *buf.Buffer) {
|
2017-04-24 18:19:22 -04:00
|
|
|
s.access.RLock()
|
|
|
|
defer s.access.RUnlock()
|
|
|
|
|
2017-04-25 04:48:06 -04:00
|
|
|
b.Reset(func(data []byte) (int, error) {
|
|
|
|
return s.data.Copy(data), nil
|
|
|
|
})
|
2017-04-24 18:19:22 -04:00
|
|
|
}
|
|
|
|
|
2017-04-16 03:57:28 -04:00
|
|
|
func (s *Stream) Read() (buf.MultiBuffer, error) {
|
|
|
|
for {
|
|
|
|
mb, err := s.getData()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if mb != nil {
|
2017-05-15 14:42:10 -04:00
|
|
|
s.notifyRead()
|
2017-04-16 03:57:28 -04:00
|
|
|
return mb, nil
|
|
|
|
}
|
|
|
|
|
2016-12-24 18:42:03 -05:00
|
|
|
select {
|
2017-04-16 03:57:28 -04:00
|
|
|
case <-s.ctx.Done():
|
2017-04-16 15:31:16 -04:00
|
|
|
return nil, io.EOF
|
2017-05-15 14:42:10 -04:00
|
|
|
case <-s.writeSignal:
|
2016-12-24 18:42:03 -05:00
|
|
|
}
|
2016-04-18 12:44:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 03:57:28 -04:00
|
|
|
func (s *Stream) ReadTimeout(timeout time.Duration) (buf.MultiBuffer, error) {
|
|
|
|
for {
|
|
|
|
mb, err := s.getData()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if mb != nil {
|
2017-05-15 14:42:10 -04:00
|
|
|
s.notifyRead()
|
2017-04-16 03:57:28 -04:00
|
|
|
return mb, nil
|
2017-03-27 02:56:16 -04:00
|
|
|
}
|
|
|
|
|
2017-01-04 06:34:01 -05:00
|
|
|
select {
|
2017-04-16 03:57:28 -04:00
|
|
|
case <-s.ctx.Done():
|
2017-04-16 15:31:16 -04:00
|
|
|
return nil, io.EOF
|
2017-01-04 06:34:01 -05:00
|
|
|
case <-time.After(timeout):
|
2017-03-27 05:12:34 -04:00
|
|
|
return nil, buf.ErrReadTimeout
|
2017-05-15 14:42:10 -04:00
|
|
|
case <-s.writeSignal:
|
2017-01-04 06:34:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 05:20:08 -04:00
|
|
|
func (s *Stream) Write(data buf.MultiBuffer) error {
|
2016-12-26 18:44:11 -05:00
|
|
|
if data.IsEmpty() {
|
2017-04-19 05:20:08 -04:00
|
|
|
return nil
|
2016-12-26 18:44:11 -05:00
|
|
|
}
|
|
|
|
|
2017-05-15 14:31:52 -04:00
|
|
|
for streamSizeLimit > 0 && s.size >= streamSizeLimit {
|
|
|
|
select {
|
|
|
|
case <-s.ctx.Done():
|
|
|
|
return io.ErrClosedPipe
|
2017-05-15 14:42:10 -04:00
|
|
|
case <-s.readSignal:
|
|
|
|
s.access.RLock()
|
|
|
|
if s.err || s.close {
|
|
|
|
data.Release()
|
|
|
|
s.access.RUnlock()
|
|
|
|
return io.ErrClosedPipe
|
|
|
|
}
|
|
|
|
s.access.RUnlock()
|
2017-05-15 14:31:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 03:57:28 -04:00
|
|
|
s.access.Lock()
|
|
|
|
defer s.access.Unlock()
|
|
|
|
|
2017-04-19 05:20:08 -04:00
|
|
|
if s.err || s.close {
|
2017-04-16 03:57:28 -04:00
|
|
|
data.Release()
|
2016-12-24 18:42:03 -05:00
|
|
|
return io.ErrClosedPipe
|
|
|
|
}
|
2016-04-18 12:44:10 -04:00
|
|
|
|
2017-04-16 03:57:28 -04:00
|
|
|
if s.data == nil {
|
|
|
|
s.data = data
|
|
|
|
} else {
|
|
|
|
s.data.AppendMulti(data)
|
|
|
|
}
|
2017-05-15 14:31:52 -04:00
|
|
|
s.size += uint64(data.Len())
|
2017-05-15 14:42:10 -04:00
|
|
|
s.notifyWrite()
|
2016-12-22 11:28:06 -05:00
|
|
|
|
2017-04-16 03:57:28 -04:00
|
|
|
return nil
|
2016-04-18 12:44:10 -04:00
|
|
|
}
|
|
|
|
|
2017-05-15 14:42:10 -04:00
|
|
|
func (s *Stream) notifyRead() {
|
2017-04-16 03:57:28 -04:00
|
|
|
select {
|
2017-05-15 14:42:10 -04:00
|
|
|
case s.readSignal <- true:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Stream) notifyWrite() {
|
|
|
|
select {
|
|
|
|
case s.writeSignal <- true:
|
2017-04-16 03:57:28 -04:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
2016-12-22 11:28:06 -05:00
|
|
|
|
2017-04-16 03:57:28 -04:00
|
|
|
func (s *Stream) Close() {
|
|
|
|
s.access.Lock()
|
|
|
|
s.close = true
|
2017-05-15 14:42:10 -04:00
|
|
|
s.notifyRead()
|
|
|
|
s.notifyWrite()
|
2017-04-16 03:57:28 -04:00
|
|
|
s.access.Unlock()
|
|
|
|
}
|
2016-12-22 11:28:06 -05:00
|
|
|
|
2017-04-16 03:57:28 -04:00
|
|
|
func (s *Stream) CloseError() {
|
|
|
|
s.access.Lock()
|
|
|
|
s.err = true
|
|
|
|
if s.data != nil {
|
|
|
|
s.data.Release()
|
|
|
|
s.data = nil
|
2017-05-15 14:42:10 -04:00
|
|
|
s.size = 0
|
2016-04-18 12:44:10 -04:00
|
|
|
}
|
2017-05-15 14:42:10 -04:00
|
|
|
s.notifyRead()
|
|
|
|
s.notifyWrite()
|
2017-04-16 03:57:28 -04:00
|
|
|
s.access.Unlock()
|
2016-12-22 11:28:06 -05:00
|
|
|
}
|