| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 | 
							- package mux
 
- //go:generate go run $GOPATH/src/v2ray.com/core/tools/generrorgen/main.go -pkg mux -path App,Proxyman,Mux
 
- import (
 
- 	"context"
 
- 	"io"
 
- 	"sync"
 
- 	"time"
 
- 	"v2ray.com/core/app"
 
- 	"v2ray.com/core/app/dispatcher"
 
- 	"v2ray.com/core/app/log"
 
- 	"v2ray.com/core/app/proxyman"
 
- 	"v2ray.com/core/common/buf"
 
- 	"v2ray.com/core/common/errors"
 
- 	"v2ray.com/core/common/net"
 
- 	"v2ray.com/core/common/protocol"
 
- 	"v2ray.com/core/proxy"
 
- 	"v2ray.com/core/transport/ray"
 
- )
 
- const (
 
- 	maxTotal = 128
 
- )
 
- type ClientManager struct {
 
- 	access  sync.Mutex
 
- 	clients []*Client
 
- 	proxy   proxy.Outbound
 
- 	dialer  proxy.Dialer
 
- 	config  *proxyman.MultiplexingConfig
 
- }
 
- func NewClientManager(p proxy.Outbound, d proxy.Dialer, c *proxyman.MultiplexingConfig) *ClientManager {
 
- 	return &ClientManager{
 
- 		proxy:  p,
 
- 		dialer: d,
 
- 		config: c,
 
- 	}
 
- }
 
- 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 {
 
- 		return newError("failed to create client").Base(err)
 
- 	}
 
- 	m.clients = append(m.clients, client)
 
- 	client.Dispatch(ctx, outboundRay)
 
- 	return nil
 
- }
 
- func (m *ClientManager) onClientFinish() {
 
- 	m.access.Lock()
 
- 	defer m.access.Unlock()
 
- 	activeClients := make([]*Client, 0, len(m.clients))
 
- 	for _, client := range m.clients {
 
- 		if !client.Closed() {
 
- 			activeClients = append(activeClients, client)
 
- 		}
 
- 	}
 
- 	m.clients = activeClients
 
- }
 
- type Client struct {
 
- 	sessionManager *SessionManager
 
- 	inboundRay     ray.InboundRay
 
- 	ctx            context.Context
 
- 	cancel         context.CancelFunc
 
- 	manager        *ClientManager
 
- 	concurrency    uint32
 
- }
 
- var muxCoolAddress = net.DomainAddress("v1.mux.cool")
 
- var muxCoolPort = net.Port(9527)
 
- // NewClient creates a new mux.Client.
 
- func NewClient(p proxy.Outbound, dialer proxy.Dialer, m *ClientManager) (*Client, error) {
 
- 	ctx, cancel := context.WithCancel(context.Background())
 
- 	ctx = proxy.ContextWithTarget(ctx, net.TCPDestination(muxCoolAddress, muxCoolPort))
 
- 	pipe := ray.NewRay(ctx)
 
- 	go func() {
 
- 		if err := p.Process(ctx, pipe, dialer); err != nil {
 
- 			cancel()
 
- 			log.Trace(errors.New("failed to handler mux client connection").Base(err).AtWarning())
 
- 		}
 
- 	}()
 
- 	c := &Client{
 
- 		sessionManager: NewSessionManager(),
 
- 		inboundRay:     pipe,
 
- 		ctx:            ctx,
 
- 		cancel:         cancel,
 
- 		manager:        m,
 
- 		concurrency:    m.config.Concurrency,
 
- 	}
 
- 	go c.fetchOutput()
 
- 	go c.monitor()
 
- 	return c, nil
 
- }
 
- func (m *Client) Closed() bool {
 
- 	select {
 
- 	case <-m.ctx.Done():
 
- 		return true
 
- 	default:
 
- 		return false
 
- 	}
 
- }
 
- func (m *Client) monitor() {
 
- 	defer m.manager.onClientFinish()
 
- 	timer := time.NewTicker(time.Second * 16)
 
- 	defer timer.Stop()
 
- 	for {
 
- 		select {
 
- 		case <-m.ctx.Done():
 
- 			m.sessionManager.Close()
 
- 			m.inboundRay.InboundInput().Close()
 
- 			m.inboundRay.InboundOutput().CloseError()
 
- 			return
 
- 		case <-timer.C:
 
- 			size := m.sessionManager.Size()
 
- 			if size == 0 && m.sessionManager.CloseIfNoSession() {
 
- 				m.cancel()
 
- 			}
 
- 		}
 
- 	}
 
- }
 
