v2fly/proxy/dokodemo/dokodemo.go

213 lines
5.8 KiB
Go
Raw Normal View History

2015-10-30 14:56:46 +00:00
package dokodemo
2021-02-16 20:31:50 +00:00
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
2017-04-08 23:43:25 +00:00
2015-10-30 14:56:46 +00:00
import (
"context"
"sync/atomic"
"time"
2015-10-30 14:56:46 +00:00
2021-02-16 20:31:50 +00: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/log"
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/common/protocol"
"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/policy"
"github.com/v2fly/v2ray-core/v4/features/routing"
"github.com/v2fly/v2ray-core/v4/transport/internet"
2015-10-30 14:56:46 +00:00
)
2018-10-22 13:58:52 +00:00
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
d := new(Door)
2018-10-22 13:58:52 +00:00
err := core.RequireFeatures(ctx, func(pm policy.Manager) error {
return d.Init(config.(*Config), pm, session.SockoptFromContext(ctx))
2018-10-22 13:58:52 +00:00
})
return d, err
}))
}
type Door struct {
2018-10-11 20:34:31 +00:00
policyManager policy.Manager
config *Config
address net.Address
port net.Port
sockopt *session.Sockopt
2015-10-30 14:56:46 +00:00
}
// Init initializes the Door instance with necessary parameters.
func (d *Door) Init(config *Config, pm policy.Manager, sockopt *session.Sockopt) error {
2018-11-20 16:05:32 +00:00
if (config.NetworkList == nil || len(config.NetworkList.Network) == 0) && len(config.Networks) == 0 {
2018-10-22 13:58:52 +00:00
return newError("no network specified")
2015-10-30 14:56:46 +00:00
}
2018-10-22 13:58:52 +00:00
d.config = config
d.address = config.GetPredefinedAddress()
d.port = net.Port(config.Port)
d.policyManager = pm
d.sockopt = sockopt
2018-10-22 13:58:52 +00:00
return nil
2015-10-30 14:56:46 +00:00
}
2018-11-20 15:58:26 +00:00
// Network implements proxy.Inbound.
func (d *Door) Network() []net.Network {
2018-11-20 15:58:26 +00:00
if len(d.config.Networks) > 0 {
return d.config.Networks
}
return d.config.NetworkList.Network
2015-11-10 23:08:43 +00:00
}
func (d *Door) policy() policy.Session {
config := d.config
p := d.policyManager.ForLevel(config.UserLevel)
if config.Timeout > 0 && config.UserLevel == 0 {
p.Timeouts.ConnectionIdle = time.Duration(config.Timeout) * time.Second
}
return p
}
type hasHandshakeAddress interface {
HandshakeAddress() net.Address
}
2018-11-20 15:58:26 +00:00
// Process implements proxy.Inbound.
func (d *Door) Process(ctx context.Context, network net.Network, conn internet.Connection, dispatcher routing.Dispatcher) error {
newError("processing connection from: ", conn.RemoteAddr()).AtDebug().WriteToLog(session.ExportIDToError(ctx))
2017-01-31 11:42:05 +00:00
dest := net.Destination{
Network: network,
Address: d.address,
Port: d.port,
2017-01-31 11:42:05 +00:00
}
destinationOverridden := false
2017-01-31 11:42:05 +00:00
if d.config.FollowRedirect {
if outbound := session.OutboundFromContext(ctx); outbound != nil && outbound.Target.IsValid() {
dest = outbound.Target
destinationOverridden = true
2018-07-14 20:06:39 +00:00
} else if handshake, ok := conn.(hasHandshakeAddress); ok {
addr := handshake.HandshakeAddress()
if addr != nil {
dest.Address = addr
destinationOverridden = true
}
}
2017-01-31 11:42:05 +00:00
}
if !dest.IsValid() || dest.Address == nil {
2017-04-08 23:43:25 +00:00
return newError("unable to get destination")
2017-01-31 11:42:05 +00:00
}
2017-03-31 19:10:33 +00:00
if inbound := session.InboundFromContext(ctx); inbound != nil {
inbound.User = &protocol.MemoryUser{
Level: d.config.UserLevel,
}
}
2020-07-13 13:02:19 +00:00
ctx = log.ContextWithAccessMessage(ctx, &log.AccessMessage{
From: conn.RemoteAddr(),
To: dest,
Status: log.AccessAccepted,
Reason: "",
})
newError("received request for ", conn.RemoteAddr()).WriteToLog(session.ExportIDToError(ctx))
2018-05-25 10:08:28 +00:00
plcy := d.policy()
2017-11-14 23:36:14 +00:00
ctx, cancel := context.WithCancel(ctx)
2018-05-25 10:08:28 +00:00
timer := signal.CancelAfterInactivity(ctx, cancel, plcy.Timeouts.ConnectionIdle)
2017-01-31 11:42:05 +00:00
2018-10-11 20:34:31 +00:00
ctx = policy.ContextWithBufferPolicy(ctx, plcy.Buffer)
2018-04-16 22:31:10 +00:00
link, err := dispatcher.Dispatch(ctx, dest)
if err != nil {
2017-04-16 20:48:51 +00:00
return newError("failed to dispatch request").Base(err)
}
2016-05-04 22:24:18 +00:00
requestCount := int32(1)
2018-04-11 14:45:09 +00:00
requestDone := func() error {
defer func() {
if atomic.AddInt32(&requestCount, -1) == 0 {
timer.SetTimeout(plcy.Timeouts.DownlinkOnly)
}
}()
2016-12-29 21:17:12 +00:00
2019-02-07 15:36:54 +00:00
var reader buf.Reader
if dest.Network == net.Network_UDP {
2019-02-07 18:14:37 +00:00
reader = buf.NewPacketReader(conn)
2019-02-07 15:36:54 +00:00
} else {
reader = buf.NewReader(conn)
}
if err := buf.Copy(reader, link.Writer, buf.UpdateActivity(timer)); err != nil {
2017-04-08 23:43:25 +00:00
return newError("failed to transport request").Base(err)
2016-11-21 23:17:49 +00:00
}
2015-10-30 14:56:46 +00:00
2016-12-29 21:17:12 +00:00
return nil
2018-04-11 14:45:09 +00:00
}
2016-12-29 21:17:12 +00:00
2019-01-27 21:30:34 +00:00
tproxyRequest := func() error {
return nil
}
2018-02-19 15:53:07 +00:00
2019-01-27 21:30:34 +00:00
var writer buf.Writer
if network == net.Network_TCP {
writer = buf.NewWriter(conn)
} else {
// if we are in TPROXY mode, use linux's udp forging functionality
2019-01-27 21:30:34 +00:00
if !destinationOverridden {
writer = &buf.SequentialWriter{Writer: conn}
2017-05-02 21:36:37 +00:00
} else {
2019-01-27 21:30:34 +00:00
sockopt := &internet.SocketConfig{
Tproxy: internet.SocketConfig_TProxy,
}
if dest.Address.Family().IsIP() {
sockopt.BindAddress = dest.Address.IP()
sockopt.BindPort = uint32(dest.Port)
}
if d.sockopt != nil {
sockopt.Mark = d.sockopt.Mark
}
2019-01-27 21:30:34 +00:00
tConn, err := internet.DialSystem(ctx, net.DestinationFromAddr(conn.RemoteAddr()), sockopt)
if err != nil {
return err
}
defer tConn.Close()
writer = &buf.SequentialWriter{Writer: tConn}
2019-02-07 18:14:37 +00:00
tReader := buf.NewPacketReader(tConn)
requestCount++
2019-01-27 21:30:34 +00:00
tproxyRequest = func() error {
defer func() {
if atomic.AddInt32(&requestCount, -1) == 0 {
timer.SetTimeout(plcy.Timeouts.DownlinkOnly)
}
}()
2019-01-27 21:30:34 +00:00
if err := buf.Copy(tReader, link.Writer, buf.UpdateActivity(timer)); err != nil {
return newError("failed to transport request (TPROXY conn)").Base(err)
2017-09-06 22:55:15 +00:00
}
2019-01-27 21:30:34 +00:00
return nil
2017-09-06 22:55:15 +00:00
}
2017-05-02 21:36:37 +00:00
}
2019-01-27 21:30:34 +00:00
}
responseDone := func() error {
defer timer.SetTimeout(plcy.Timeouts.UplinkOnly)
2018-04-16 22:31:10 +00:00
if err := buf.Copy(link.Reader, writer, buf.UpdateActivity(timer)); err != nil {
2017-04-08 23:43:25 +00:00
return newError("failed to transport response").Base(err)
2016-11-21 23:17:49 +00:00
}
2016-12-29 21:17:12 +00:00
return nil
2018-04-11 14:45:09 +00:00
}
2015-10-30 14:56:46 +00:00
2020-06-18 05:40:48 +00:00
if err := task.Run(ctx, task.OnSuccess(func() error {
return task.Run(ctx, requestDone, tproxyRequest)
}, task.Close(link.Writer)), responseDone); err != nil {
2018-12-31 20:25:10 +00:00
common.Interrupt(link.Reader)
common.Interrupt(link.Writer)
2017-04-08 23:43:25 +00:00
return newError("connection ends").Base(err)
2016-12-29 23:51:39 +00:00
}
return nil
2015-10-30 14:56:46 +00:00
}