v2fly/app/dispatcher/default.go

155 lines
4.1 KiB
Go
Raw Normal View History

package dispatcher
2016-05-18 06:05:52 +00:00
2017-12-03 00:04:57 +00:00
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg impl -path App,Dispatcher,Default
2017-04-08 23:43:25 +00:00
2016-05-18 06:05:52 +00:00
import (
2017-01-13 12:41:40 +00:00
"context"
2017-04-24 22:49:27 +00:00
"time"
2017-01-04 11:34:01 +00:00
"v2ray.com/core"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app/proxyman"
2017-01-06 14:32:36 +00:00
"v2ray.com/core/common"
2017-04-25 08:48:06 +00:00
"v2ray.com/core/common/buf"
"v2ray.com/core/common/net"
2018-03-30 21:48:45 +00:00
"v2ray.com/core/common/protocol"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/proxy"
"v2ray.com/core/transport/ray"
2016-05-18 06:05:52 +00:00
)
2017-04-24 22:49:27 +00:00
var (
errSniffingTimeout = newError("timeout on sniffing")
)
2017-04-25 08:48:06 +00:00
// DefaultDispatcher is a default implementation of Dispatcher.
2016-05-18 06:05:52 +00:00
type DefaultDispatcher struct {
ohm core.OutboundHandlerManager
router core.Router
2018-03-30 21:48:45 +00:00
policy core.PolicyManager
stats core.StatManager
2016-05-18 06:05:52 +00:00
}
2017-04-25 08:48:06 +00:00
// NewDefaultDispatcher create a new DefaultDispatcher.
func NewDefaultDispatcher(ctx context.Context, config *Config) (*DefaultDispatcher, error) {
2018-02-21 16:05:29 +00:00
v := core.MustFromContext(ctx)
d := &DefaultDispatcher{
ohm: v.OutboundHandlerManager(),
router: v.Router(),
2018-03-30 21:48:45 +00:00
policy: v.PolicyManager(),
stats: v.Stats(),
}
if err := v.RegisterFeature((*core.Dispatcher)(nil), d); err != nil {
return nil, newError("unable to register Dispatcher")
2017-01-13 12:41:40 +00:00
}
return d, nil
}
2017-04-26 19:28:10 +00:00
// Start implements app.Application.
2017-04-25 08:48:06 +00:00
func (*DefaultDispatcher) Start() error {
2017-02-01 20:35:40 +00:00
return nil
}
2017-04-26 19:28:10 +00:00
// Close implements app.Application.
2018-02-08 14:39:46 +00:00
func (*DefaultDispatcher) Close() error { return nil }
2017-02-01 20:35:40 +00:00
2018-03-30 21:48:45 +00:00
func getStatsName(u *protocol.User) string {
return "user>traffic>" + u.Email
}
// Dispatch implements core.Dispatcher.
2017-04-23 17:16:56 +00:00
func (d *DefaultDispatcher) Dispatch(ctx context.Context, destination net.Destination) (ray.InboundRay, error) {
if !destination.IsValid() {
panic("Dispatcher: Invalid destination.")
}
2017-02-09 21:49:38 +00:00
ctx = proxy.ContextWithTarget(ctx, destination)
2018-03-30 21:48:45 +00:00
var rayOptions []ray.Option
user := protocol.UserFromContext(ctx)
if user != nil && len(user.Email) > 0 {
name := getStatsName(user)
c, err := d.stats.RegisterCounter(name)
if err != nil {
c = d.stats.GetCounter(name)
}
if c == nil {
newError("failed to get stats counter ", name).AtWarning().WithContext(ctx).WriteToLog()
}
p := d.policy.ForLevel(user.Level)
if p.Stats.EnablePerUser {
rayOptions = append(rayOptions, ray.WithStatCounter(c))
}
}
outbound := ray.New(ctx, rayOptions...)
2018-03-15 02:32:10 +00:00
snifferList := proxyman.ProtocolSniffersFromContext(ctx)
2018-02-26 01:06:27 +00:00
if destination.Address.Family().IsDomain() || len(snifferList) == 0 {
2017-04-24 22:49:27 +00:00
go d.routedDispatch(ctx, outbound, destination)
} else {
go func() {
2018-02-26 01:06:27 +00:00
domain, err := sniffer(ctx, snifferList, outbound)
2017-04-25 22:43:59 +00:00
if err == nil {
2018-02-22 14:26:00 +00:00
newError("sniffed domain: ", domain).WithContext(ctx).WriteToLog()
2017-04-25 22:43:59 +00:00
destination.Address = net.ParseAddress(domain)
ctx = proxy.ContextWithTarget(ctx, destination)
2017-04-24 22:49:27 +00:00
}
d.routedDispatch(ctx, outbound, destination)
}()
}
return outbound, nil
}
2018-02-26 01:06:27 +00:00
func sniffer(ctx context.Context, snifferList []proxyman.KnownProtocols, outbound ray.OutboundRay) (string, error) {
2017-04-25 08:48:06 +00:00
payload := buf.New()
defer payload.Release()
2018-02-26 01:06:27 +00:00
sniffer := NewSniffer(snifferList)
2017-04-24 22:49:27 +00:00
totalAttempt := 0
for {
select {
case <-ctx.Done():
2017-04-25 08:48:06 +00:00
return "", ctx.Err()
2017-04-26 19:24:58 +00:00
default:
2017-04-24 22:49:27 +00:00
totalAttempt++
if totalAttempt > 5 {
2017-04-25 08:48:06 +00:00
return "", errSniffingTimeout
2017-04-24 22:49:27 +00:00
}
2017-04-25 08:48:06 +00:00
outbound.OutboundInput().Peek(payload)
2017-04-26 19:24:58 +00:00
if !payload.IsEmpty() {
2017-06-05 21:27:50 +00:00
domain, err := sniffer.Sniff(payload.Bytes())
2017-04-24 22:49:27 +00:00
if err != ErrMoreData {
2017-04-25 08:48:06 +00:00
return domain, err
2017-04-24 22:49:27 +00:00
}
}
2017-04-25 08:48:06 +00:00
if payload.IsFull() {
return "", ErrInvalidData
2017-04-24 23:40:34 +00:00
}
2017-04-26 19:24:58 +00:00
time.Sleep(time.Millisecond * 100)
2017-04-24 22:49:27 +00:00
}
}
}
func (d *DefaultDispatcher) routedDispatch(ctx context.Context, outbound ray.OutboundRay, destination net.Destination) {
dispatcher := d.ohm.GetDefaultHandler()
2017-04-23 17:16:56 +00:00
if d.router != nil {
if tag, err := d.router.PickRoute(ctx); err == nil {
2017-04-23 17:16:56 +00:00
if handler := d.ohm.GetHandler(tag); handler != nil {
2018-02-22 14:26:00 +00:00
newError("taking detour [", tag, "] for [", destination, "]").WithContext(ctx).WriteToLog()
2016-05-18 06:05:52 +00:00
dispatcher = handler
} else {
2018-03-15 02:32:10 +00:00
newError("non existing tag: ", tag).AtWarning().WithContext(ctx).WriteToLog()
2016-05-18 06:05:52 +00:00
}
} else {
2018-02-22 14:26:00 +00:00
newError("default route for ", destination).WithContext(ctx).WriteToLog()
2016-05-18 06:05:52 +00:00
}
}
2017-04-24 22:49:27 +00:00
dispatcher.Dispatch(ctx, outbound)
2016-05-18 06:05:52 +00:00
}
2016-12-16 14:39:47 +00:00
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return NewDefaultDispatcher(ctx, config.(*Config))
2017-01-13 12:41:40 +00:00
}))
2016-12-16 14:39:47 +00:00
}