- func fetchInput(ctx context.Context, s *Session, output buf.Writer) {
 
- 	dest, _ := proxy.TargetFromContext(ctx)
 
- 	transferType := protocol.TransferTypeStream
 
- 	if dest.Network == net.Network_UDP {
 
- 		transferType = protocol.TransferTypePacket
 
- 	}
 
- 	s.transferType = transferType
 
- 	writer := NewWriter(s.ID, dest, output, transferType)
 
- 	defer writer.Close()
 
- 	defer s.Close()
 
- 	log.Trace(newError("dispatching request to ", dest))
 
- 	data, _ := s.input.ReadTimeout(time.Millisecond * 500)
 
- 	if err := writer.Write(data); err != nil {
 
- 		log.Trace(newError("failed to write first payload").Base(err))
 
- 		return
 
- 	}
 
- 	if err := buf.Copy(s.input, writer); err != nil {
 
- 		log.Trace(newError("failed to fetch all input").Base(err))
 
- 	}
 
- }
 
- func (m *Client) Dispatch(ctx context.Context, outboundRay ray.OutboundRay) bool {
 
- 	sm := m.sessionManager
 
- 	if sm.Size() >= int(m.concurrency) || sm.Count() >= maxTotal {
 
- 		return false
 
- 	}
 
- 	select {
 
- 	case <-m.ctx.Done():
 
- 		return false
 
- 	default:
 
- 	}
 
- 	s := sm.Allocate()
 
- 	if s == nil {
 
- 		return false
 
- 	}
 
- 	s.input = outboundRay.OutboundInput()
 
- 	s.output = outboundRay.OutboundOutput()
 
- 	go fetchInput(ctx, s, m.inboundRay.InboundInput())
 
- 	return true
 
- }
 
- func drain(reader io.Reader) error {
 
- 	return buf.Copy(NewStreamReader(reader), buf.Discard)
 
- }
 
- func (m *Client) handleStatueKeepAlive(meta *FrameMetadata, reader io.Reader) error {
 
- 	if meta.Option.Has(OptionData) {
 
- 		return drain(reader)
 
- 	}
 
- 	return nil
 
- }
 
- func (m *Client) handleStatusNew(meta *FrameMetadata, reader io.Reader) error {
 
- 	if meta.Option.Has(OptionData) {
 
- 		return drain(reader)
 
- 	}
 
- 	return nil
 
- }
 
- func (m *Client) handleStatusKeep(meta *FrameMetadata, reader io.Reader) error {
 
- 	if !meta.Option.Has(OptionData) {
 
- 		return nil
 
- 	}
 
- 	if s, found := m.sessionManager.Get(meta.SessionID); found {
 
- 		return buf.Copy(s.NewReader(reader), s.output, buf.IgnoreWriterError())
 
- 	}
 
- 	return drain(reader)
 
- }
 
- func (m *Client) handleStatusEnd(meta *FrameMetadata, reader io.Reader) error {
 
- 	if s, found := m.sessionManager.Get(meta.SessionID); found {
 
- 		s.Close()
 
- 	}
 
- 	if meta.Option.Has(OptionData) {
 
- 		return drain(reader)
 
- 	}
 
- 	return nil
 
- }
 
- func (m *Client) fetchOutput() {
 
- 	defer m.cancel()
 
- 	reader := buf.ToBytesReader(m.inboundRay.InboundOutput())
 
- 	metaReader := NewMetadataReader(reader)
 
- 	for {
 
- 		meta, err := metaReader.Read()
 
- 		if err != nil {
 
- 			if errors.Cause(err) != io.EOF {
 
- 				log.Trace(newError("failed to read metadata").Base(err))
 
- 			}
 
- 			break
 
- 		}
 
- 		switch meta.SessionStatus {
 
- 		case SessionStatusKeepAlive:
 
- 			err = m.handleStatueKeepAlive(meta, reader)
 
- 		case SessionStatusEnd:
 
- 			err = m.handleStatusEnd(meta, reader)
 
- 		case SessionStatusNew:
 
- 			err = m.handleStatusNew(meta, reader)
 
- 		case SessionStatusKeep:
 
- 			err = m.handleStatusKeep(meta, reader)
 
- 		default:
 
- 			log.Trace(newError("unknown status: ", meta.SessionStatus).AtWarning())
 
- 			return
 
- 		}
 
- 		if err != nil {
 
- 			log.Trace(newError("failed to process data").Base(err))
 
- 			return
 
- 		}
 
- 	}
 
- }
 
