mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 23:47:07 -05:00
Merge pull request #76 from Vigilans/vigilans/tproxy-sockopt
Apply sockopt from inbound config to dokodemo tproxy's response connection
This commit is contained in:
commit
2c49559c61
@ -150,6 +150,13 @@ func NewHandler(ctx context.Context, config *core.InboundHandlerConfig) (inbound
|
|||||||
return nil, newError("not a ReceiverConfig").AtError()
|
return nil, newError("not a ReceiverConfig").AtError()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
streamSettings := receiverSettings.StreamSettings
|
||||||
|
if streamSettings != nil && streamSettings.SocketSettings != nil {
|
||||||
|
ctx = session.ContextWithSockopt(ctx, &session.Sockopt{
|
||||||
|
Mark: streamSettings.SocketSettings.Mark,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
allocStrategy := receiverSettings.AllocationStrategy
|
allocStrategy := receiverSettings.AllocationStrategy
|
||||||
if allocStrategy == nil || allocStrategy.Type == proxyman.AllocationStrategy_Always {
|
if allocStrategy == nil || allocStrategy.Type == proxyman.AllocationStrategy_Always {
|
||||||
return NewAlwaysOnInboundHandler(ctx, tag, receiverSettings, proxySettings)
|
return NewAlwaysOnInboundHandler(ctx, tag, receiverSettings, proxySettings)
|
||||||
|
@ -10,6 +10,7 @@ const (
|
|||||||
outboundSessionKey
|
outboundSessionKey
|
||||||
contentSessionKey
|
contentSessionKey
|
||||||
muxPreferedSessionKey
|
muxPreferedSessionKey
|
||||||
|
sockoptSessionKey
|
||||||
)
|
)
|
||||||
|
|
||||||
// ContextWithID returns a new context with the given ID.
|
// ContextWithID returns a new context with the given ID.
|
||||||
@ -70,3 +71,16 @@ func MuxPreferedFromContext(ctx context.Context) bool {
|
|||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ContextWithSockopt returns a new context with Socket configs included
|
||||||
|
func ContextWithSockopt(ctx context.Context, s *Sockopt) context.Context {
|
||||||
|
return context.WithValue(ctx, sockoptSessionKey, s)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SockoptFromContext returns Socket configs in this context, or nil if not contained.
|
||||||
|
func SockoptFromContext(ctx context.Context) *Sockopt {
|
||||||
|
if sockopt, ok := ctx.Value(sockoptSessionKey).(*Sockopt); ok {
|
||||||
|
return sockopt
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
@ -72,6 +72,12 @@ type Content struct {
|
|||||||
SkipRoutePick bool
|
SkipRoutePick bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Sockopt is the settings for socket connection.
|
||||||
|
type Sockopt struct {
|
||||||
|
// Mark of the socket connection.
|
||||||
|
Mark int32
|
||||||
|
}
|
||||||
|
|
||||||
func (c *Content) SetAttribute(name string, value interface{}) {
|
func (c *Content) SetAttribute(name string, value interface{}) {
|
||||||
if c.Attributes == nil {
|
if c.Attributes == nil {
|
||||||
c.Attributes = make(map[string]interface{})
|
c.Attributes = make(map[string]interface{})
|
||||||
|
@ -27,7 +27,7 @@ func init() {
|
|||||||
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
||||||
d := new(DokodemoDoor)
|
d := new(DokodemoDoor)
|
||||||
err := core.RequireFeatures(ctx, func(pm policy.Manager) error {
|
err := core.RequireFeatures(ctx, func(pm policy.Manager) error {
|
||||||
return d.Init(config.(*Config), pm)
|
return d.Init(config.(*Config), pm, session.SockoptFromContext(ctx))
|
||||||
})
|
})
|
||||||
return d, err
|
return d, err
|
||||||
}))
|
}))
|
||||||
@ -38,10 +38,11 @@ type DokodemoDoor struct {
|
|||||||
config *Config
|
config *Config
|
||||||
address net.Address
|
address net.Address
|
||||||
port net.Port
|
port net.Port
|
||||||
|
sockopt *session.Sockopt
|
||||||
}
|
}
|
||||||
|
|
||||||
// Init initializes the DokodemoDoor instance with necessary parameters.
|
// Init initializes the DokodemoDoor instance with necessary parameters.
|
||||||
func (d *DokodemoDoor) Init(config *Config, pm policy.Manager) error {
|
func (d *DokodemoDoor) Init(config *Config, pm policy.Manager, sockopt *session.Sockopt) error {
|
||||||
if (config.NetworkList == nil || len(config.NetworkList.Network) == 0) && len(config.Networks) == 0 {
|
if (config.NetworkList == nil || len(config.NetworkList.Network) == 0) && len(config.Networks) == 0 {
|
||||||
return newError("no network specified")
|
return newError("no network specified")
|
||||||
}
|
}
|
||||||
@ -49,6 +50,7 @@ func (d *DokodemoDoor) Init(config *Config, pm policy.Manager) error {
|
|||||||
d.address = config.GetPredefinedAddress()
|
d.address = config.GetPredefinedAddress()
|
||||||
d.port = net.Port(config.Port)
|
d.port = net.Port(config.Port)
|
||||||
d.policyManager = pm
|
d.policyManager = pm
|
||||||
|
d.sockopt = sockopt
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -165,6 +167,9 @@ func (d *DokodemoDoor) Process(ctx context.Context, network net.Network, conn in
|
|||||||
sockopt.BindAddress = dest.Address.IP()
|
sockopt.BindAddress = dest.Address.IP()
|
||||||
sockopt.BindPort = uint32(dest.Port)
|
sockopt.BindPort = uint32(dest.Port)
|
||||||
}
|
}
|
||||||
|
if d.sockopt != nil {
|
||||||
|
sockopt.Mark = d.sockopt.Mark
|
||||||
|
}
|
||||||
tConn, err := internet.DialSystem(ctx, net.DestinationFromAddr(conn.RemoteAddr()), sockopt)
|
tConn, err := internet.DialSystem(ctx, net.DestinationFromAddr(conn.RemoteAddr()), sockopt)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
Loading…
Reference in New Issue
Block a user