2021-06-15 09:13:40 +00:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2021-09-30 08:30:07 +00:00
|
|
|
"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()
|
|
|
|
|
2022-04-25 11:50:20 +00:00
|
|
|
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 {
|
2021-08-20 15:38:47 +00:00
|
|
|
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 {
|
2021-09-30 08:30:07 +00:00
|
|
|
// 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 = ""
|
|
|
|
|
2022-04-25 11:50:20 +00:00
|
|
|
if isUpgradeRequest(request) {
|
2022-04-26 21:14:03 +00:00
|
|
|
if resp = handleUpgrade(conn, conn.RemoteAddr(), request, in); resp == nil {
|
|
|
|
return // hijack connection
|
|
|
|
}
|
2022-04-25 11:50:20 +00:00
|
|
|
}
|
|
|
|
|
2021-09-13 16:08:23 +00:00
|
|
|
removeHopByHopHeaders(request.Header)
|
|
|
|
removeExtraHTTPHostPort(request)
|
2021-06-15 09:13:40 +00:00
|
|
|
|
|
|
|
if request.URL.Scheme == "" || request.URL.Host == "" {
|
2021-09-30 08:30:07 +00:00
|
|
|
resp = responseWith(request, http.StatusBadRequest)
|
2021-06-15 09:13:40 +00:00
|
|
|
} else {
|
|
|
|
resp, err = client.Do(request)
|
|
|
|
if err != nil {
|
2021-09-30 08:30:07 +00:00
|
|
|
resp = responseWith(request, http.StatusBadGateway)
|
2021-06-15 09:13:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 16:08:23 +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
|
|
|
}
|
|
|
|
|
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 {
|
2021-09-13 16:08:23 +00:00
|
|
|
credential := parseBasicProxyAuthorization(request)
|
2021-06-15 09:13:40 +00:00
|
|
|
if credential == "" {
|
2021-09-30 08:30:07 +00:00
|
|
|
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 {
|
2021-09-13 16:08:23 +00:00
|
|
|
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)
|
|
|
|
|
2021-09-30 08:30:07 +00:00
|
|
|
return responseWith(request, http.StatusForbidden)
|
2021-06-15 09:13:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-30 08:30:07 +00:00
|
|
|
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),
|
2021-09-30 08:30:07 +00:00
|
|
|
Proto: request.Proto,
|
|
|
|
ProtoMajor: request.ProtoMajor,
|
|
|
|
ProtoMinor: request.ProtoMinor,
|
2021-06-15 09:13:40 +00:00
|
|
|
Header: http.Header{},
|
|
|
|
}
|
|
|
|
}
|