2017-02-07 15:11:47 -05:00
|
|
|
package mux
|
|
|
|
|
2017-04-08 19:43:25 -04:00
|
|
|
//go:generate go run $GOPATH/src/v2ray.com/core/tools/generrorgen/main.go -pkg mux -path App,Proxyman,Mux
|
|
|
|
|
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"
|
|
|
|
"v2ray.com/core/app/log"
|
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-03-31 18:53:01 -04:00
|
|
|
"v2ray.com/core/common/signal"
|
|
|
|
"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
|
|
|
|
session2Remove chan uint16
|
2017-04-12 04:40:21 -04:00
|
|
|
concurrency uint32
|
2017-03-31 18:53:01 -04:00
|
|
|
}
|
|
|
|
|
2017-04-02 03:48:30 -04:00
|
|
|
var muxCoolDestination = net.TCPDestination(net.DomainAddress("v1.mux.cool"), net.Port(9527))
|
2017-03-31 18:53:01 -04:00
|
|
|
|
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())
|
|
|
|
ctx = proxy.ContextWithTarget(ctx, muxCoolDestination)
|
|
|
|
pipe := ray.NewRay(ctx)
|
2017-04-03 06:55:46 -04:00
|
|
|
go p.Process(ctx, pipe, dialer)
|
|
|
|
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,
|
|
|
|
session2Remove: make(chan uint16, 16),
|
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-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-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-04-19 15:33:11 -04:00
|
|
|
case <-time.After(time.Second * 16):
|
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-04-02 07:43:24 -04:00
|
|
|
writer := &Writer{
|
2017-03-31 18:53:01 -04:00
|
|
|
dest: dest,
|
2017-04-12 16:31:11 -04:00
|
|
|
id: s.ID,
|
2017-04-03 06:55:46 -04:00
|
|
|
writer: output,
|
|
|
|
}
|
|
|
|
defer writer.Close()
|
2017-04-12 16:31:11 -04:00
|
|
|
defer s.CloseUplink()
|
2017-04-03 06:55:46 -04:00
|
|
|
|
2017-04-08 19:43:25 -04:00
|
|
|
log.Trace(newError("dispatching request to ", dest))
|
2017-04-03 06:55:46 -04:00
|
|
|
data, _ := s.input.ReadTimeout(time.Millisecond * 500)
|
2017-04-19 10:29:36 -04:00
|
|
|
if err := writer.Write(data); err != nil {
|
|
|
|
log.Trace(newError("failed to write first payload").Base(err))
|
|
|
|
return
|
2017-03-31 18:53:01 -04:00
|
|
|
}
|
2017-04-17 16:50:02 -04:00
|
|
|
if err := buf.Copy(signal.BackgroundTimer(), s.input, writer); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
log.Trace(newError("failed to fetch all input").Base(err))
|
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-04-03 17:43:33 -04:00
|
|
|
func drain(reader *Reader) error {
|
2017-04-15 15:07:23 -04:00
|
|
|
data, err := reader.Read()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2017-04-03 17:43:33 -04:00
|
|
|
}
|
2017-04-15 15:07:23 -04:00
|
|
|
data.Release()
|
|
|
|
return nil
|
2017-04-03 17:43:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func pipe(reader *Reader, writer buf.Writer) error {
|
2017-04-15 15:07:23 -04:00
|
|
|
data, err := reader.Read()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2017-04-03 17:43:33 -04:00
|
|
|
}
|
2017-04-15 15:07:23 -04:00
|
|
|
return writer.Write(data)
|
2017-04-03 17:43:33 -04:00
|
|
|
}
|
|
|
|
|
2017-04-14 04:03:10 -04:00
|
|
|
func (m *Client) handleStatueKeepAlive(meta *FrameMetadata, reader *Reader) error {
|
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Client) handleStatusNew(meta *FrameMetadata, reader *Reader) error {
|
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Client) handleStatusKeep(meta *FrameMetadata, reader *Reader) error {
|
|
|
|
if !meta.Option.Has(OptionData) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if s, found := m.sessionManager.Get(meta.SessionID); found {
|
|
|
|
return pipe(reader, s.output)
|
|
|
|
}
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Client) handleStatusEnd(meta *FrameMetadata, reader *Reader) error {
|
|
|
|
if s, found := m.sessionManager.Get(meta.SessionID); found {
|
|
|
|
s.CloseDownlink()
|
|
|
|
s.output.Close()
|
|
|
|
}
|
|
|
|
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-03-31 18:53:01 -04:00
|
|
|
reader := NewReader(m.inboundRay.InboundOutput())
|
|
|
|
for {
|
|
|
|
meta, err := reader.ReadMetadata()
|
|
|
|
if err != nil {
|
2017-04-16 07:24:02 -04:00
|
|
|
if errors.Cause(err) != io.EOF {
|
|
|
|
log.Trace(newError("failed to read metadata").Base(err))
|
|
|
|
}
|
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:
|
|
|
|
log.Trace(newError("unknown status: ", meta.SessionStatus).AtWarning())
|
|
|
|
return
|
2017-04-03 17:43:33 -04:00
|
|
|
}
|
|
|
|
|
2017-04-14 04:03:10 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Trace(newError("failed to process data").Base(err))
|
|
|
|
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-02 08:06:20 -04:00
|
|
|
func NewServer(ctx context.Context) *Server {
|
|
|
|
s := &Server{}
|
|
|
|
space := app.SpaceFromContext(ctx)
|
|
|
|
space.OnInitialize(func() error {
|
|
|
|
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) {
|
|
|
|
if dest != muxCoolDestination {
|
|
|
|
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) {
|
|
|
|
writer := NewResponseWriter(s.ID, output)
|
2017-04-17 16:50:02 -04:00
|
|
|
if err := buf.Copy(signal.BackgroundTimer(), s.input, writer); err != nil {
|
2017-04-12 16:31:11 -04:00
|
|
|
log.Trace(newError("session ", s.ID, " ends: ").Base(err))
|
2017-04-02 03:48:30 -04:00
|
|
|
}
|
2017-04-04 05:20:07 -04:00
|
|
|
writer.Close()
|
2017-04-12 16:31:11 -04:00
|
|
|
s.CloseDownlink()
|
2017-04-02 03:48:30 -04:00
|
|
|
}
|
|
|
|
|
2017-04-14 04:03:10 -04:00
|
|
|
func (w *ServerWorker) handleStatusKeepAlive(meta *FrameMetadata, reader *Reader) error {
|
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *ServerWorker) handleStatusNew(ctx context.Context, meta *FrameMetadata, reader *Reader) error {
|
|
|
|
log.Trace(newError("received request for ", meta.Target))
|
|
|
|
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{
|
|
|
|
input: inboundRay.InboundOutput(),
|
|
|
|
output: inboundRay.InboundInput(),
|
|
|
|
parent: w.sessionManager,
|
|
|
|
ID: meta.SessionID,
|
|
|
|
}
|
|
|
|
w.sessionManager.Add(s)
|
|
|
|
go handle(ctx, s, w.outboundRay.OutboundOutput())
|
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return pipe(reader, s.output)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *ServerWorker) handleStatusKeep(meta *FrameMetadata, reader *Reader) error {
|
|
|
|
if !meta.Option.Has(OptionData) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if s, found := w.sessionManager.Get(meta.SessionID); found {
|
|
|
|
return pipe(reader, s.output)
|
|
|
|
}
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *ServerWorker) handleStatusEnd(meta *FrameMetadata, reader *Reader) error {
|
|
|
|
if s, found := w.sessionManager.Get(meta.SessionID); found {
|
|
|
|
s.CloseUplink()
|
|
|
|
s.output.Close()
|
|
|
|
}
|
|
|
|
if meta.Option.Has(OptionData) {
|
|
|
|
return drain(reader)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-02 03:48:30 -04:00
|
|
|
func (w *ServerWorker) run(ctx context.Context) {
|
|
|
|
input := w.outboundRay.OutboundInput()
|
|
|
|
reader := NewReader(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:
|
|
|
|
}
|
|
|
|
|
|
|
|
meta, err := reader.ReadMetadata()
|
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
log.Trace(newError("failed to read metadata").Base(err))
|
2017-04-02 03:48:30 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-12 17:55:59 -04:00
|
|
|
switch meta.SessionStatus {
|
|
|
|
case SessionStatusKeepAlive:
|
2017-04-14 04:03:10 -04:00
|
|
|
err = w.handleStatusKeepAlive(meta, reader)
|
2017-04-12 17:55:59 -04:00
|
|
|
case SessionStatusEnd:
|
2017-04-14 04:03:10 -04:00
|
|
|
err = w.handleStatusEnd(meta, reader)
|
2017-04-12 17:55:59 -04:00
|
|
|
case SessionStatusNew:
|
2017-04-14 04:03:10 -04:00
|
|
|
err = w.handleStatusNew(ctx, meta, reader)
|
2017-04-12 17:55:59 -04:00
|
|
|
case SessionStatusKeep:
|
2017-04-14 04:03:10 -04:00
|
|
|
err = w.handleStatusKeep(meta, reader)
|
|
|
|
default:
|
|
|
|
log.Trace(newError("unknown status: ", meta.SessionStatus).AtWarning())
|
|
|
|
return
|
2017-04-02 03:48:30 -04:00
|
|
|
}
|
|
|
|
|
2017-04-14 04:03:10 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Trace(newError("failed to process data").Base(err))
|
|
|
|
return
|
2017-04-02 03:48:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|