mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-07 20:31:41 +00:00
104 lines
2.4 KiB
Go
104 lines
2.4 KiB
Go
package http
|
|
|
|
import (
|
|
"bufio"
|
|
"encoding/base64"
|
|
"net"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
adapters "github.com/Dreamacro/clash/adapters/inbound"
|
|
"github.com/Dreamacro/clash/common/cache"
|
|
"github.com/Dreamacro/clash/component/auth"
|
|
"github.com/Dreamacro/clash/log"
|
|
authStore "github.com/Dreamacro/clash/proxy/auth"
|
|
"github.com/Dreamacro/clash/tunnel"
|
|
)
|
|
|
|
type HttpListener struct {
|
|
net.Listener
|
|
address string
|
|
closed bool
|
|
cache *cache.Cache
|
|
}
|
|
|
|
func NewHttpProxy(addr string) (*HttpListener, error) {
|
|
l, err := net.Listen("tcp", addr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
hl := &HttpListener{l, addr, false, cache.New(30 * time.Second)}
|
|
|
|
go func() {
|
|
log.Infoln("HTTP proxy listening at: %s", addr)
|
|
|
|
for {
|
|
c, err := hl.Accept()
|
|
if err != nil {
|
|
if hl.closed {
|
|
break
|
|
}
|
|
continue
|
|
}
|
|
go HandleConn(c, hl.cache)
|
|
}
|
|
}()
|
|
|
|
return hl, nil
|
|
}
|
|
|
|
func (l *HttpListener) Close() {
|
|
l.closed = true
|
|
l.Listener.Close()
|
|
}
|
|
|
|
func (l *HttpListener) Address() string {
|
|
return l.address
|
|
}
|
|
|
|
func canActivate(loginStr string, authenticator auth.Authenticator, cache *cache.Cache) (ret bool) {
|
|
if result := cache.Get(loginStr); result != nil {
|
|
ret = result.(bool)
|
|
}
|
|
loginData, err := base64.StdEncoding.DecodeString(loginStr)
|
|
login := strings.Split(string(loginData), ":")
|
|
ret = err == nil && len(login) == 2 && authenticator.Verify(login[0], login[1])
|
|
|
|
cache.Put(loginStr, ret, time.Minute)
|
|
return
|
|
}
|
|
|
|
func HandleConn(conn net.Conn, cache *cache.Cache) {
|
|
br := bufio.NewReader(conn)
|
|
request, err := http.ReadRequest(br)
|
|
if err != nil || request.URL.Host == "" {
|
|
conn.Close()
|
|
return
|
|
}
|
|
|
|
authenticator := authStore.Authenticator()
|
|
if authenticator != nil {
|
|
if authStrings := strings.Split(request.Header.Get("Proxy-Authorization"), " "); len(authStrings) != 2 {
|
|
_, err = conn.Write([]byte("HTTP/1.1 407 Proxy Authentication Required\r\nProxy-Authenticate: Basic\r\n\r\n"))
|
|
conn.Close()
|
|
return
|
|
} else if !canActivate(authStrings[1], authenticator, cache) {
|
|
conn.Write([]byte("HTTP/1.1 403 Forbidden\r\n\r\n"))
|
|
log.Infoln("Auth failed from %s", conn.RemoteAddr().String())
|
|
conn.Close()
|
|
return
|
|
}
|
|
}
|
|
|
|
if request.Method == http.MethodConnect {
|
|
_, err := conn.Write([]byte("HTTP/1.1 200 Connection established\r\n\r\n"))
|
|
if err != nil {
|
|
return
|
|
}
|
|
tunnel.Add(adapters.NewHTTPS(request, conn))
|
|
return
|
|
}
|
|
|
|
tunnel.Add(adapters.NewHTTP(request, conn))
|
|
}
|