clash/listener/http/proxy.go

137 lines
3.3 KiB
Go
Raw Normal View History

2021-06-15 09:13:40 +00:00
package http
import (
"fmt"
2021-06-15 09:13:40 +00:00
"net"
"net/http"
"strings"
"github.com/Dreamacro/clash/adapter/inbound"
"github.com/Dreamacro/clash/common/cache"
N "github.com/Dreamacro/clash/common/net"
C "github.com/Dreamacro/clash/constant"
authStore "github.com/Dreamacro/clash/listener/auth"
"github.com/Dreamacro/clash/log"
)
func HandleConn(c net.Conn, in chan<- C.ConnContext, cache *cache.LruCache[string, bool], additions ...inbound.Addition) {
client := newClient(c.RemoteAddr(), in, additions...)
2021-06-15 09:13:40 +00:00
defer client.CloseIdleConnections()
conn := N.NewBufferedConn(c)
2021-06-15 09:13:40 +00:00
keepAlive := true
trusted := cache == nil // disable authenticate if cache is nil
for keepAlive {
request, err := ReadRequest(conn.Reader())
2021-06-15 09:13:40 +00:00
if err != nil {
break
}
request.RemoteAddr = conn.RemoteAddr().String()
keepAlive = strings.TrimSpace(strings.ToLower(request.Header.Get("Proxy-Connection"))) == "keep-alive"
var resp *http.Response
if !trusted {
resp = authenticate(request, cache)
trusted = resp == nil
}
if trusted {
if request.Method == http.MethodConnect {
// Manual writing to support CONNECT for http 1.0 (workaround for uplay client)
if _, err = fmt.Fprintf(conn, "HTTP/%d.%d %03d %s\r\n\r\n", request.ProtoMajor, request.ProtoMinor, http.StatusOK, "Connection established"); err != nil {
2021-06-15 09:13:40 +00:00
break // close connection
}
in <- inbound.NewHTTPS(request, conn, additions...)
2021-06-15 09:13:40 +00:00
return // hijack connection
}
host := request.Header.Get("Host")
if host != "" {
request.Host = host
}
request.RequestURI = ""
if isUpgradeRequest(request) {
handleUpgrade(conn, request, in, additions...)
return // hijack connection
}
removeHopByHopHeaders(request.Header)
removeExtraHTTPHostPort(request)
2021-06-15 09:13:40 +00:00
if request.URL.Scheme == "" || request.URL.Host == "" {
resp = responseWith(request, http.StatusBadRequest)
2021-06-15 09:13:40 +00:00
} else {
resp, err = client.Do(request)
if err != nil {
resp = responseWith(request, http.StatusBadGateway)
2021-06-15 09:13:40 +00:00
}
}
removeHopByHopHeaders(resp.Header)
}
2021-06-15 09:13:40 +00:00
if keepAlive {
resp.Header.Set("Proxy-Connection", "keep-alive")
resp.Header.Set("Connection", "keep-alive")
resp.Header.Set("Keep-Alive", "timeout=4")
}
resp.Close = !keepAlive
err = resp.Write(conn)
if err != nil {
break // close connection
}
}
2022-04-26 21:14:03 +00:00
_ = conn.Close()
2021-06-15 09:13:40 +00:00
}
func authenticate(request *http.Request, cache *cache.LruCache[string, bool]) *http.Response {
2021-06-15 09:13:40 +00:00
authenticator := authStore.Authenticator()
if authenticator != nil {
credential := parseBasicProxyAuthorization(request)
2021-06-15 09:13:40 +00:00
if credential == "" {
resp := responseWith(request, http.StatusProxyAuthRequired)
2021-06-15 09:13:40 +00:00
resp.Header.Set("Proxy-Authenticate", "Basic")
return resp
}
2022-08-17 03:43:13 +00:00
authed, exist := cache.Get(credential)
if !exist {
user, pass, err := decodeBasicProxyAuthorization(credential)
2021-06-15 09:13:40 +00:00
authed = err == nil && authenticator.Verify(user, pass)
2022-08-17 03:43:13 +00:00
cache.Set(credential, authed)
2021-06-15 09:13:40 +00:00
}
2022-04-05 15:29:52 +00:00
if !authed {
2021-06-15 09:13:40 +00:00
log.Infoln("Auth failed from %s", request.RemoteAddr)
return responseWith(request, http.StatusForbidden)
2021-06-15 09:13:40 +00:00
}
}
return nil
}
func responseWith(request *http.Request, statusCode int) *http.Response {
2021-06-15 09:13:40 +00:00
return &http.Response{
StatusCode: statusCode,
Status: http.StatusText(statusCode),
Proto: request.Proto,
ProtoMajor: request.ProtoMajor,
ProtoMinor: request.ProtoMinor,
2021-06-15 09:13:40 +00:00
Header: http.Header{},
}
}