2018-07-26 00:04:59 +08:00
|
|
|
package tunnel
|
|
|
|
|
|
|
|
import (
|
2018-08-27 00:06:40 +08:00
|
|
|
"bufio"
|
2018-07-26 00:04:59 +08:00
|
|
|
"io"
|
2018-09-17 00:15:58 +08:00
|
|
|
"net"
|
2018-08-27 00:06:40 +08:00
|
|
|
"net/http"
|
2018-12-10 11:48:57 +08:00
|
|
|
"strings"
|
2018-10-21 20:28:40 +08:00
|
|
|
"sync"
|
2018-09-21 11:33:29 +08:00
|
|
|
"time"
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2018-12-22 23:56:42 +08:00
|
|
|
adapters "github.com/Dreamacro/clash/adapters/inbound"
|
2018-07-26 00:04:59 +08:00
|
|
|
)
|
|
|
|
|
2018-10-21 20:28:40 +08:00
|
|
|
const (
|
|
|
|
// io.Copy default buffer size is 32 KiB
|
|
|
|
// but the maximum packet size of vmess/shadowsocks is about 16 KiB
|
|
|
|
// so define a buffer of 20 KiB to reduce the memory of each TCP relay
|
|
|
|
bufferSize = 20 * 1024
|
|
|
|
)
|
|
|
|
|
|
|
|
var bufPool = sync.Pool{New: func() interface{} { return make([]byte, bufferSize) }}
|
|
|
|
|
2018-12-22 23:56:42 +08:00
|
|
|
func (t *Tunnel) handleHTTP(request *adapters.HTTPAdapter, outbound net.Conn) {
|
|
|
|
conn := newTrafficTrack(outbound, t.traffic)
|
2018-08-27 00:06:40 +08:00
|
|
|
req := request.R
|
|
|
|
host := req.Host
|
2018-12-10 11:48:57 +08:00
|
|
|
keepalive := true
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2018-08-27 00:06:40 +08:00
|
|
|
for {
|
2018-12-10 11:48:57 +08:00
|
|
|
if strings.ToLower(req.Header.Get("Connection")) == "close" {
|
|
|
|
keepalive = false
|
|
|
|
}
|
|
|
|
|
2018-08-27 00:06:40 +08:00
|
|
|
req.Header.Set("Connection", "close")
|
|
|
|
req.RequestURI = ""
|
|
|
|
adapters.RemoveHopByHopHeaders(req.Header)
|
|
|
|
err := req.Write(conn)
|
|
|
|
if err != nil {
|
|
|
|
break
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-08-27 00:06:40 +08:00
|
|
|
br := bufio.NewReader(conn)
|
|
|
|
resp, err := http.ReadResponse(br, req)
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
adapters.RemoveHopByHopHeaders(resp.Header)
|
|
|
|
if resp.ContentLength >= 0 {
|
|
|
|
resp.Header.Set("Proxy-Connection", "keep-alive")
|
|
|
|
resp.Header.Set("Connection", "keep-alive")
|
|
|
|
resp.Header.Set("Keep-Alive", "timeout=4")
|
|
|
|
resp.Close = false
|
|
|
|
} else {
|
|
|
|
resp.Close = true
|
|
|
|
}
|
2018-08-31 21:24:10 +08:00
|
|
|
err = resp.Write(request.Conn())
|
|
|
|
if err != nil || resp.Close {
|
|
|
|
break
|
|
|
|
}
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2018-12-10 11:48:57 +08:00
|
|
|
if !keepalive {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2018-08-27 00:06:40 +08:00
|
|
|
req, err = http.ReadRequest(bufio.NewReader(request.Conn()))
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sometimes firefox just open a socket to process multiple domains in HTTP
|
|
|
|
// The temporary solution is close connection when encountering different HOST
|
|
|
|
if req.Host != host {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2018-12-22 23:56:42 +08:00
|
|
|
func (t *Tunnel) handleSOCKS(request *adapters.SocketAdapter, outbound net.Conn) {
|
|
|
|
conn := newTrafficTrack(outbound, t.traffic)
|
2018-09-17 00:15:58 +08:00
|
|
|
relay(request.Conn(), conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
// relay copies between left and right bidirectionally.
|
|
|
|
func relay(leftConn, rightConn net.Conn) {
|
|
|
|
ch := make(chan error)
|
|
|
|
|
|
|
|
go func() {
|
2018-10-21 20:28:40 +08:00
|
|
|
buf := bufPool.Get().([]byte)
|
|
|
|
_, err := io.CopyBuffer(leftConn, rightConn, buf)
|
|
|
|
bufPool.Put(buf[:cap(buf)])
|
2018-09-21 11:33:29 +08:00
|
|
|
leftConn.SetReadDeadline(time.Now())
|
2018-09-17 00:15:58 +08:00
|
|
|
ch <- err
|
|
|
|
}()
|
|
|
|
|
2018-10-21 20:28:40 +08:00
|
|
|
buf := bufPool.Get().([]byte)
|
|
|
|
io.CopyBuffer(rightConn, leftConn, buf)
|
|
|
|
bufPool.Put(buf[:cap(buf)])
|
2018-09-21 11:33:29 +08:00
|
|
|
rightConn.SetReadDeadline(time.Now())
|
2018-09-17 00:15:58 +08:00
|
|
|
<-ch
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|