Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package v5cfg
 
import (
    "context"
 
    "github.com/golang/protobuf/proto"
 
    core "github.com/v2fly/v2ray-core/v5"
    "github.com/v2fly/v2ray-core/v5/app/proxyman"
    "github.com/v2fly/v2ray-core/v5/common/serial"
    "github.com/v2fly/v2ray-core/v5/proxy/dokodemo"
    "github.com/v2fly/v2ray-core/v5/transport/internet"
)
 
func (c InboundConfig) BuildV5(ctx context.Context) (proto.Message, error) {
    receiverSettings := &proxyman.ReceiverConfig{}
 
    if c.ListenOn == nil {
        // Listen on anyip, must set PortRange
        if c.PortRange == nil {
            return nil, newError("Listen on AnyIP but no Port(s) set in InboundDetour.")
        }
        receiverSettings.PortRange = c.PortRange.Build()
    } else {
        // Listen on specific IP or Unix Domain Socket
        receiverSettings.Listen = c.ListenOn.Build()
        listenDS := c.ListenOn.Family().IsDomain() && (c.ListenOn.Domain()[0] == '/' || c.ListenOn.Domain()[0] == '@')
        listenIP := c.ListenOn.Family().IsIP() || (c.ListenOn.Family().IsDomain() && c.ListenOn.Domain() == "localhost")
        switch {
        case listenIP:
            // Listen on specific IP, must set PortRange
            if c.PortRange == nil {
                return nil, newError("Listen on specific ip without port in InboundDetour.")
            }
            // Listen on IP:Port
            receiverSettings.PortRange = c.PortRange.Build()
        case listenDS:
            if c.PortRange != nil {
                // Listen on Unix Domain Socket, PortRange should be nil
                receiverSettings.PortRange = nil
            }
        default:
            return nil, newError("unable to listen on domain address: ", c.ListenOn.Domain())
        }
    }
 
    if c.StreamSetting != nil {
        ss, err := c.StreamSetting.BuildV5(ctx)
        if err != nil {
            return nil, err
        }
        receiverSettings.StreamSettings = ss.(*internet.StreamConfig)
    }
 
    if c.SniffingConfig != nil {
        s, err := c.SniffingConfig.Build()
        if err != nil {
            return nil, newError("failed to build sniffing config").Base(err)
        }
        receiverSettings.SniffingSettings = s
    }
 
    if c.Settings == nil {
        c.Settings = []byte("{}")
    }
 
    inboundConfigPack, err := loadHeterogeneousConfigFromRawJSON("inbound", c.Protocol, c.Settings)
    if err != nil {
        return nil, newError("unable to load inbound protocol config").Base(err)
    }
 
    if content, ok := inboundConfigPack.(*dokodemo.SimplifiedConfig); ok {
        receiverSettings.ReceiveOriginalDestination = content.FollowRedirect
    }
    if content, ok := inboundConfigPack.(*dokodemo.Config); ok {
        receiverSettings.ReceiveOriginalDestination = content.FollowRedirect
    }
 
    return &core.InboundHandlerConfig{
        Tag:              c.Tag,
        ReceiverSettings: serial.ToTypedMessage(receiverSettings),
        ProxySettings:    serial.ToTypedMessage(inboundConfigPack),
    }, nil
}