1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/proxy/freedom/freedom.go

195 lines
5.4 KiB
Go
Raw Normal View History

2015-09-11 14:12:09 +02:00
package freedom
2015-09-09 17:39:06 +02:00
2021-02-17 04:31:50 +08:00
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
2017-04-09 01:43:25 +02:00
2015-09-09 17:39:06 +02:00
import (
"context"
"time"
2016-12-09 13:17:34 +01:00
2021-02-17 04:31:50 +08:00
core "github.com/v2fly/v2ray-core/v4"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/buf"
"github.com/v2fly/v2ray-core/v4/common/dice"
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/common/retry"
"github.com/v2fly/v2ray-core/v4/common/session"
"github.com/v2fly/v2ray-core/v4/common/signal"
"github.com/v2fly/v2ray-core/v4/common/task"
"github.com/v2fly/v2ray-core/v4/features/dns"
"github.com/v2fly/v2ray-core/v4/features/policy"
"github.com/v2fly/v2ray-core/v4/transport"
"github.com/v2fly/v2ray-core/v4/transport/internet"
2015-09-09 17:39:06 +02:00
)
2018-10-22 15:58:52 +02:00
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
h := new(Handler)
if err := core.RequireFeatures(ctx, func(pm policy.Manager, d dns.Client) error {
return h.Init(config.(*Config), pm, d)
}); err != nil {
return nil, err
}
return h, nil
}))
2021-09-04 21:30:38 +01:00
common.Must(common.RegisterConfig((*SimplifiedConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
simplifiedServer := config.(*SimplifiedConfig)
_ = simplifiedServer
fullConfig := &Config{}
return common.CreateObject(ctx, fullConfig)
}))
2018-10-22 15:58:52 +02:00
}
2017-11-15 18:28:39 +01:00
// Handler handles Freedom connections.
2016-12-22 13:33:28 +01:00
type Handler struct {
2018-10-11 22:34:31 +02:00
policyManager policy.Manager
dns dns.Client
2020-08-26 19:35:33 +08:00
config *Config
2016-05-22 22:30:21 +02:00
}
2018-10-22 15:58:52 +02:00
// Init initializes the Handler with necessary parameters.
func (h *Handler) Init(config *Config, pm policy.Manager, d dns.Client) error {
2020-08-26 19:35:33 +08:00
h.config = config
2018-10-22 15:58:52 +02:00
h.policyManager = pm
h.dns = d
2018-10-22 15:58:52 +02:00
return nil
2016-05-22 22:30:21 +02:00
}
2018-10-11 22:34:31 +02:00
func (h *Handler) policy() policy.Session {
p := h.policyManager.ForLevel(h.config.UserLevel)
if h.config.Timeout > 0 && h.config.UserLevel == 0 {
p.Timeouts.ConnectionIdle = time.Duration(h.config.Timeout) * time.Second
}
return p
}
func (h *Handler) resolveIP(ctx context.Context, domain string, localAddr net.Address) net.Address {
if c, ok := h.dns.(dns.ClientWithIPOption); ok {
c.SetFakeDNSOption(false) // Skip FakeDNS
} else {
newError("DNS client doesn't implement ClientWithIPOption")
}
var lookupFunc = h.dns.LookupIP
if h.config.DomainStrategy == Config_USE_IP4 || (localAddr != nil && localAddr.Family().IsIPv4()) {
if lookupIPv4, ok := h.dns.(dns.IPv4Lookup); ok {
lookupFunc = lookupIPv4.LookupIPv4
}
} else if h.config.DomainStrategy == Config_USE_IP6 || (localAddr != nil && localAddr.Family().IsIPv6()) {
if lookupIPv6, ok := h.dns.(dns.IPv6Lookup); ok {
lookupFunc = lookupIPv6.LookupIPv6
}
}
ips, err := lookupFunc(domain)
2017-12-19 23:55:09 +01:00
if err != nil {
newError("failed to get IP address for domain ", domain).Base(err).WriteToLog(session.ExportIDToError(ctx))
2017-12-19 23:55:09 +01:00
}
2016-05-22 22:30:21 +02:00
if len(ips) == 0 {
2017-11-15 12:55:54 +01:00
return nil
2016-05-22 22:30:21 +02:00
}
2017-11-15 12:55:54 +01:00
return net.IPAddress(ips[dice.Roll(len(ips))])
2015-09-09 17:39:06 +02:00
}
2018-07-18 16:29:29 +02:00
func isValidAddress(addr *net.IPOrDomain) bool {
if addr == nil {
return false
}
a := addr.AsAddress()
return a != net.AnyIP
}
2017-11-15 18:28:39 +01:00
// Process implements proxy.Outbound.
2018-11-03 12:36:29 +01:00
func (h *Handler) Process(ctx context.Context, link *transport.Link, dialer internet.Dialer) error {
outbound := session.OutboundFromContext(ctx)
if outbound == nil || !outbound.Target.IsValid() {
return newError("target not specified.")
}
destination := outbound.Target
if h.config.DestinationOverride != nil {
server := h.config.DestinationOverride.Server
2018-07-18 16:29:29 +02:00
if isValidAddress(server.Address) {
2018-07-18 16:21:40 +02:00
destination.Address = server.Address.AsAddress()
}
if server.Port != 0 {
destination.Port = net.Port(server.Port)
}
}
newError("opening connection to ", destination).WriteToLog(session.ExportIDToError(ctx))
2015-12-17 01:19:04 +01:00
2018-04-17 00:31:10 +02:00
input := link.Reader
output := link.Writer
2016-04-18 18:44:10 +02:00
2018-07-01 21:37:45 +02:00
var conn internet.Connection
err := retry.ExponentialBackoff(5, 100).On(func() error {
dialDest := destination
if h.config.useIP() && dialDest.Address.Family().IsDomain() {
ip := h.resolveIP(ctx, dialDest.Address.Domain(), dialer.Address())
2018-07-01 21:37:45 +02:00
if ip != nil {
dialDest = net.Destination{
Network: dialDest.Network,
Address: ip,
Port: dialDest.Port,
}
newError("dialing to ", dialDest).WriteToLog(session.ExportIDToError(ctx))
2017-11-15 12:55:54 +01:00
}
}
2018-07-01 21:37:45 +02:00
rawConn, err := dialer.Dial(ctx, dialDest)
2015-12-17 01:19:04 +01:00
if err != nil {
return err
}
conn = rawConn
return nil
})
2015-09-09 17:39:25 +02:00
if err != nil {
2017-04-09 01:43:25 +02:00
return newError("failed to open connection to ", destination).Base(err)
}
defer conn.Close()
plcy := h.policy()
2017-11-15 00:36:14 +01:00
ctx, cancel := context.WithCancel(ctx)
timer := signal.CancelAfterInactivity(ctx, cancel, plcy.Timeouts.ConnectionIdle)
2017-01-31 12:42:05 +01:00
2018-04-11 16:45:09 +02:00
requestDone := func() error {
defer timer.SetTimeout(plcy.Timeouts.DownlinkOnly)
2017-04-16 09:57:28 +02:00
var writer buf.Writer
if destination.Network == net.Network_TCP {
writer = buf.NewWriter(conn)
} else {
2018-07-31 13:43:27 +02:00
writer = &buf.SequentialWriter{Writer: conn}
2017-04-16 09:57:28 +02:00
}
2019-02-15 00:28:26 +01:00
2017-04-27 22:30:48 +02:00
if err := buf.Copy(input, writer, buf.UpdateActivity(timer)); err != nil {
2017-04-16 22:48:51 +02:00
return newError("failed to process request").Base(err)
2016-11-22 00:17:49 +01:00
}
2016-12-30 00:32:20 +01:00
return nil
2018-04-11 16:45:09 +02:00
}
2015-09-22 18:31:06 +02:00
2018-04-11 16:45:09 +02:00
responseDone := func() error {
defer timer.SetTimeout(plcy.Timeouts.UplinkOnly)
2016-12-30 00:32:20 +01:00
2018-12-11 10:17:50 +01:00
var reader buf.Reader
if destination.Network == net.Network_TCP {
reader = buf.NewReader(conn)
} else {
2019-02-07 19:14:37 +01:00
reader = buf.NewPacketReader(conn)
2018-12-11 10:17:50 +01:00
}
if err := buf.Copy(reader, output, buf.UpdateActivity(timer)); err != nil {
2017-04-16 22:48:51 +02:00
return newError("failed to process response").Base(err)
2016-12-30 00:32:20 +01:00
}
2016-12-30 00:32:20 +01:00
return nil
2018-04-11 16:45:09 +02:00
}
2016-12-30 00:32:20 +01:00
2018-12-06 11:35:02 +01:00
if err := task.Run(ctx, requestDone, task.OnSuccess(responseDone, task.Close(output))); err != nil {
2017-04-09 01:43:25 +02:00
return newError("connection ends").Base(err)
2016-11-22 00:17:49 +01:00
}
return nil
2015-09-09 17:39:06 +02:00
}