Hunter0x7c7
2022-08-11 a82f9cb69f63aaeba40c024960deda7d75b9fece
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package v4
 
import (
    "encoding/json"
    "runtime"
    "strconv"
    "syscall"
 
    "github.com/golang/protobuf/proto"
 
    "github.com/v2fly/v2ray-core/v5/common/net"
    "github.com/v2fly/v2ray-core/v5/common/protocol"
    "github.com/v2fly/v2ray-core/v5/common/serial"
    "github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon"
    "github.com/v2fly/v2ray-core/v5/proxy/trojan"
)
 
// TrojanServerTarget is configuration of a single trojan server
type TrojanServerTarget struct {
    Address  *cfgcommon.Address `json:"address"`
    Port     uint16             `json:"port"`
    Password string             `json:"password"`
    Email    string             `json:"email"`
    Level    byte               `json:"level"`
}
 
// TrojanClientConfig is configuration of trojan servers
type TrojanClientConfig struct {
    Servers []*TrojanServerTarget `json:"servers"`
}
 
// Build implements Buildable
func (c *TrojanClientConfig) Build() (proto.Message, error) {
    config := new(trojan.ClientConfig)
 
    if len(c.Servers) == 0 {
        return nil, newError("0 Trojan server configured.")
    }
 
    serverSpecs := make([]*protocol.ServerEndpoint, len(c.Servers))
    for idx, rec := range c.Servers {
        if rec.Address == nil {
            return nil, newError("Trojan server address is not set.")
        }
        if rec.Port == 0 {
            return nil, newError("Invalid Trojan port.")
        }
        if rec.Password == "" {
            return nil, newError("Trojan password is not specified.")
        }
        account := &trojan.Account{
            Password: rec.Password,
        }
        trojan := &protocol.ServerEndpoint{
            Address: rec.Address.Build(),
            Port:    uint32(rec.Port),
            User: []*protocol.User{
                {
                    Level:   uint32(rec.Level),
                    Email:   rec.Email,
                    Account: serial.ToTypedMessage(account),
                },
            },
        }
 
        serverSpecs[idx] = trojan
    }
 
    config.Server = serverSpecs
 
    return config, nil
}
 
// TrojanInboundFallback is fallback configuration
type TrojanInboundFallback struct {
    Alpn string          `json:"alpn"`
    Path string          `json:"path"`
    Type string          `json:"type"`
    Dest json.RawMessage `json:"dest"`
    Xver uint64          `json:"xver"`
}
 
// TrojanUserConfig is user configuration
type TrojanUserConfig struct {
    Password string `json:"password"`
    Level    byte   `json:"level"`
    Email    string `json:"email"`
}
 
// TrojanServerConfig is Inbound configuration
type TrojanServerConfig struct {
    Clients   []*TrojanUserConfig      `json:"clients"`
    Fallback  json.RawMessage          `json:"fallback"`
    Fallbacks []*TrojanInboundFallback `json:"fallbacks"`
}
 
// Build implements Buildable
func (c *TrojanServerConfig) Build() (proto.Message, error) {
    config := new(trojan.ServerConfig)
    config.Users = make([]*protocol.User, len(c.Clients))
    for idx, rawUser := range c.Clients {
        user := new(protocol.User)
        account := &trojan.Account{
            Password: rawUser.Password,
        }
 
        user.Email = rawUser.Email
        user.Level = uint32(rawUser.Level)
        user.Account = serial.ToTypedMessage(account)
        config.Users[idx] = user
    }
 
    if c.Fallback != nil {
        return nil, newError(`Trojan settings: please use "fallbacks":[{}] instead of "fallback":{}`)
    }
    for _, fb := range c.Fallbacks {
        var i uint16
        var s string
        if err := json.Unmarshal(fb.Dest, &i); err == nil {
            s = strconv.Itoa(int(i))
        } else {
            _ = json.Unmarshal(fb.Dest, &s)
        }
        config.Fallbacks = append(config.Fallbacks, &trojan.Fallback{
            Alpn: fb.Alpn,
            Path: fb.Path,
            Type: fb.Type,
            Dest: s,
            Xver: fb.Xver,
        })
    }
    for _, fb := range config.Fallbacks {
        /*
            if fb.Alpn == "h2" && fb.Path != "" {
                return nil, newError(`Trojan fallbacks: "alpn":"h2" doesn't support "path"`)
            }
        */
        if fb.Path != "" && fb.Path[0] != '/' {
            return nil, newError(`Trojan fallbacks: "path" must be empty or start with "/"`)
        }
        if fb.Type == "" && fb.Dest != "" {
            if fb.Dest == "serve-ws-none" {
                fb.Type = "serve"
            } else {
                switch fb.Dest[0] {
                case '@', '/':
                    fb.Type = "unix"
                    if fb.Dest[0] == '@' && len(fb.Dest) > 1 && fb.Dest[1] == '@' && (runtime.GOOS == "linux" || runtime.GOOS == "android") {
                        fullAddr := make([]byte, len(syscall.RawSockaddrUnix{}.Path)) // may need padding to work with haproxy
                        copy(fullAddr, fb.Dest[1:])
                        fb.Dest = string(fullAddr)
                    }
                default:
                    if _, err := strconv.Atoi(fb.Dest); err == nil {
                        fb.Dest = "127.0.0.1:" + fb.Dest
                    }
                    if _, _, err := net.SplitHostPort(fb.Dest); err == nil {
                        fb.Type = "tcp"
                    }
                }
            }
        }
        if fb.Type == "" {
            return nil, newError(`Trojan fallbacks: please fill in a valid value for every "dest"`)
        }
        if fb.Xver > 2 {
            return nil, newError(`Trojan fallbacks: invalid PROXY protocol version, "xver" only accepts 0, 1, 2`)
        }
    }
 
    return config, nil
}