| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- package conf
- import (
- "encoding/json"
- "runtime"
- "strconv"
- "syscall"
- "github.com/xtls/xray-core/common/net"
- "github.com/xtls/xray-core/common/protocol"
- "github.com/xtls/xray-core/common/serial"
- "github.com/xtls/xray-core/proxy/trojan"
- "google.golang.org/protobuf/proto"
- )
- // TrojanServerTarget is configuration of a single trojan server
- type TrojanServerTarget struct {
- Address *Address `json:"address"`
- Port uint16 `json:"port"`
- Password string `json:"password"`
- Email string `json:"email"`
- Level byte `json:"level"`
- Flow string `json:"flow"`
- }
- // TrojanClientConfig is configuration of trojan servers
- type TrojanClientConfig struct {
- Servers []*TrojanServerTarget `json:"servers"`
- }
- // Build implements Buildable
- func (c *TrojanClientConfig) Build() (proto.Message, error) {
- if len(c.Servers) == 0 {
- return nil, newError("0 Trojan server configured.")
- }
- config := &trojan.ClientConfig{
- Server: 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.")
- }
- if rec.Flow != "" {
- return nil, newError(`Trojan doesn't support "flow" anymore.`)
- }
- config.Server[idx] = &protocol.ServerEndpoint{
- Address: rec.Address.Build(),
- Port: uint32(rec.Port),
- User: []*protocol.User{
- {
- Level: uint32(rec.Level),
- Email: rec.Email,
- Account: serial.ToTypedMessage(&trojan.Account{
- Password: rec.Password,
- }),
- },
- },
- }
- }
- return config, nil
- }
- // TrojanInboundFallback is fallback configuration
- type TrojanInboundFallback struct {
- Name string `json:"name"`
- 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"`
- Flow string `json:"flow"`
- }
- // TrojanServerConfig is Inbound configuration
- type TrojanServerConfig struct {
- Clients []*TrojanUserConfig `json:"clients"`
- Fallback *TrojanInboundFallback `json:"fallback"`
- Fallbacks []*TrojanInboundFallback `json:"fallbacks"`
- }
- // Build implements Buildable
- func (c *TrojanServerConfig) Build() (proto.Message, error) {
- config := &trojan.ServerConfig{
- Users: make([]*protocol.User, len(c.Clients)),
- }
- for idx, rawUser := range c.Clients {
- if rawUser.Flow != "" {
- return nil, newError(`Trojan doesn't support "flow" anymore.`)
- }
- config.Users[idx] = &protocol.User{
- Level: uint32(rawUser.Level),
- Email: rawUser.Email,
- Account: serial.ToTypedMessage(&trojan.Account{
- Password: rawUser.Password,
- }),
- }
- }
- 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{
- Name: fb.Name,
- 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
- }
|