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"
"time"
"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"
)
2022-04-05 15:29:52 +00:00
func HandleConn(c net.Conn, in chan<- C.ConnContext, cache *cache.Cache[string, bool]) {
2021-06-15 09:13:40 +00:00
client := newClient(c.RemoteAddr(), in)
defer client.CloseIdleConnections()
var conn *N.BufferedConn
if bufConn, ok := c.(*N.BufferedConn); ok {
conn = bufConn
} else {
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)
return // hijack connection
}
host := request.Header.Get("Host")
if host != "" {
request.Host = host
}
request.RequestURI = ""
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
}
}
conn.Close()
}
2022-04-05 15:29:52 +00:00
func authenticate(request *http.Request, cache *cache.Cache[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-04-05 15:29:52 +00:00
var authed bool
if authed = cache.Get(credential); !authed {
user, pass, err := decodeBasicProxyAuthorization(credential)
2021-06-15 09:13:40 +00:00
authed = err == nil && authenticator.Verify(user, pass)
cache.Put(credential, authed, time.Minute)
}
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{},
}
}