2017-02-07 15:11:47 -05:00
|
|
|
package mux
|
|
|
|
|
2017-12-02 19:04:57 -05:00
|
|
|
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg mux -path App,Proxyman,Mux
|
2017-04-08 19:43:25 -04:00
|
|
|
|
2017-03-31 18:53:01 -04:00
|
|
|
import (
|
|
|
|
"context"
|
2017-04-16 07:24:02 -04:00
|
|
|
"io"
|
2017-03-31 18:53:01 -04:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2017-04-02 08:06:20 -04:00
|
|
|
"v2ray.com/core/app"
|
2017-04-02 03:48:30 -04:00
|
|
|
"v2ray.com/core/app/dispatcher"
|
2017-04-12 04:40:21 -04:00
|
|
|
"v2ray.com/core/app/proxyman"
|
2017-03-31 18:53:01 -04:00
|
|
|
"v2ray.com/core/common/buf"
|
2017-04-16 07:24:02 -04:00
|
|
|
"v2ray.com/core/common/errors"
|
2017-04-02 03:48:30 -04:00
|
|
|
"v2ray.com/core/common/net"
|
2017-05-02 16:23:07 -04:00
|
|
|
"v2ray.com/core/common/protocol"
|
2017-03-31 18:53:01 -04:00
|
|
|
"v2ray.com/core/proxy"
|
|
|
|
"v2ray.com/core/transport/ray"
|
|
|
|
)
|
2017-02-07 15:11:47 -05:00
|
|
|
|
2017-03-26 19:47:01 -04:00
|
|
|
const (
|
2017-04-12 04:40:21 -04:00
|
|
|
maxTotal = 128
|
2017-03-26 19:47:01 -04:00
|
|
|
)
|
|
|
|
|
2017-04-02 15:30:21 -04:00
|
|
|
type ClientManager struct {
|
|
|
|
access sync.Mutex
|
|
|
|
clients []*Client
|
|
|
|
proxy proxy.Outbound
|
|
|
|
dialer proxy.Dialer
|
2017-04-12 04:40:21 -04:00
|
|
|
config *proxyman.MultiplexingConfig
|
2017-04-02 15:30:21 -04:00
|
|
|
}
|
|
|
|
|
2017-04-12 04:40:21 -04:00
|
|
|
func NewClientManager(p proxy.Outbound, d proxy.Dialer, c *proxyman.MultiplexingConfig) *ClientManager {
|
2017-04-02 15:30:21 -04:00
|
|
|
return &ClientManager{
|
|
|
|
proxy: p,
|
|
|
|
dialer: d,
|
2017-04-12 04:40:21 -04:00
|
|
|
config: c,
|
2017-04-02 15:30:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ClientManager) Dispatch(ctx context.Context, outboundRay ray.OutboundRay) error {
|
|
|
|
m.access.Lock()
|
|
|
|
defer m.access.Unlock()
|
|
|
|
|
|
|
|
for _, client := range m.clients {
|
|
|
|
if client.Dispatch(ctx, outboundRay) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := NewClient(m.proxy, m.dialer, m)
|
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to create client").Base(err)
|
2017-04-02 15:30:21 -04:00
|
|
|
}
|
|
|
|
m.clients = append(m.clients, client)
|
|
|
|
client.Dispatch(ctx, outboundRay)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ClientManager) onClientFinish() {
|
|
|
|
m.access.Lock()
|
|
|
|
defer m.access.Unlock()
|
|
|
|
|
2017-04-03 17:43:33 -04:00
|
|
|
activeClients := make([]*Client, 0, len(m.clients))
|
|
|
|
|
|
|
|
for _, client := range m.clients {
|
|
|
|
if !client.Closed() {
|
|
|
|
activeClients = append(activeClients, client)
|
2017-04-02 15:30:21 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-03 17:43:33 -04:00
|
|
|
m.clients = activeClients
|
2017-04-02 15:30:21 -04:00
|
|
|
}
|
|
|
|
|
2017-03-31 18:53:01 -04:00
|
|
|
type Client struct {
|
2017-04-12 16:31:11 -04:00
|
|
|
sessionManager *SessionManager
|
2017-04-05 08:13:26 -04:00
|
|
|
inboundRay ray.InboundRay
|
|
|
|
ctx context.Context
|
|
|
|
cancel context.CancelFunc
|
|
|
|
manager *ClientManager
|
2017-04-12 04:40:21 -04:00
|
|
|
concurrency uint32
|
2017-03-31 18:53:01 -04:00
|
|
|
}
|
|
|
|
|
2017-05-17 15:13:01 -04:00
|
|
|
var muxCoolAddress = net.DomainAddress("v1.mux.cool")
|
|
|
|
var muxCoolPort = net.Port(9527)
|
2017-03-31 18:53:01 -04:00
|
|
|
|
2017-04-26 15:43:53 -04:00
|
|
|
// NewClient creates a new mux.Client.
|
2017-04-02 15:30:21 -04:00
|
|
|
func NewClient(p proxy.Outbound, dialer proxy.Dialer, m *ClientManager) (*Client, error) {
|
2017-04-02 03:48:30 -04:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
2017-05-17 15:13:01 -04:00
|
|
|
ctx = proxy.ContextWithTarget(ctx, net.TCPDestination(muxCoolAddress, muxCoolPort))
|
2017-04-02 03:48:30 -04:00
|
|
|
pipe := ray.NewRay(ctx)
|
2017-10-20 15:11:13 -04:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
if err := p.Process(ctx, pipe, dialer); err != nil {
|
|
|
|
cancel()
|
2017-10-24 11:33:46 -04:00
|
|
|
|
|
|
|
traceErr := errors.New("failed to handler mux client connection").Base(err)
|
|
|
|
if err != io.EOF && err != context.Canceled {
|
|
|
|
traceErr = traceErr.AtWarning()
|
|
|
|
}
|
2017-12-19 15:28:12 -05:00
|
|
|
traceErr.WriteToLog()
|
2017-10-20 15:11:13 -04:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2017-04-03 06:55:46 -04:00
|
|
|
c := &Client{
|
2017-04-12 16:31:11 -04:00
|
|
|
sessionManager: NewSessionManager(),
|
2017-04-05 08:13:26 -04:00
|
|
|
inboundRay: pipe,
|
|
|
|
ctx: ctx,
|
|
|
|
cancel: cancel,
|
|
|
|
manager: m,
|
2017-04-12 04:40:21 -04:00
|
|
|
concurrency: m.config.Concurrency,
|
2017-04-03 06:55:46 -04:00
|
|
|
}
|
|
|
|
go c.fetchOutput()
|
2017-04-05 08:13:26 -04:00
|
|
|
go c.monitor()
|
2017-04-03 06:55:46 -04:00
|
|
|
return c, nil
|
2017-02-07 15:11:47 -05:00
|
|
|
}
|
|
|
|
|
2017-10-24 11:33:46 -04:00
|
|
|
// Closed returns true if this Client is closed.
|
2017-04-02 03:48:30 -04:00
|
|
|
func (m *Client) Closed() bool {
|
|
|
|
select {
|
|
|
|
case <-m.ctx.Done():
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
2017-03-26 19:47:01 -04:00
|
|
|
}
|
|
|
|
|
2017-04-05 08:13:26 -04:00
|
|
|
func (m *Client) monitor() {
|
2017-04-05 08:26:20 -04:00
|
|
|
defer m.manager.onClientFinish()
|
|
|
|
|
2017-05-08 18:01:15 -04:00
|
|
|
timer := time.NewTicker(time.Second * 16)
|
|
|
|
defer timer.Stop()
|
|
|
|
|
2017-04-05 08:13:26 -04:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-m.ctx.Done():
|
2017-04-13 14:56:32 -04:00
|
|
|
m.sessionManager.Close()
|
2017-04-12 16:31:11 -04:00
|
|
|
m.inboundRay.InboundInput().Close()
|
|
|
|
m.inboundRay.InboundOutput().CloseError()
|
2017-04-05 08:13:26 -04:00
|
|
|
return
|
2017-05-08 18:01:15 -04:00
|
|
|
case <-timer.C:
|
2017-04-12 16:31:11 -04:00
|
|
|
size := m.sessionManager.Size()
|
2017-04-13 14:14:07 -04:00
|
|
|
if size == 0 && m.sessionManager.CloseIfNoSession() {
|
2017-04-05 09:22:21 -04:00
|
|
|
m.cancel()
|
|
|
|
}
|
2017-04-05 08:13:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 16:31:11 -04:00
|
|
|
func fetchInput(ctx context.Context, s *Session, output buf.Writer) {
|
2017-03-31 18:53:01 -04:00
|
|
|
dest, _ := proxy.TargetFromContext(ctx)
|
2017-05-02 17:36:37 -04:00
|
|
|
transferType := protocol.TransferTypeStream
|
|
|
|
if dest.Network == net.Network_UDP {
|
|
|
|
transferType = protocol.TransferTypePacket
|
2017-04-03 06:55:46 -04:00
|
|
|
}
|
2017-05-02 17:36:37 -04:00
|
|
|
s.transferType = transferType
|
|
|
|
writer := NewWriter(s.ID, dest, output, transferType)
|
2017-04-03 06:55:46 -04:00
|
|
|
defer writer.Close()
|
2017-05-02 17:53:39 -04:00
|
|
|
defer s.Close()
|
2017-04-03 06:55:46 -04:00
|
|
|
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("dispatching request to ", dest).WriteToLog()
|
2017-04-03 06:55:46 -04:00
|
|
|
data, _ := s.input.ReadTimeout(time.Millisecond * 500)
|
2017-11-09 16:33:15 -05:00
|
|
|
if err := writer.WriteMultiBuffer(data); err != nil {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("failed to write first payload").Base(err).WriteToLog()
|
2017-04-19 10:29:36 -04:00
|
|
|
return
|
2017-03-31 18:53:01 -04:00
|
|
|
}
|
2017-04-27 16:30:48 -04:00
|
|
|
if err := buf.Copy(s.input, writer); err != nil {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("failed to fetch all input").Base(err).WriteToLog()
|
2017-04-02 15:30:21 -04:00
|
|
|
}
|
2017-03-31 18:53:01 -04:00
|
|
|
}
|
|
|
|
|
2017-04-02 03:48:30 -04:00
|
|
|
func (m *Client) Dispatch(ctx context.Context, outboundRay ray.OutboundRay) bool {
|
2017-04-19 15:27:21 -04:00
|
|
|
sm := m.sessionManager
|
|
|
|
if sm.Size() >= int(m.concurrency) || sm.Count() >= maxTotal {
|
2017-04-02 03:48:30 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-m.ctx.Done():
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2017-04-19 15:27:21 -04:00
|
|
|
s := sm.Allocate()
|
2017-04-13 14:14:07 -04:00
|
|
|
if s == nil {
|
|
|
|
return false
|
2017-03-31 18:53:01 -04:00
|
|
|
}
|
2017-04-13 14:14:07 -04:00
|
|
|
s.input = outboundRay.OutboundInput()
|
|
|
|
s.output = outboundRay.OutboundOutput()
|
2017-04-03 06:55:46 -04:00
|
|
|
go fetchInput(ctx, s, m.inboundRay.InboundInput())
|
2017-04-02 03:48:30 -04:00
|
|
|
return true
|
2017-03-31 18:53:01 -04:00
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func drain(reader *buf.BufferedReader) error {
|
2017-10-21 13:27:20 -04:00
|
|
|
return buf.Copy(NewStreamReader(reader), buf.Discard)
|
2017-04-03 17:43:33 -04:00
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (m *Client) handleStatueKeepAlive(meta *FrameMetadata, reader *buf.BufferedReader) error {
|
2017-04-14 04:03:10 -04:00
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (m *Client) handleStatusNew(meta *FrameMetadata, reader *buf.BufferedReader) error {
|
2017-04-14 04:03:10 -04:00
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (m *Client) handleStatusKeep(meta *FrameMetadata, reader *buf.BufferedReader) error {
|
2017-04-14 04:03:10 -04:00
|
|
|
if !meta.Option.Has(OptionData) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if s, found := m.sessionManager.Get(meta.SessionID); found {
|
2017-05-02 16:23:07 -04:00
|
|
|
return buf.Copy(s.NewReader(reader), s.output, buf.IgnoreWriterError())
|
2017-04-14 04:03:10 -04:00
|
|
|
}
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (m *Client) handleStatusEnd(meta *FrameMetadata, reader *buf.BufferedReader) error {
|
2017-04-14 04:03:10 -04:00
|
|
|
if s, found := m.sessionManager.Get(meta.SessionID); found {
|
2017-05-02 17:53:39 -04:00
|
|
|
s.Close()
|
2017-04-14 04:03:10 -04:00
|
|
|
}
|
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-31 18:53:01 -04:00
|
|
|
func (m *Client) fetchOutput() {
|
2017-04-05 08:13:26 -04:00
|
|
|
defer m.cancel()
|
|
|
|
|
2017-11-09 16:33:15 -05:00
|
|
|
reader := buf.NewBufferedReader(m.inboundRay.InboundOutput())
|
2017-05-02 16:23:07 -04:00
|
|
|
|
2017-03-31 18:53:01 -04:00
|
|
|
for {
|
2017-10-27 10:32:00 -04:00
|
|
|
meta, err := ReadMetadata(reader)
|
2017-03-31 18:53:01 -04:00
|
|
|
if err != nil {
|
2017-04-16 07:24:02 -04:00
|
|
|
if errors.Cause(err) != io.EOF {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("failed to read metadata").Base(err).WriteToLog()
|
2017-04-16 07:24:02 -04:00
|
|
|
}
|
2017-03-31 18:53:01 -04:00
|
|
|
break
|
|
|
|
}
|
2017-04-12 17:55:59 -04:00
|
|
|
|
|
|
|
switch meta.SessionStatus {
|
|
|
|
case SessionStatusKeepAlive:
|
2017-04-14 04:03:10 -04:00
|
|
|
err = m.handleStatueKeepAlive(meta, reader)
|
2017-04-12 17:55:59 -04:00
|
|
|
case SessionStatusEnd:
|
2017-04-14 04:03:10 -04:00
|
|
|
err = m.handleStatusEnd(meta, reader)
|
2017-04-12 17:55:59 -04:00
|
|
|
case SessionStatusNew:
|
2017-04-14 04:03:10 -04:00
|
|
|
err = m.handleStatusNew(meta, reader)
|
2017-04-12 17:55:59 -04:00
|
|
|
case SessionStatusKeep:
|
2017-04-14 04:03:10 -04:00
|
|
|
err = m.handleStatusKeep(meta, reader)
|
|
|
|
default:
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("unknown status: ", meta.SessionStatus).AtWarning().WriteToLog()
|
2017-04-14 04:03:10 -04:00
|
|
|
return
|
2017-04-03 17:43:33 -04:00
|
|
|
}
|
|
|
|
|
2017-04-14 04:03:10 -04:00
|
|
|
if err != nil {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("failed to process data").Base(err).WriteToLog()
|
2017-04-14 04:03:10 -04:00
|
|
|
return
|
2017-03-31 18:53:01 -04:00
|
|
|
}
|
|
|
|
}
|
2017-02-07 15:11:47 -05:00
|
|
|
}
|
2017-04-02 03:48:30 -04:00
|
|
|
|
|
|
|
type Server struct {
|
|
|
|
dispatcher dispatcher.Interface
|
|
|
|
}
|
|
|
|
|
2017-04-26 15:43:53 -04:00
|
|
|
// NewServer creates a new mux.Server.
|
2017-04-02 08:06:20 -04:00
|
|
|
func NewServer(ctx context.Context) *Server {
|
|
|
|
s := &Server{}
|
|
|
|
space := app.SpaceFromContext(ctx)
|
2017-11-28 17:41:20 -05:00
|
|
|
space.On(app.SpaceInitializing, func(interface{}) error {
|
2017-04-02 08:06:20 -04:00
|
|
|
d := dispatcher.FromSpace(space)
|
|
|
|
if d == nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("no dispatcher in space")
|
2017-04-02 08:06:20 -04:00
|
|
|
}
|
|
|
|
s.dispatcher = d
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2017-04-02 03:48:30 -04:00
|
|
|
func (s *Server) Dispatch(ctx context.Context, dest net.Destination) (ray.InboundRay, error) {
|
2017-05-17 15:13:01 -04:00
|
|
|
if dest.Address != muxCoolAddress {
|
2017-04-02 03:48:30 -04:00
|
|
|
return s.dispatcher.Dispatch(ctx, dest)
|
|
|
|
}
|
|
|
|
|
|
|
|
ray := ray.NewRay(ctx)
|
2017-04-02 08:06:20 -04:00
|
|
|
worker := &ServerWorker{
|
2017-04-12 16:31:11 -04:00
|
|
|
dispatcher: s.dispatcher,
|
|
|
|
outboundRay: ray,
|
|
|
|
sessionManager: NewSessionManager(),
|
2017-04-02 08:06:20 -04:00
|
|
|
}
|
|
|
|
go worker.run(ctx)
|
2017-04-02 03:48:30 -04:00
|
|
|
return ray, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type ServerWorker struct {
|
2017-04-12 16:31:11 -04:00
|
|
|
dispatcher dispatcher.Interface
|
|
|
|
outboundRay ray.OutboundRay
|
|
|
|
sessionManager *SessionManager
|
2017-04-02 03:48:30 -04:00
|
|
|
}
|
|
|
|
|
2017-04-12 16:31:11 -04:00
|
|
|
func handle(ctx context.Context, s *Session, output buf.Writer) {
|
2017-05-02 16:23:07 -04:00
|
|
|
writer := NewResponseWriter(s.ID, output, s.transferType)
|
2017-04-27 16:30:48 -04:00
|
|
|
if err := buf.Copy(s.input, writer); err != nil {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("session ", s.ID, " ends: ").Base(err).WriteToLog()
|
2017-04-02 03:48:30 -04:00
|
|
|
}
|
2017-04-04 05:20:07 -04:00
|
|
|
writer.Close()
|
2017-05-02 17:53:39 -04:00
|
|
|
s.Close()
|
2017-04-02 03:48:30 -04:00
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (w *ServerWorker) handleStatusKeepAlive(meta *FrameMetadata, reader *buf.BufferedReader) error {
|
2017-04-14 04:03:10 -04:00
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (w *ServerWorker) handleStatusNew(ctx context.Context, meta *FrameMetadata, reader *buf.BufferedReader) error {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("received request for ", meta.Target).WriteToLog()
|
2017-04-14 04:03:10 -04:00
|
|
|
inboundRay, err := w.dispatcher.Dispatch(ctx, meta.Target)
|
|
|
|
if err != nil {
|
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
drain(reader)
|
|
|
|
}
|
|
|
|
return newError("failed to dispatch request.").Base(err)
|
|
|
|
}
|
|
|
|
s := &Session{
|
2017-05-02 16:23:07 -04:00
|
|
|
input: inboundRay.InboundOutput(),
|
|
|
|
output: inboundRay.InboundInput(),
|
|
|
|
parent: w.sessionManager,
|
|
|
|
ID: meta.SessionID,
|
|
|
|
transferType: protocol.TransferTypeStream,
|
|
|
|
}
|
|
|
|
if meta.Target.Network == net.Network_UDP {
|
|
|
|
s.transferType = protocol.TransferTypePacket
|
2017-04-14 04:03:10 -04:00
|
|
|
}
|
|
|
|
w.sessionManager.Add(s)
|
|
|
|
go handle(ctx, s, w.outboundRay.OutboundOutput())
|
|
|
|
if meta.Option.Has(OptionData) {
|
2017-05-02 16:23:07 -04:00
|
|
|
return buf.Copy(s.NewReader(reader), s.output, buf.IgnoreWriterError())
|
2017-04-14 04:03:10 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (w *ServerWorker) handleStatusKeep(meta *FrameMetadata, reader *buf.BufferedReader) error {
|
2017-04-14 04:03:10 -04:00
|
|
|
if !meta.Option.Has(OptionData) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if s, found := w.sessionManager.Get(meta.SessionID); found {
|
2017-05-02 16:23:07 -04:00
|
|
|
return buf.Copy(s.NewReader(reader), s.output, buf.IgnoreWriterError())
|
2017-04-14 04:03:10 -04:00
|
|
|
}
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (w *ServerWorker) handleStatusEnd(meta *FrameMetadata, reader *buf.BufferedReader) error {
|
2017-04-14 04:03:10 -04:00
|
|
|
if s, found := w.sessionManager.Get(meta.SessionID); found {
|
2017-05-02 17:53:39 -04:00
|
|
|
s.Close()
|
2017-04-14 04:03:10 -04:00
|
|
|
}
|
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-24 19:05:30 -05:00
|
|
|
func (w *ServerWorker) handleFrame(ctx context.Context, reader *buf.BufferedReader) error {
|
2017-10-27 10:32:00 -04:00
|
|
|
meta, err := ReadMetadata(reader)
|
2017-04-26 15:43:53 -04:00
|
|
|
if err != nil {
|
|
|
|
return newError("failed to read metadata").Base(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch meta.SessionStatus {
|
|
|
|
case SessionStatusKeepAlive:
|
|
|
|
err = w.handleStatusKeepAlive(meta, reader)
|
|
|
|
case SessionStatusEnd:
|
|
|
|
err = w.handleStatusEnd(meta, reader)
|
|
|
|
case SessionStatusNew:
|
|
|
|
err = w.handleStatusNew(ctx, meta, reader)
|
|
|
|
case SessionStatusKeep:
|
|
|
|
err = w.handleStatusKeep(meta, reader)
|
|
|
|
default:
|
|
|
|
return newError("unknown status: ", meta.SessionStatus).AtWarning()
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return newError("failed to process data").Base(err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-02 03:48:30 -04:00
|
|
|
func (w *ServerWorker) run(ctx context.Context) {
|
|
|
|
input := w.outboundRay.OutboundInput()
|
2017-11-09 16:33:15 -05:00
|
|
|
reader := buf.NewBufferedReader(input)
|
2017-04-13 14:56:32 -04:00
|
|
|
|
|
|
|
defer w.sessionManager.Close()
|
2017-04-14 04:03:10 -04:00
|
|
|
|
2017-04-02 03:48:30 -04:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
default:
|
2017-10-27 10:32:00 -04:00
|
|
|
err := w.handleFrame(ctx, reader)
|
2017-04-26 15:43:53 -04:00
|
|
|
if err != nil {
|
|
|
|
if errors.Cause(err) != io.EOF {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("unexpected EOF").Base(err).WriteToLog()
|
2017-04-26 15:43:53 -04:00
|
|
|
input.CloseError()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2017-04-02 03:48:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|