2018-07-26 00:04:59 +08:00
|
|
|
package tunnel
|
|
|
|
|
|
|
|
import (
|
2018-08-27 00:06:40 +08:00
|
|
|
"bufio"
|
2020-06-12 23:39:03 +08:00
|
|
|
"errors"
|
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-09-21 11:33:29 +08:00
|
|
|
"time"
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2020-09-21 22:22:07 +08:00
|
|
|
"github.com/Dreamacro/clash/adapters/inbound"
|
|
|
|
"github.com/Dreamacro/clash/common/pool"
|
2020-06-12 23:39:03 +08:00
|
|
|
"github.com/Dreamacro/clash/component/resolver"
|
2019-12-28 18:44:01 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2021-01-23 14:49:46 +08:00
|
|
|
"github.com/Dreamacro/clash/context"
|
2018-07-26 00:04:59 +08:00
|
|
|
)
|
|
|
|
|
2021-01-23 14:49:46 +08:00
|
|
|
func handleHTTP(ctx *context.HTTPContext, outbound net.Conn) {
|
|
|
|
req := ctx.Request()
|
|
|
|
conn := ctx.Conn()
|
2018-08-27 00:06:40 +08:00
|
|
|
host := req.Host
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2021-01-23 14:49:46 +08:00
|
|
|
inboundReader := bufio.NewReader(conn)
|
2020-04-27 22:20:35 +08:00
|
|
|
outboundReader := bufio.NewReader(outbound)
|
2019-09-08 11:21:28 +08:00
|
|
|
|
2018-08-27 00:06:40 +08:00
|
|
|
for {
|
2019-03-03 11:51:15 +08:00
|
|
|
keepAlive := strings.TrimSpace(strings.ToLower(req.Header.Get("Proxy-Connection"))) == "keep-alive"
|
2018-12-10 11:48:57 +08:00
|
|
|
|
2018-08-27 00:06:40 +08:00
|
|
|
req.Header.Set("Connection", "close")
|
|
|
|
req.RequestURI = ""
|
2020-09-21 22:22:07 +08:00
|
|
|
inbound.RemoveHopByHopHeaders(req.Header)
|
2019-10-27 21:44:07 +08:00
|
|
|
err := req.Write(outbound)
|
2018-08-27 00:06:40 +08:00
|
|
|
if err != nil {
|
|
|
|
break
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2019-09-08 11:21:28 +08:00
|
|
|
|
|
|
|
handleResponse:
|
2020-12-29 11:28:22 +08:00
|
|
|
// resp will be closed after we call resp.Write()
|
|
|
|
// see https://golang.org/pkg/net/http/#Response.Write
|
2020-04-27 22:20:35 +08:00
|
|
|
resp, err := http.ReadResponse(outboundReader, req)
|
2018-08-27 00:06:40 +08:00
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
2020-09-21 22:22:07 +08:00
|
|
|
inbound.RemoveHopByHopHeaders(resp.Header)
|
2019-09-12 10:22:09 +08:00
|
|
|
|
|
|
|
if resp.StatusCode == http.StatusContinue {
|
2021-01-23 14:49:46 +08:00
|
|
|
err = resp.Write(conn)
|
2019-09-12 10:22:09 +08:00
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
goto handleResponse
|
|
|
|
}
|
|
|
|
|
|
|
|
if keepAlive || resp.ContentLength >= 0 {
|
2018-08-27 00:06:40 +08:00
|
|
|
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
|
|
|
|
}
|
2021-01-23 14:49:46 +08:00
|
|
|
err = resp.Write(conn)
|
2018-08-31 21:24:10 +08:00
|
|
|
if err != nil || resp.Close {
|
|
|
|
break
|
|
|
|
}
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2019-12-07 23:37:42 +08:00
|
|
|
// even if resp.Write write body to the connection, but some http request have to Copy to close it
|
2020-04-25 00:30:40 +08:00
|
|
|
buf := pool.Get(pool.RelayBufferSize)
|
2021-01-23 14:49:46 +08:00
|
|
|
_, err = io.CopyBuffer(conn, resp.Body, buf)
|
2020-04-25 00:30:40 +08:00
|
|
|
pool.Put(buf)
|
2019-10-26 22:12:33 +08:00
|
|
|
if err != nil && err != io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2020-04-27 22:20:35 +08:00
|
|
|
req, err = http.ReadRequest(inboundReader)
|
2018-08-27 00:06:40 +08:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-06-12 23:39:03 +08:00
|
|
|
func handleUDPToRemote(packet C.UDPPacket, pc C.PacketConn, metadata *C.Metadata) error {
|
2020-04-16 18:19:36 +08:00
|
|
|
defer packet.Drop()
|
|
|
|
|
2020-06-12 23:39:03 +08:00
|
|
|
// local resolve UDP dns
|
|
|
|
if !metadata.Resolved() {
|
|
|
|
ip, err := resolver.ResolveIP(metadata.Host)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
metadata.DstIP = ip
|
2019-07-25 17:47:39 +08:00
|
|
|
}
|
2020-06-12 23:39:03 +08:00
|
|
|
|
|
|
|
addr := metadata.UDPAddr()
|
|
|
|
if addr == nil {
|
|
|
|
return errors.New("udp addr invalid")
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := pc.WriteTo(packet.Data(), addr)
|
|
|
|
return err
|
2019-07-25 17:47:39 +08:00
|
|
|
}
|
2019-04-23 23:29:36 +08:00
|
|
|
|
2020-03-10 20:36:24 +08:00
|
|
|
func handleUDPToLocal(packet C.UDPPacket, pc net.PacketConn, key string, fAddr net.Addr) {
|
2020-04-25 00:30:40 +08:00
|
|
|
buf := pool.Get(pool.RelayBufferSize)
|
|
|
|
defer pool.Put(buf)
|
2020-02-15 21:42:46 +08:00
|
|
|
defer natTable.Delete(key)
|
2019-10-11 20:11:18 +08:00
|
|
|
defer pc.Close()
|
2019-04-23 23:29:36 +08:00
|
|
|
|
|
|
|
for {
|
2020-01-31 14:43:54 +08:00
|
|
|
pc.SetReadDeadline(time.Now().Add(udpTimeout))
|
2019-12-28 18:44:01 +08:00
|
|
|
n, from, err := pc.ReadFrom(buf)
|
2019-04-23 23:29:36 +08:00
|
|
|
if err != nil {
|
2019-07-25 17:47:39 +08:00
|
|
|
return
|
2019-04-23 23:29:36 +08:00
|
|
|
}
|
|
|
|
|
2020-03-10 20:36:24 +08:00
|
|
|
if fAddr != nil {
|
|
|
|
from = fAddr
|
|
|
|
}
|
|
|
|
|
2020-08-25 22:19:59 +08:00
|
|
|
_, err = packet.WriteBack(buf[:n], from)
|
2019-07-25 17:47:39 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
2019-04-23 23:29:36 +08:00
|
|
|
}
|
|
|
|
}
|
2019-07-25 17:47:39 +08:00
|
|
|
}
|
2019-04-23 23:29:36 +08:00
|
|
|
|
2021-01-23 14:49:46 +08:00
|
|
|
func handleSocket(ctx C.ConnContext, outbound net.Conn) {
|
|
|
|
relay(ctx.Conn(), outbound)
|
2018-09-17 00:15:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// relay copies between left and right bidirectionally.
|
|
|
|
func relay(leftConn, rightConn net.Conn) {
|
|
|
|
ch := make(chan error)
|
|
|
|
|
|
|
|
go func() {
|
2020-04-25 00:30:40 +08:00
|
|
|
buf := pool.Get(pool.RelayBufferSize)
|
2018-10-21 20:28:40 +08:00
|
|
|
_, err := io.CopyBuffer(leftConn, rightConn, buf)
|
2020-04-25 00:30:40 +08:00
|
|
|
pool.Put(buf)
|
2018-09-21 11:33:29 +08:00
|
|
|
leftConn.SetReadDeadline(time.Now())
|
2018-09-17 00:15:58 +08:00
|
|
|
ch <- err
|
|
|
|
}()
|
|
|
|
|
2020-04-25 00:30:40 +08:00
|
|
|
buf := pool.Get(pool.RelayBufferSize)
|
2018-10-21 20:28:40 +08:00
|
|
|
io.CopyBuffer(rightConn, leftConn, buf)
|
2020-04-25 00:30:40 +08:00
|
|
|
pool.Put(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
|
|
|
}
|