1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00
v2fly/proxy/freedom/freedom.go

157 lines
4.2 KiB
Go
Raw Normal View History

2015-09-11 12:12:09 +00:00
package freedom
2015-09-09 15:39:06 +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 freedom -path Proxy,Freedom
2017-04-08 23:43:25 +00:00
2015-09-09 15:39:06 +00:00
import (
"context"
2016-12-09 12:17:34 +00:00
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app"
2017-11-27 21:09:30 +00:00
"v2ray.com/core/app/policy"
2016-12-27 23:53:29 +00:00
"v2ray.com/core/common"
2016-12-09 10:35:27 +00:00
"v2ray.com/core/common/buf"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/dice"
2017-01-13 22:42:39 +00:00
"v2ray.com/core/common/net"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/retry"
2016-12-29 23:32:20 +00:00
"v2ray.com/core/common/signal"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/proxy"
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/ray"
2015-09-09 15:39:06 +00:00
)
2017-11-15 17:28:39 +00:00
// Handler handles Freedom connections.
2016-12-22 12:33:28 +00:00
type Handler struct {
domainStrategy Config_DomainStrategy
timeout uint32
destOverride *DestinationOverride
2017-11-27 21:09:30 +00:00
policy policy.Policy
2016-05-22 20:30:21 +00:00
}
2017-11-15 17:28:39 +00:00
// New creates a new Freedom handler.
func New(ctx context.Context, config *Config) (*Handler, error) {
space := app.SpaceFromContext(ctx)
if space == nil {
2017-04-08 23:43:25 +00:00
return nil, newError("no space in context")
}
2016-12-22 12:33:28 +00:00
f := &Handler{
domainStrategy: config.DomainStrategy,
timeout: config.Timeout,
destOverride: config.DestinationOverride,
2016-05-22 20:30:21 +00:00
}
2017-11-28 22:41:20 +00:00
space.On(app.SpaceInitializing, func(interface{}) error {
2017-11-27 21:18:39 +00:00
pm := policy.FromSpace(space)
2017-11-27 21:09:30 +00:00
if pm == nil {
return newError("Policy not found in space.")
}
f.policy = pm.GetPolicy(config.UserLevel)
if config.Timeout > 0 && config.UserLevel == 0 {
f.policy.Timeout.ConnectionIdle.Value = config.Timeout
}
2016-05-22 20:30:21 +00:00
return nil
})
return f, nil
2016-05-22 20:30:21 +00:00
}
2017-11-15 17:28:39 +00:00
func (h *Handler) resolveIP(ctx context.Context, domain string) net.Address {
2017-11-15 11:55:54 +00:00
if resolver, ok := proxy.ResolvedIPsFromContext(ctx); ok {
ips := resolver.Resolve()
if len(ips) == 0 {
return nil
}
return ips[dice.Roll(len(ips))]
2016-05-22 20:30:21 +00:00
}
2017-12-19 22:55:09 +00:00
ips, err := net.LookupIP(domain)
if err != nil {
newError("failed to get IP address for domain ", domain).Base(err).WriteToLog()
}
2016-05-22 20:30:21 +00:00
if len(ips) == 0 {
2017-11-15 11:55:54 +00:00
return nil
2016-05-22 20:30:21 +00:00
}
2017-11-15 11:55:54 +00:00
return net.IPAddress(ips[dice.Roll(len(ips))])
2015-09-09 15:39:06 +00:00
}
2017-11-15 17:28:39 +00:00
// Process implements proxy.Outbound.
func (h *Handler) Process(ctx context.Context, outboundRay ray.OutboundRay, dialer proxy.Dialer) error {
2017-02-09 21:49:38 +00:00
destination, _ := proxy.TargetFromContext(ctx)
2017-11-15 17:28:39 +00:00
if h.destOverride != nil {
server := h.destOverride.Server
destination = net.Destination{
Network: destination.Network,
Address: server.Address.AsAddress(),
Port: net.Port(server.Port),
}
}
2017-12-19 20:28:12 +00:00
newError("opening connection to ", destination).WriteToLog()
2015-12-17 00:19:04 +00:00
input := outboundRay.OutboundInput()
output := outboundRay.OutboundOutput()
2016-04-18 16:44:10 +00:00
2017-11-15 17:28:39 +00:00
if h.domainStrategy == Config_USE_IP && destination.Address.Family().IsDomain() {
ip := h.resolveIP(ctx, destination.Address.Domain())
2017-11-15 11:55:54 +00:00
if ip != nil {
destination = net.Destination{
Network: destination.Network,
Address: ip,
Port: destination.Port,
}
2017-12-19 20:28:12 +00:00
newError("changing destination to ", destination).WriteToLog()
2017-11-15 11:55:54 +00:00
}
2016-05-22 20:30:21 +00:00
}
2017-11-15 17:28:39 +00:00
var conn internet.Connection
2016-11-20 20:47:51 +00:00
err := retry.ExponentialBackoff(5, 100).On(func() error {
rawConn, err := dialer.Dial(ctx, destination)
2015-12-17 00:19:04 +00:00
if err != nil {
return err
}
conn = rawConn
return nil
})
2015-09-09 15:39:25 +00:00
if err != nil {
2017-04-08 23:43:25 +00:00
return newError("failed to open connection to ", destination).Base(err)
}
2015-12-15 15:38:25 +00:00
defer conn.Close()
2017-11-14 23:36:14 +00:00
ctx, cancel := context.WithCancel(ctx)
2017-11-27 21:09:30 +00:00
timer := signal.CancelAfterInactivity(ctx, cancel, h.policy.Timeout.ConnectionIdle.Duration())
2017-01-31 11:42:05 +00:00
2016-12-29 23:32:20 +00:00
requestDone := signal.ExecuteAsync(func() error {
2017-04-16 07:57:28 +00:00
var writer buf.Writer
if destination.Network == net.Network_TCP {
writer = buf.NewWriter(conn)
} else {
2017-04-21 12:51:09 +00:00
writer = buf.NewSequentialWriter(conn)
2017-04-16 07:57:28 +00:00
}
2017-04-27 20:30:48 +00:00
if err := buf.Copy(input, writer, buf.UpdateActivity(timer)); err != nil {
2017-04-16 20:48:51 +00:00
return newError("failed to process request").Base(err)
2016-11-21 23:17:49 +00:00
}
2017-11-27 21:09:30 +00:00
timer.SetTimeout(h.policy.Timeout.DownlinkOnly.Duration())
2016-12-29 23:32:20 +00:00
return nil
})
2015-09-22 16:31:06 +00:00
2016-12-29 23:32:20 +00:00
responseDone := signal.ExecuteAsync(func() error {
defer output.Close()
2016-12-29 23:32:20 +00:00
2017-01-31 11:42:05 +00:00
v2reader := buf.NewReader(conn)
2017-04-27 20:30:48 +00:00
if err := buf.Copy(v2reader, output, buf.UpdateActivity(timer)); err != nil {
2017-04-16 20:48:51 +00:00
return newError("failed to process response").Base(err)
2016-12-29 23:32:20 +00:00
}
2017-11-27 21:09:30 +00:00
timer.SetTimeout(h.policy.Timeout.UplinkOnly.Duration())
2016-12-29 23:32:20 +00:00
return nil
})
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
2017-01-10 13:22:42 +00:00
input.CloseError()
output.CloseError()
2017-04-08 23:43:25 +00:00
return newError("connection ends").Base(err)
2016-11-21 23:17:49 +00:00
}
return nil
2015-09-09 15:39:06 +00:00
}
2016-05-22 20:30:21 +00:00
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return New(ctx, config.(*Config))
}))
2016-05-22 20:30:21 +00:00
}