- type Server struct {
 
- 	dispatcher dispatcher.Interface
 
- }
 
- // NewServer creates a new mux.Server.
 
- func NewServer(ctx context.Context) *Server {
 
- 	s := &Server{}
 
- 	space := app.SpaceFromContext(ctx)
 
- 	space.OnInitialize(func() error {
 
- 		d := dispatcher.FromSpace(space)
 
- 		if d == nil {
 
- 			return newError("no dispatcher in space")
 
- 		}
 
- 		s.dispatcher = d
 
- 		return nil
 
- 	})
 
- 	return s
 
- }
 
- func (s *Server) Dispatch(ctx context.Context, dest net.Destination) (ray.InboundRay, error) {
 
- 	if dest.Address != muxCoolAddress {
 
- 		return s.dispatcher.Dispatch(ctx, dest)
 
- 	}
 
- 	ray := ray.NewRay(ctx)
 
- 	worker := &ServerWorker{
 
- 		dispatcher:     s.dispatcher,
 
- 		outboundRay:    ray,
 
- 		sessionManager: NewSessionManager(),
 
- 	}
 
- 	go worker.run(ctx)
 
- 	return ray, nil
 
- }
 
- type ServerWorker struct {
 
- 	dispatcher     dispatcher.Interface
 
- 	outboundRay    ray.OutboundRay
 
- 	sessionManager *SessionManager
 
- }
 
- func handle(ctx context.Context, s *Session, output buf.Writer) {
 
- 	writer := NewResponseWriter(s.ID, output, s.transferType)
 
- 	if err := buf.Copy(s.input, writer); err != nil {
 
- 		log.Trace(newError("session ", s.ID, " ends: ").Base(err))
 
- 	}
 
- 	writer.Close()
 
- 	s.Close()
 
- }
 
- func (w *ServerWorker) handleStatusKeepAlive(meta *FrameMetadata, reader io.Reader) error {
 
- 	if meta.Option.Has(OptionData) {
 
- 		return drain(reader)
 
- 	}
 
- 	return nil
 
- }
 
- func (w *ServerWorker) handleStatusNew(ctx context.Context, meta *FrameMetadata, reader io.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,
 
- 		transferType: protocol.TransferTypeStream,
 
- 	}
 
- 	if meta.Target.Network == net.Network_UDP {
 
- 		s.transferType = protocol.TransferTypePacket
 
- 	}
 
- 	w.sessionManager.Add(s)
 
- 	go handle(ctx, s, w.outboundRay.OutboundOutput())
 
- 	if meta.Option.Has(OptionData) {
 
- 		return buf.Copy(s.NewReader(reader), s.output, buf.IgnoreWriterError())
 
- 	}
 
- 	return nil
 
- }
 
- func (w *ServerWorker) handleStatusKeep(meta *FrameMetadata, reader io.Reader) error {
 
- 	if !meta.Option.Has(OptionData) {
 
- 		return nil
 
- 	}
 
- 	if s, found := w.sessionManager.Get(meta.SessionID); found {
 
- 		return buf.Copy(s.NewReader(reader), s.output, buf.IgnoreWriterError())
 
- 	}
 
- 	return drain(reader)
 
- }
 
- func (w *ServerWorker) handleStatusEnd(meta *FrameMetadata, reader io.Reader) error {
 
- 	if s, found := w.sessionManager.Get(meta.SessionID); found {
 
- 		s.Close()
 
- 	}
 
- 	if meta.Option.Has(OptionData) {
 
- 		return drain(reader)
 
- 	}
 
- 	return nil
 
- }
 
- func (w *ServerWorker) handleFrame(ctx context.Context, reader io.Reader) error {
 
- 	metaReader := NewMetadataReader(reader)
 
- 	meta, err := metaReader.Read()
 
- 	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
 
- }
 
- func (w *ServerWorker) run(ctx context.Context) {
 
- 	input := w.outboundRay.OutboundInput()
 
- 	reader := buf.ToBytesReader(input)
 
- 	defer w.sessionManager.Close()
 
- 	for {
 
- 		select {
 
- 		case <-ctx.Done():
 
- 			return
 
- 		default:
 
- 			err := w.handleFrame(ctx, reader)
 
- 			if err != nil {
 
- 				if errors.Cause(err) != io.EOF {
 
- 					log.Trace(newError("unexpected EOF").Base(err))
 
- 					input.CloseError()
 
- 				}
 
- 				return
 
- 			}
 
- 		}
 
- 	}
 
- }
 
 
  |