2015-10-28 07:13:27 -04:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2017-02-15 16:51:01 -05:00
|
|
|
"bufio"
|
2017-01-14 18:57:06 -05:00
|
|
|
"context"
|
2015-12-15 10:00:47 -05:00
|
|
|
"io"
|
2015-10-28 07:13:27 -04:00
|
|
|
"net"
|
2015-12-14 11:26:29 -05:00
|
|
|
"net/http"
|
2017-01-31 06:42:05 -05:00
|
|
|
"runtime"
|
2015-12-14 18:53:40 -05:00
|
|
|
"strconv"
|
2015-12-14 11:26:29 -05:00
|
|
|
"strings"
|
2017-01-31 06:42:05 -05:00
|
|
|
"time"
|
2015-10-28 07:13:27 -04:00
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/app"
|
|
|
|
"v2ray.com/core/app/dispatcher"
|
2017-02-03 16:35:09 -05:00
|
|
|
"v2ray.com/core/app/log"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common"
|
2016-12-09 07:17:34 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2016-12-04 03:10:47 -05:00
|
|
|
"v2ray.com/core/common/errors"
|
2016-08-20 14:55:45 -04:00
|
|
|
v2net "v2ray.com/core/common/net"
|
2016-12-29 18:32:20 -05:00
|
|
|
"v2ray.com/core/common/signal"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/transport/internet"
|
2015-10-28 07:13:27 -04:00
|
|
|
)
|
|
|
|
|
2016-05-29 10:46:31 -04:00
|
|
|
// Server is a HTTP proxy server.
|
|
|
|
type Server struct {
|
2017-02-03 16:35:09 -05:00
|
|
|
config *ServerConfig
|
2015-10-28 07:13:27 -04:00
|
|
|
}
|
|
|
|
|
2016-12-22 07:54:11 -05:00
|
|
|
// NewServer creates a new HTTP inbound handler.
|
2017-01-12 18:56:21 -05:00
|
|
|
func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) {
|
|
|
|
space := app.SpaceFromContext(ctx)
|
|
|
|
if space == nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("no space in context.")
|
2017-01-12 18:56:21 -05:00
|
|
|
}
|
2017-01-06 09:32:36 -05:00
|
|
|
s := &Server{
|
|
|
|
config: config,
|
2015-10-28 07:13:27 -04:00
|
|
|
}
|
2017-01-12 18:56:21 -05:00
|
|
|
return s, nil
|
2015-10-28 07:13:27 -04:00
|
|
|
}
|
|
|
|
|
2017-01-26 14:46:44 -05:00
|
|
|
func (*Server) Network() v2net.NetworkList {
|
2017-01-14 18:57:06 -05:00
|
|
|
return v2net.NetworkList{
|
|
|
|
Network: []v2net.Network{v2net.Network_TCP},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-16 17:53:38 -05:00
|
|
|
func parseHost(rawHost string, defaultPort v2net.Port) (v2net.Destination, error) {
|
2015-12-15 10:00:47 -05:00
|
|
|
port := defaultPort
|
2015-12-14 18:53:40 -05:00
|
|
|
host, rawPort, err := net.SplitHostPort(rawHost)
|
|
|
|
if err != nil {
|
|
|
|
if addrError, ok := err.(*net.AddrError); ok && strings.Contains(addrError.Err, "missing port") {
|
|
|
|
host = rawHost
|
|
|
|
} else {
|
2016-09-20 05:53:05 -04:00
|
|
|
return v2net.Destination{}, err
|
2015-12-14 18:53:40 -05:00
|
|
|
}
|
2015-12-15 10:00:47 -05:00
|
|
|
} else {
|
|
|
|
intPort, err := strconv.Atoi(rawPort)
|
|
|
|
if err != nil {
|
2016-09-20 05:53:05 -04:00
|
|
|
return v2net.Destination{}, err
|
2015-12-15 10:00:47 -05:00
|
|
|
}
|
|
|
|
port = v2net.Port(intPort)
|
2015-12-14 11:26:29 -05:00
|
|
|
}
|
2015-12-15 10:00:47 -05:00
|
|
|
|
2015-12-14 18:53:40 -05:00
|
|
|
if ip := net.ParseIP(host); ip != nil {
|
2015-12-16 17:53:38 -05:00
|
|
|
return v2net.TCPDestination(v2net.IPAddress(ip), port), nil
|
2015-12-14 18:53:40 -05:00
|
|
|
}
|
2015-12-16 17:53:38 -05:00
|
|
|
return v2net.TCPDestination(v2net.DomainAddress(host), port), nil
|
2015-12-14 11:26:29 -05:00
|
|
|
}
|
|
|
|
|
2017-04-11 18:21:46 -04:00
|
|
|
func isTimeout(err error) bool {
|
|
|
|
nerr, ok := err.(net.Error)
|
|
|
|
return ok && nerr.Timeout()
|
|
|
|
}
|
|
|
|
|
2017-02-03 16:35:09 -05:00
|
|
|
func (s *Server) Process(ctx context.Context, network v2net.Network, conn internet.Connection, dispatcher dispatcher.Interface) error {
|
2017-04-11 18:21:46 -04:00
|
|
|
reader := bufio.NewReaderSize(conn, 8192)
|
|
|
|
|
2017-04-11 08:59:58 -04:00
|
|
|
Start:
|
2017-04-11 18:21:46 -04:00
|
|
|
conn.SetReadDeadline(time.Now().Add(time.Second * 16))
|
2015-12-31 18:34:08 -05:00
|
|
|
|
|
|
|
request, err := http.ReadRequest(reader)
|
|
|
|
if err != nil {
|
2017-04-11 08:59:58 -04:00
|
|
|
trace := newError("failed to read http request").Base(err)
|
2017-04-11 18:21:46 -04:00
|
|
|
if errors.Cause(err) != io.EOF && !isTimeout(errors.Cause(err)) {
|
2017-04-11 08:59:58 -04:00
|
|
|
trace.AtWarning()
|
2016-06-03 14:21:46 -04:00
|
|
|
}
|
2017-04-11 08:59:58 -04:00
|
|
|
return trace
|
2015-12-31 18:34:08 -05:00
|
|
|
}
|
2017-04-08 19:43:25 -04:00
|
|
|
log.Trace(newError("request to Method [", request.Method, "] Host [", request.Host, "] with URL [", request.URL, "]"))
|
2017-01-31 10:49:59 -05:00
|
|
|
conn.SetReadDeadline(time.Time{})
|
|
|
|
|
2015-12-31 18:34:08 -05:00
|
|
|
defaultPort := v2net.Port(80)
|
|
|
|
if strings.ToLower(request.URL.Scheme) == "https" {
|
|
|
|
defaultPort = v2net.Port(443)
|
|
|
|
}
|
|
|
|
host := request.Host
|
|
|
|
if len(host) == 0 {
|
|
|
|
host = request.URL.Host
|
|
|
|
}
|
|
|
|
dest, err := parseHost(host, defaultPort)
|
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("malformed proxy host: ", host).AtWarning().Base(err)
|
2015-12-31 18:34:08 -05:00
|
|
|
}
|
2016-06-05 09:02:15 -04:00
|
|
|
log.Access(conn.RemoteAddr(), request.URL, log.AccessAccepted, "")
|
2017-02-03 16:35:09 -05:00
|
|
|
|
2015-12-31 18:34:08 -05:00
|
|
|
if strings.ToUpper(request.Method) == "CONNECT" {
|
2017-02-03 16:35:09 -05:00
|
|
|
return s.handleConnect(ctx, request, reader, conn, dest, dispatcher)
|
2015-12-16 09:52:40 -05:00
|
|
|
}
|
2017-04-11 08:59:58 -04:00
|
|
|
|
|
|
|
keepAlive := (strings.TrimSpace(strings.ToLower(request.Header.Get("Proxy-Connection"))) == "keep-alive")
|
|
|
|
|
|
|
|
err = s.handlePlainHTTP(ctx, request, reader, conn, dest, dispatcher)
|
|
|
|
if err == errWaitAnother {
|
|
|
|
if keepAlive {
|
|
|
|
goto Start
|
|
|
|
}
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
2015-12-16 09:52:40 -05:00
|
|
|
}
|
2015-12-15 16:13:09 -05:00
|
|
|
|
2017-02-03 16:35:09 -05:00
|
|
|
func (s *Server) handleConnect(ctx context.Context, request *http.Request, reader io.Reader, writer io.Writer, dest v2net.Destination, dispatcher dispatcher.Interface) error {
|
2017-04-18 07:30:26 -04:00
|
|
|
_, err := writer.Write([]byte("HTTP/1.1 200 Connection established\n\n"))
|
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to write back OK response").Base(err)
|
2016-12-22 07:54:11 -05:00
|
|
|
}
|
2015-12-15 10:00:47 -05:00
|
|
|
|
2017-01-31 10:49:59 -05:00
|
|
|
timeout := time.Second * time.Duration(s.config.Timeout)
|
|
|
|
if timeout == 0 {
|
|
|
|
timeout = time.Minute * 2
|
|
|
|
}
|
2017-03-31 15:45:43 -04:00
|
|
|
ctx, timer := signal.CancelAfterInactivity(ctx, timeout)
|
2017-02-03 16:35:09 -05:00
|
|
|
ray, err := dispatcher.Dispatch(ctx, dest)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-12-15 10:00:47 -05:00
|
|
|
|
2016-12-29 18:32:20 -05:00
|
|
|
requestDone := signal.ExecuteAsync(func() error {
|
|
|
|
defer ray.InboundInput().Close()
|
2015-12-15 10:00:47 -05:00
|
|
|
|
2016-12-29 18:32:20 -05:00
|
|
|
v2reader := buf.NewReader(reader)
|
2017-04-17 16:50:02 -04:00
|
|
|
if err := buf.Copy(timer, v2reader, ray.InboundInput()); err != nil {
|
2016-12-29 18:32:20 -05:00
|
|
|
return err
|
2016-11-21 18:17:49 -05:00
|
|
|
}
|
2016-12-29 18:32:20 -05:00
|
|
|
return nil
|
|
|
|
})
|
2015-12-15 10:00:47 -05:00
|
|
|
|
2016-12-29 18:32:20 -05:00
|
|
|
responseDone := signal.ExecuteAsync(func() error {
|
|
|
|
v2writer := buf.NewWriter(writer)
|
2017-04-17 16:50:02 -04:00
|
|
|
if err := buf.Copy(timer, ray.InboundOutput(), v2writer); err != nil {
|
2016-12-29 18:32:20 -05:00
|
|
|
return err
|
2016-11-21 18:17:49 -05:00
|
|
|
}
|
2016-12-29 18:32:20 -05:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2017-01-28 15:24:46 -05:00
|
|
|
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
|
2017-01-10 08:22:42 -05:00
|
|
|
ray.InboundInput().CloseError()
|
|
|
|
ray.InboundOutput().CloseError()
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("connection ends").Base(err)
|
2017-01-10 08:22:42 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2017-01-31 06:42:05 -05:00
|
|
|
runtime.KeepAlive(timer)
|
|
|
|
|
2017-01-26 14:46:44 -05:00
|
|
|
return nil
|
2015-12-31 18:34:08 -05:00
|
|
|
}
|
2015-12-15 10:00:47 -05:00
|
|
|
|
2016-02-20 17:27:06 -05:00
|
|
|
// @VisibleForTesting
|
2017-04-11 08:59:58 -04:00
|
|
|
func StripHopByHopHeaders(header http.Header) {
|
2015-12-31 18:34:08 -05:00
|
|
|
// Strip hop-by-hop header basaed on RFC:
|
|
|
|
// http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.5.1
|
|
|
|
// https://www.mnot.net/blog/2011/07/11/what_proxies_must_do
|
|
|
|
|
2017-04-11 08:59:58 -04:00
|
|
|
header.Del("Proxy-Connection")
|
|
|
|
header.Del("Proxy-Authenticate")
|
|
|
|
header.Del("Proxy-Authorization")
|
|
|
|
header.Del("TE")
|
|
|
|
header.Del("Trailers")
|
|
|
|
header.Del("Transfer-Encoding")
|
|
|
|
header.Del("Upgrade")
|
|
|
|
|
|
|
|
connections := header.Get("Connection")
|
2017-04-11 18:21:46 -04:00
|
|
|
header.Del("Connection")
|
2015-12-31 18:34:08 -05:00
|
|
|
if len(connections) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, h := range strings.Split(connections, ",") {
|
2017-04-11 08:59:58 -04:00
|
|
|
header.Del(strings.TrimSpace(h))
|
2015-12-31 18:34:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-11 08:59:58 -04:00
|
|
|
var errWaitAnother = newError("keep alive")
|
2016-06-01 18:57:08 -04:00
|
|
|
|
2017-02-03 16:35:09 -05:00
|
|
|
func (s *Server) handlePlainHTTP(ctx context.Context, request *http.Request, reader io.Reader, writer io.Writer, dest v2net.Destination, dispatcher dispatcher.Interface) error {
|
2015-12-31 18:34:08 -05:00
|
|
|
if len(request.URL.Host) <= 0 {
|
2017-04-11 08:59:58 -04:00
|
|
|
response := &http.Response{
|
|
|
|
Status: "Bad Request",
|
|
|
|
StatusCode: 400,
|
|
|
|
Proto: "HTTP/1.1",
|
|
|
|
ProtoMajor: 1,
|
|
|
|
ProtoMinor: 1,
|
|
|
|
Header: http.Header(make(map[string][]string)),
|
|
|
|
Body: nil,
|
|
|
|
ContentLength: 0,
|
|
|
|
Close: true,
|
|
|
|
}
|
|
|
|
response.Header.Set("Proxy-Connection", "close")
|
|
|
|
response.Header.Set("Connection", "close")
|
2017-01-26 14:46:44 -05:00
|
|
|
return response.Write(writer)
|
2015-12-31 18:34:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
request.Host = request.URL.Host
|
2017-04-11 08:59:58 -04:00
|
|
|
StripHopByHopHeaders(request.Header)
|
2015-12-31 18:34:08 -05:00
|
|
|
|
2017-02-03 16:35:09 -05:00
|
|
|
ray, err := dispatcher.Dispatch(ctx, dest)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-12-29 18:51:39 -05:00
|
|
|
input := ray.InboundInput()
|
|
|
|
output := ray.InboundOutput()
|
2017-01-28 17:34:55 -05:00
|
|
|
defer input.Close()
|
2016-12-29 18:51:39 -05:00
|
|
|
|
2017-04-18 08:18:09 -04:00
|
|
|
var result error = errWaitAnother
|
|
|
|
|
2016-12-29 18:32:20 -05:00
|
|
|
requestDone := signal.ExecuteAsync(func() error {
|
2017-04-11 08:59:58 -04:00
|
|
|
request.Header.Set("Connection", "close")
|
|
|
|
|
2017-04-17 16:35:20 -04:00
|
|
|
requestWriter := buf.ToBytesWriter(ray.InboundInput())
|
|
|
|
if err := request.Write(requestWriter); err != nil {
|
2016-12-29 18:32:20 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
responseDone := signal.ExecuteAsync(func() error {
|
2017-04-12 05:13:54 -04:00
|
|
|
responseReader := bufio.NewReaderSize(buf.ToBytesReader(ray.InboundOutput()), 8192)
|
2015-12-31 18:34:08 -05:00
|
|
|
response, err := http.ReadResponse(responseReader, request)
|
2017-04-11 08:59:58 -04:00
|
|
|
if err == nil {
|
|
|
|
StripHopByHopHeaders(response.Header)
|
2017-04-18 07:39:34 -04:00
|
|
|
if response.ContentLength >= 0 {
|
|
|
|
response.Header.Set("Proxy-Connection", "keep-alive")
|
|
|
|
response.Header.Set("Connection", "keep-alive")
|
|
|
|
response.Header.Set("Keep-Alive", "timeout=4")
|
|
|
|
response.Close = false
|
2017-04-18 08:18:09 -04:00
|
|
|
} else {
|
|
|
|
response.Close = true
|
|
|
|
result = nil
|
2017-04-18 07:39:34 -04:00
|
|
|
}
|
2017-04-11 08:59:58 -04:00
|
|
|
} else {
|
2017-04-17 18:14:42 -04:00
|
|
|
log.Trace(newError("failed to read response from ", request.Host).Base(err).AtWarning())
|
2017-04-11 08:59:58 -04:00
|
|
|
response = &http.Response{
|
|
|
|
Status: "Service Unavailable",
|
|
|
|
StatusCode: 503,
|
|
|
|
Proto: "HTTP/1.1",
|
|
|
|
ProtoMajor: 1,
|
|
|
|
ProtoMinor: 1,
|
|
|
|
Header: http.Header(make(map[string][]string)),
|
|
|
|
Body: nil,
|
|
|
|
ContentLength: 0,
|
|
|
|
Close: true,
|
|
|
|
}
|
|
|
|
response.Header.Set("Connection", "close")
|
|
|
|
response.Header.Set("Proxy-Connection", "close")
|
2016-05-25 03:32:26 -04:00
|
|
|
}
|
2017-04-17 16:35:20 -04:00
|
|
|
if err := response.Write(writer); err != nil {
|
2017-04-17 18:14:42 -04:00
|
|
|
return newError("failed to write response").Base(err)
|
2015-12-31 18:34:08 -05:00
|
|
|
}
|
2016-12-29 18:32:20 -05:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2017-01-28 15:24:46 -05:00
|
|
|
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
|
2017-01-10 08:22:42 -05:00
|
|
|
input.CloseError()
|
|
|
|
output.CloseError()
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("connection ends").Base(err)
|
2016-12-29 18:32:20 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2017-04-18 08:18:09 -04:00
|
|
|
return result
|
2015-10-28 07:13:27 -04:00
|
|
|
}
|
2016-05-07 08:08:27 -04:00
|
|
|
|
|
|
|
func init() {
|
2017-01-12 18:56:21 -05:00
|
|
|
common.Must(common.RegisterConfig((*ServerConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
return NewServer(ctx, config.(*ServerConfig))
|
|
|
|
}))
|
2016-05-07 08:08:27 -04:00
|
|
|
}
|