mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-18 07:17:32 -05:00
fix(conf): add Windows support for Unix Domain Socket
This commit is contained in:
parent
1f1ff246dd
commit
527a12d24e
@ -2,8 +2,10 @@ package v4
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"strings"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
@ -141,22 +143,19 @@ func (c *TrojanServerConfig) Build() (proto.Message, error) {
|
|||||||
if fb.Type == "" && fb.Dest != "" {
|
if fb.Type == "" && fb.Dest != "" {
|
||||||
if fb.Dest == "serve-ws-none" {
|
if fb.Dest == "serve-ws-none" {
|
||||||
fb.Type = "serve"
|
fb.Type = "serve"
|
||||||
|
} else if filepath.IsAbs(fb.Dest) || fb.Dest[0] == '@' {
|
||||||
|
fb.Type = "unix"
|
||||||
|
if strings.HasPrefix(fb.Dest, "@@") && (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)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
switch fb.Dest[0] {
|
if _, err := strconv.Atoi(fb.Dest); err == nil {
|
||||||
case '@', '/':
|
fb.Dest = "127.0.0.1:" + fb.Dest
|
||||||
fb.Type = "unix"
|
}
|
||||||
if fb.Dest[0] == '@' && len(fb.Dest) > 1 && fb.Dest[1] == '@' && (runtime.GOOS == "linux" || runtime.GOOS == "android") {
|
if _, _, err := net.SplitHostPort(fb.Dest); err == nil {
|
||||||
fullAddr := make([]byte, len(syscall.RawSockaddrUnix{}.Path)) // may need padding to work with haproxy
|
fb.Type = "tcp"
|
||||||
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"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package v4
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"google.golang.org/protobuf/types/known/anypb"
|
"google.golang.org/protobuf/types/known/anypb"
|
||||||
@ -121,7 +122,7 @@ func (c *InboundDetourConfig) Build() (*core.InboundHandlerConfig, error) {
|
|||||||
} else {
|
} else {
|
||||||
// Listen on specific IP or Unix Domain Socket
|
// Listen on specific IP or Unix Domain Socket
|
||||||
receiverSettings.Listen = c.ListenOn.Build()
|
receiverSettings.Listen = c.ListenOn.Build()
|
||||||
listenDS := c.ListenOn.Family().IsDomain() && (c.ListenOn.Domain()[0] == '/' || c.ListenOn.Domain()[0] == '@')
|
listenDS := c.ListenOn.Family().IsDomain() && (filepath.IsAbs(c.ListenOn.Domain()) || c.ListenOn.Domain()[0] == '@')
|
||||||
listenIP := c.ListenOn.Family().IsIP() || (c.ListenOn.Family().IsDomain() && c.ListenOn.Domain() == "localhost")
|
listenIP := c.ListenOn.Family().IsIP() || (c.ListenOn.Family().IsDomain() && c.ListenOn.Domain() == "localhost")
|
||||||
switch {
|
switch {
|
||||||
case listenIP:
|
case listenIP:
|
||||||
|
@ -2,8 +2,10 @@ package v4
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"strings"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
@ -90,22 +92,19 @@ func (c *VLessInboundConfig) Build() (proto.Message, error) {
|
|||||||
if fb.Type == "" && fb.Dest != "" {
|
if fb.Type == "" && fb.Dest != "" {
|
||||||
if fb.Dest == "serve-ws-none" {
|
if fb.Dest == "serve-ws-none" {
|
||||||
fb.Type = "serve"
|
fb.Type = "serve"
|
||||||
|
} else if filepath.IsAbs(fb.Dest) || fb.Dest[0] == '@' {
|
||||||
|
fb.Type = "unix"
|
||||||
|
if strings.HasPrefix(fb.Dest, "@@") && (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)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
switch fb.Dest[0] {
|
if _, err := strconv.Atoi(fb.Dest); err == nil {
|
||||||
case '@', '/':
|
fb.Dest = "127.0.0.1:" + fb.Dest
|
||||||
fb.Type = "unix"
|
}
|
||||||
if fb.Dest[0] == '@' && len(fb.Dest) > 1 && fb.Dest[1] == '@' && (runtime.GOOS == "linux" || runtime.GOOS == "android") {
|
if _, _, err := net.SplitHostPort(fb.Dest); err == nil {
|
||||||
fullAddr := make([]byte, len(syscall.RawSockaddrUnix{}.Path)) // may need padding to work with haproxy
|
fb.Type = "tcp"
|
||||||
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"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package v5cfg
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
|
|
||||||
@ -24,7 +25,7 @@ func (c InboundConfig) BuildV5(ctx context.Context) (proto.Message, error) {
|
|||||||
} else {
|
} else {
|
||||||
// Listen on specific IP or Unix Domain Socket
|
// Listen on specific IP or Unix Domain Socket
|
||||||
receiverSettings.Listen = c.ListenOn.Build()
|
receiverSettings.Listen = c.ListenOn.Build()
|
||||||
listenDS := c.ListenOn.Family().IsDomain() && (c.ListenOn.Domain()[0] == '/' || c.ListenOn.Domain()[0] == '@')
|
listenDS := c.ListenOn.Family().IsDomain() && (filepath.IsAbs(c.ListenOn.Domain()) || c.ListenOn.Domain()[0] == '@')
|
||||||
listenIP := c.ListenOn.Family().IsIP() || (c.ListenOn.Family().IsDomain() && c.ListenOn.Domain() == "localhost")
|
listenIP := c.ListenOn.Family().IsIP() || (c.ListenOn.Family().IsDomain() && c.ListenOn.Domain() == "localhost")
|
||||||
switch {
|
switch {
|
||||||
case listenIP:
|
case listenIP:
|
||||||
|
Loading…
Reference in New Issue
Block a user