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

146 lines
3.9 KiB
Go
Raw Normal View History

2015-09-11 12:12:09 +00:00
package freedom
2015-09-09 15:39:06 +00:00
import (
2016-11-22 07:21:10 +00:00
"io"
2016-12-09 12:17:34 +00:00
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app"
"v2ray.com/core/app/dns"
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"
2016-12-04 08:10:47 +00:00
"v2ray.com/core/common/errors"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/log"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/common/retry"
2016-12-15 10:51:09 +00:00
"v2ray.com/core/common/serial"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/proxy"
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/internet/tcp"
"v2ray.com/core/transport/ray"
2015-09-09 15:39:06 +00:00
)
2015-09-12 20:11:54 +00:00
type FreedomConnection struct {
2016-08-25 19:55:49 +00:00
domainStrategy Config_DomainStrategy
2016-06-02 21:18:44 +00:00
timeout uint32
2016-05-22 20:30:21 +00:00
dns dns.Server
2016-06-04 12:25:13 +00:00
meta *proxy.OutboundHandlerMeta
2016-05-22 20:30:21 +00:00
}
2016-06-04 12:25:13 +00:00
func NewFreedomConnection(config *Config, space app.Space, meta *proxy.OutboundHandlerMeta) *FreedomConnection {
2016-05-22 20:30:21 +00:00
f := &FreedomConnection{
domainStrategy: config.DomainStrategy,
2016-06-02 21:18:44 +00:00
timeout: config.Timeout,
2016-06-04 12:25:13 +00:00
meta: meta,
2016-05-22 20:30:21 +00:00
}
space.InitializeApplication(func() error {
2016-08-25 19:55:49 +00:00
if config.DomainStrategy == Config_USE_IP {
2016-05-22 20:30:21 +00:00
if !space.HasApp(dns.APP_ID) {
2016-11-21 20:13:01 +00:00
return errors.New("Freedom: DNS server is not found in the space.")
2016-05-22 20:30:21 +00:00
}
f.dns = space.GetApp(dns.APP_ID).(dns.Server)
}
return nil
})
return f
}
2016-08-24 09:17:42 +00:00
// Private: Visible for testing.
2016-11-27 20:39:09 +00:00
func (v *FreedomConnection) ResolveIP(destination v2net.Destination) v2net.Destination {
2016-09-20 09:53:05 +00:00
if !destination.Address.Family().IsDomain() {
2016-05-22 20:30:21 +00:00
return destination
}
2016-11-27 20:39:09 +00:00
ips := v.dns.Get(destination.Address.Domain())
2016-05-22 20:30:21 +00:00
if len(ips) == 0 {
log.Info("Freedom: DNS returns nil answer. Keep domain as is.")
return destination
}
ip := ips[dice.Roll(len(ips))]
var newDest v2net.Destination
2016-09-20 09:53:05 +00:00
if destination.Network == v2net.Network_TCP {
newDest = v2net.TCPDestination(v2net.IPAddress(ip), destination.Port)
2016-05-22 20:30:21 +00:00
} else {
2016-09-20 09:53:05 +00:00
newDest = v2net.UDPDestination(v2net.IPAddress(ip), destination.Port)
2016-05-22 20:30:21 +00:00
}
log.Info("Freedom: Changing destination from ", destination, " to ", newDest)
return newDest
2015-09-09 15:39:06 +00:00
}
2016-12-09 10:35:27 +00:00
func (v *FreedomConnection) Dispatch(destination v2net.Destination, payload *buf.Buffer, ray ray.OutboundRay) {
2016-04-25 22:13:26 +00:00
log.Info("Freedom: Opening connection to ", destination)
2015-12-17 00:19:04 +00:00
2016-04-25 22:13:26 +00:00
defer payload.Release()
2016-04-18 16:44:10 +00:00
defer ray.OutboundInput().Release()
2016-05-06 22:19:06 +00:00
defer ray.OutboundOutput().Close()
2016-04-18 16:44:10 +00:00
2016-06-14 20:54:08 +00:00
var conn internet.Connection
2016-11-27 20:39:09 +00:00
if v.domainStrategy == Config_USE_IP && destination.Address.Family().IsDomain() {
destination = v.ResolveIP(destination)
2016-05-22 20:30:21 +00:00
}
2016-11-20 20:47:51 +00:00
err := retry.ExponentialBackoff(5, 100).On(func() error {
2016-11-27 20:39:09 +00:00
rawConn, err := internet.Dial(v.meta.Address, destination, v.meta.GetDialerOptions())
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 {
2016-06-03 18:21:46 +00:00
log.Warning("Freedom: Failed to open connection to ", destination, ": ", err)
return
}
2015-12-15 15:38:25 +00:00
defer conn.Close()
2015-10-02 13:32:26 +00:00
input := ray.OutboundInput()
output := ray.OutboundOutput()
if !payload.IsEmpty() {
2016-12-05 14:19:14 +00:00
conn.Write(payload.Bytes())
}
2016-04-25 22:13:26 +00:00
go func() {
2016-12-09 12:17:34 +00:00
v2writer := buf.NewWriter(conn)
2016-04-25 22:13:26 +00:00
defer v2writer.Release()
2015-09-09 15:39:25 +00:00
2016-12-09 12:17:34 +00:00
if err := buf.PipeUntilEOF(input, v2writer); err != nil {
2016-11-21 23:17:49 +00:00
log.Info("Freedom: Failed to transport all TCP request: ", err)
}
if tcpConn, ok := conn.(*tcp.RawConnection); ok {
tcpConn.CloseWrite()
2015-11-27 20:50:28 +00:00
}
}()
2015-09-22 16:31:06 +00:00
var reader io.Reader = conn
2016-11-27 20:39:09 +00:00
timeout := v.timeout
2016-09-20 09:53:05 +00:00
if destination.Network == v2net.Network_UDP {
timeout = 16
2015-12-15 15:38:25 +00:00
}
if timeout > 0 {
2016-08-25 19:55:49 +00:00
reader = v2net.NewTimeOutReader(timeout /* seconds */, conn)
}
2016-12-09 12:17:34 +00:00
v2reader := buf.NewReader(reader)
if err := buf.PipeUntilEOF(v2reader, output); err != nil {
2016-11-21 23:17:49 +00:00
log.Info("Freedom: Failed to transport all TCP response: ", err)
}
v2reader.Release()
ray.OutboundOutput().Close()
2015-09-09 15:39:06 +00:00
}
2016-05-22 20:30:21 +00:00
2016-06-14 20:54:08 +00:00
type FreedomFactory struct{}
2016-11-27 20:39:09 +00:00
func (v *FreedomFactory) StreamCapability() v2net.NetworkList {
2016-10-02 21:43:58 +00:00
return v2net.NetworkList{
Network: []v2net.Network{v2net.Network_RawTCP},
}
2016-06-14 20:54:08 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *FreedomFactory) Create(space app.Space, config interface{}, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
2016-06-14 20:54:08 +00:00
return NewFreedomConnection(config.(*Config), space, meta), nil
}
2016-05-22 20:30:21 +00:00
func init() {
2016-12-15 14:46:20 +00:00
proxy.MustRegisterOutboundHandlerCreator(serial.GetMessageType(new(Config)), new(FreedomFactory))
2016-05-22 20:30:21 +00:00
}