diff --git a/protocol/http/addr.go b/protocol/http/addr.go new file mode 100644 index 0000000..27ad1b2 --- /dev/null +++ b/protocol/http/addr.go @@ -0,0 +1,22 @@ +package http + +import ( + "net/http" + "strings" + + M "github.com/sagernet/sing/common/metadata" +) + +func SourceAddress(request *http.Request) M.Socksaddr { + address := M.ParseSocksaddr(request.RemoteAddr) + forwardFrom := request.Header.Get("X-Forwarded-For") + if forwardFrom != "" { + for _, from := range strings.Split(forwardFrom, ",") { + originAddr := M.ParseAddr(from) + if originAddr.IsValid() { + address.Addr = originAddr + } + } + } + return address +} diff --git a/protocol/http/handshake.go b/protocol/http/handshake.go index 1b59574..9866417 100644 --- a/protocol/http/handshake.go +++ b/protocol/http/handshake.go @@ -48,6 +48,10 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read } } + if sourceAddress := SourceAddress(request); sourceAddress.IsValid() { + metadata.Source = sourceAddress + } + if request.Method == "CONNECT" { portStr := request.URL.Port() if portStr == "" {