| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- package dispatcher
- //go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg impl -path App,Dispatcher,Default
- import (
- "context"
- "time"
- "v2ray.com/core"
- "v2ray.com/core/app/proxyman"
- "v2ray.com/core/common"
- "v2ray.com/core/common/buf"
- "v2ray.com/core/common/net"
- "v2ray.com/core/common/protocol"
- "v2ray.com/core/proxy"
- "v2ray.com/core/transport/ray"
- )
- var (
- errSniffingTimeout = newError("timeout on sniffing")
- )
- // DefaultDispatcher is a default implementation of Dispatcher.
- type DefaultDispatcher struct {
- ohm core.OutboundHandlerManager
- router core.Router
- policy core.PolicyManager
- stats core.StatManager
- }
- // NewDefaultDispatcher create a new DefaultDispatcher.
- func NewDefaultDispatcher(ctx context.Context, config *Config) (*DefaultDispatcher, error) {
- v := core.MustFromContext(ctx)
- d := &DefaultDispatcher{
- ohm: v.OutboundHandlerManager(),
- router: v.Router(),
- policy: v.PolicyManager(),
- stats: v.Stats(),
- }
- if err := v.RegisterFeature((*core.Dispatcher)(nil), d); err != nil {
- return nil, newError("unable to register Dispatcher").Base(err)
- }
- return d, nil
- }
- // Start implements common.Runnable.
- func (*DefaultDispatcher) Start() error {
- return nil
- }
- // Close implements common.Closable.
- func (*DefaultDispatcher) Close() error { return nil }
- func (d *DefaultDispatcher) getStatCounter(name string) core.StatCounter {
- c := d.stats.GetCounter(name)
- if c != nil {
- return c
- }
- c, err := d.stats.RegisterCounter(name)
- if err != nil {
- return nil
- }
- return c
- }
- func (d *DefaultDispatcher) getRayOption(user *protocol.User) []ray.Option {
- var rayOptions []ray.Option
- if user != nil && len(user.Email) > 0 {
- p := d.policy.ForLevel(user.Level)
- if p.Stats.UserUplink {
- name := "user>>>" + user.Email + ">>>traffic>>>uplink"
- if c := d.getStatCounter(name); c != nil {
- rayOptions = append(rayOptions, ray.WithUplinkStatCounter(c))
- }
- }
- if p.Stats.UserDownlink {
- name := "user>>>" + user.Email + ">>>traffic>>>downlink"
- if c := d.getStatCounter(name); c != nil {
- rayOptions = append(rayOptions, ray.WithDownlinkStatCounter(c))
- }
- }
- }
- return rayOptions
- }
- // Dispatch implements core.Dispatcher.
- func (d *DefaultDispatcher) Dispatch(ctx context.Context, destination net.Destination) (ray.InboundRay, error) {
- if !destination.IsValid() {
- panic("Dispatcher: Invalid destination.")
- }
- ctx = proxy.ContextWithTarget(ctx, destination)
- user := protocol.UserFromContext(ctx)
- rayOptions := d.getRayOption(user)
- outbound := ray.New(ctx, rayOptions...)
- snifferList := proxyman.ProtocolSniffersFromContext(ctx)
- if destination.Address.Family().IsDomain() || len(snifferList) == 0 {
- go d.routedDispatch(ctx, outbound, destination)
- } else {
- go func() {
- domain, err := sniffer(ctx, snifferList, outbound)
- if err == nil {
- newError("sniffed domain: ", domain).WithContext(ctx).WriteToLog()
- destination.Address = net.ParseAddress(domain)
- ctx = proxy.ContextWithTarget(ctx, destination)
- }
- d.routedDispatch(ctx, outbound, destination)
- }()
- }
- return outbound, nil
- }
- func sniffer(ctx context.Context, snifferList []proxyman.KnownProtocols, outbound ray.OutboundRay) (string, error) {
- payload := buf.New()
- defer payload.Release()
- sniffer := NewSniffer(snifferList)
- totalAttempt := 0
- for {
- select {
- case <-ctx.Done():
- return "", ctx.Err()
- default:
- totalAttempt++
- if totalAttempt > 5 {
- return "", errSniffingTimeout
- }
- outbound.OutboundInput().Peek(payload)
- if !payload.IsEmpty() {
- domain, err := sniffer.Sniff(payload.Bytes())
- if err != ErrMoreData {
- return domain, err
- }
- }
- if payload.IsFull() {
- return "", ErrInvalidData
- }
- time.Sleep(time.Millisecond * 100)
- }
- }
- }
- func (d *DefaultDispatcher) routedDispatch(ctx context.Context, outbound ray.OutboundRay, destination net.Destination) {
- dispatcher := d.ohm.GetDefaultHandler()
- if d.router != nil {
- if tag, err := d.router.PickRoute(ctx); err == nil {
- if handler := d.ohm.GetHandler(tag); handler != nil {
- newError("taking detour [", tag, "] for [", destination, "]").WithContext(ctx).WriteToLog()
- dispatcher = handler
- } else {
- newError("non existing tag: ", tag).AtWarning().WithContext(ctx).WriteToLog()
- }
- } else {
- newError("default route for ", destination).WithContext(ctx).WriteToLog()
- }
- }
- dispatcher.Dispatch(ctx, outbound)
- }
- func init() {
- common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
- return NewDefaultDispatcher(ctx, config.(*Config))
- }))
- }
|