1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00
v2fly/proxy/http/server.go

284 lines
7.4 KiB
Go
Raw Normal View History

2015-10-28 11:13:27 +00:00
package http
import (
2015-12-14 23:53:40 +00:00
"bufio"
2015-12-15 15:00:47 +00:00
"io"
2015-10-28 11:13:27 +00:00
"net"
2015-12-14 16:26:29 +00:00
"net/http"
2015-12-14 23:53:40 +00:00
"strconv"
2015-12-14 16:26:29 +00:00
"strings"
2015-12-15 15:00:47 +00:00
"sync"
2015-10-28 11:13:27 +00:00
2016-05-07 12:08:27 +00:00
"github.com/v2ray/v2ray-core/app"
2016-01-31 16:01:28 +00:00
"github.com/v2ray/v2ray-core/app/dispatcher"
2016-08-18 06:21:20 +00:00
"github.com/v2ray/v2ray-core/common"
2016-01-29 13:39:55 +00:00
v2io "github.com/v2ray/v2ray-core/common/io"
2015-12-14 23:53:40 +00:00
"github.com/v2ray/v2ray-core/common/log"
2015-12-02 20:44:01 +00:00
v2net "github.com/v2ray/v2ray-core/common/net"
2016-01-19 22:41:40 +00:00
"github.com/v2ray/v2ray-core/proxy"
"github.com/v2ray/v2ray-core/proxy/registry"
2016-06-14 20:54:08 +00:00
"github.com/v2ray/v2ray-core/transport/internet"
2015-12-15 15:00:47 +00:00
"github.com/v2ray/v2ray-core/transport/ray"
2015-10-28 11:13:27 +00:00
)
2016-05-29 14:46:31 +00:00
// Server is a HTTP proxy server.
type Server struct {
sync.Mutex
2016-01-31 16:01:28 +00:00
accepting bool
packetDispatcher dispatcher.PacketDispatcher
config *Config
2016-06-14 20:54:08 +00:00
tcpListener *internet.TCPHub
2016-06-04 12:25:13 +00:00
meta *proxy.InboundHandlerMeta
2015-10-28 11:13:27 +00:00
}
2016-06-04 12:25:13 +00:00
func NewServer(config *Config, packetDispatcher dispatcher.PacketDispatcher, meta *proxy.InboundHandlerMeta) *Server {
2016-05-29 14:46:31 +00:00
return &Server{
2016-01-31 16:01:28 +00:00
packetDispatcher: packetDispatcher,
config: config,
2016-06-04 12:25:13 +00:00
meta: meta,
2015-10-28 11:13:27 +00:00
}
}
2016-05-29 14:46:31 +00:00
func (this *Server) Port() v2net.Port {
2016-06-04 12:25:13 +00:00
return this.meta.Port
2016-01-19 22:41:40 +00:00
}
2016-05-29 14:46:31 +00:00
func (this *Server) Close() {
this.accepting = false
if this.tcpListener != nil {
2016-01-03 23:33:25 +00:00
this.Lock()
this.tcpListener.Close()
this.tcpListener = nil
this.Unlock()
}
}
2016-06-03 22:38:22 +00:00
func (this *Server) Start() error {
2016-01-19 22:41:40 +00:00
if this.accepting {
2016-06-03 22:38:22 +00:00
return nil
2016-01-19 22:41:40 +00:00
}
2016-06-14 20:54:08 +00:00
tcpListener, err := internet.ListenTCP(this.meta.Address, this.meta.Port, this.handleConnection, this.meta.StreamSettings)
2015-12-14 23:53:40 +00:00
if err != nil {
2016-06-04 12:25:13 +00:00
log.Error("HTTP: Failed listen on ", this.meta.Address, ":", this.meta.Port, ": ", err)
2015-12-14 23:53:40 +00:00
return err
2015-10-28 11:13:27 +00:00
}
2016-01-04 07:41:01 +00:00
this.Lock()
this.tcpListener = tcpListener
2016-01-04 07:41:01 +00:00
this.Unlock()
this.accepting = true
2015-12-14 23:53:40 +00:00
return nil
2015-12-14 16:26:29 +00:00
}
2015-12-16 22:53:38 +00:00
func parseHost(rawHost string, defaultPort v2net.Port) (v2net.Destination, error) {
2015-12-15 15:00:47 +00:00
port := defaultPort
2015-12-14 23:53:40 +00: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 {
return nil, err
}
2015-12-15 15:00:47 +00:00
} else {
intPort, err := strconv.Atoi(rawPort)
if err != nil {
return nil, err
}
port = v2net.Port(intPort)
2015-12-14 16:26:29 +00:00
}
2015-12-15 15:00:47 +00:00
2015-12-14 23:53:40 +00:00
if ip := net.ParseIP(host); ip != nil {
2015-12-16 22:53:38 +00:00
return v2net.TCPDestination(v2net.IPAddress(ip), port), nil
2015-12-14 23:53:40 +00:00
}
2015-12-16 22:53:38 +00:00
return v2net.TCPDestination(v2net.DomainAddress(host), port), nil
2015-12-14 16:26:29 +00:00
}
2016-06-14 20:54:08 +00:00
func (this *Server) handleConnection(conn internet.Connection) {
2015-12-15 15:00:47 +00:00
defer conn.Close()
2016-07-10 13:34:14 +00:00
timedReader := v2net.NewTimeOutReader(this.config.Timeout, conn)
2016-07-16 11:22:34 +00:00
reader := bufio.NewReaderSize(timedReader, 2048)
request, err := http.ReadRequest(reader)
if err != nil {
2016-06-03 18:21:46 +00:00
if err != io.EOF {
log.Warning("HTTP: Failed to read http request: ", err)
}
return
}
2016-06-01 22:57:08 +00:00
log.Info("HTTP: Request to Method [", request.Method, "] Host [", request.Host, "] with URL [", request.URL, "]")
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 {
2016-06-01 22:57:08 +00:00
log.Warning("HTTP: Malformed proxy host (", host, "): ", err)
2016-01-11 11:35:28 +00:00
return
}
2016-06-05 13:02:15 +00:00
log.Access(conn.RemoteAddr(), request.URL, log.AccessAccepted, "")
2016-08-14 15:08:01 +00:00
session := &proxy.SessionInfo{
2016-08-14 21:20:23 +00:00
Source: v2net.DestinationFromAddr(conn.RemoteAddr()),
2016-08-14 15:08:01 +00:00
Destination: dest,
}
if strings.ToUpper(request.Method) == "CONNECT" {
2016-08-14 15:08:01 +00:00
this.handleConnect(request, session, reader, conn)
} else {
2016-08-14 15:08:01 +00:00
this.handlePlainHTTP(request, session, reader, conn)
2015-12-16 14:52:40 +00:00
}
}
2015-12-15 21:13:09 +00:00
2016-08-14 15:08:01 +00:00
func (this *Server) handleConnect(request *http.Request, session *proxy.SessionInfo, reader io.Reader, writer io.Writer) {
2015-12-16 14:52:40 +00:00
response := &http.Response{
Status: "200 OK",
StatusCode: 200,
Proto: "HTTP/1.1",
ProtoMajor: 1,
ProtoMinor: 1,
Header: http.Header(make(map[string][]string)),
Body: nil,
ContentLength: 0,
Close: false,
}
2016-07-16 11:22:34 +00:00
response.Write(writer)
2015-12-15 15:00:47 +00:00
2016-08-14 15:08:01 +00:00
ray := this.packetDispatcher.DispatchToOutbound(this.meta, session)
2015-12-16 14:52:40 +00:00
this.transport(reader, writer, ray)
2015-12-15 15:00:47 +00:00
}
2016-05-29 14:46:31 +00:00
func (this *Server) transport(input io.Reader, output io.Writer, ray ray.InboundRay) {
var wg sync.WaitGroup
wg.Add(2)
defer wg.Wait()
2015-12-15 15:00:47 +00:00
2015-12-16 14:52:40 +00:00
go func() {
v2reader := v2io.NewAdaptiveReader(input)
defer v2reader.Release()
v2io.Pipe(v2reader, ray.InboundInput())
2016-04-18 16:44:10 +00:00
ray.InboundInput().Close()
wg.Done()
2015-12-16 14:52:40 +00:00
}()
2015-12-15 15:00:47 +00:00
go func() {
v2writer := v2io.NewAdaptiveWriter(output)
defer v2writer.Release()
v2io.Pipe(ray.InboundOutput(), v2writer)
2016-04-18 16:44:10 +00:00
ray.InboundOutput().Release()
wg.Done()
2015-12-15 15:00:47 +00:00
}()
}
2015-12-15 15:00:47 +00:00
2016-02-20 22:27:06 +00:00
// @VisibleForTesting
func StripHopByHopHeaders(request *http.Request) {
// 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
request.Header.Del("Proxy-Connection")
request.Header.Del("Proxy-Authenticate")
request.Header.Del("Proxy-Authorization")
request.Header.Del("TE")
request.Header.Del("Trailers")
request.Header.Del("Transfer-Encoding")
request.Header.Del("Upgrade")
// TODO: support keep-alive
connections := request.Header.Get("Connection")
request.Header.Set("Connection", "close")
if len(connections) == 0 {
return
}
for _, h := range strings.Split(connections, ",") {
request.Header.Del(strings.TrimSpace(h))
}
}
2016-06-01 22:57:08 +00:00
func (this *Server) GenerateResponse(statusCode int, status string) *http.Response {
hdr := http.Header(make(map[string][]string))
hdr.Set("Connection", "close")
return &http.Response{
Status: status,
StatusCode: statusCode,
Proto: "HTTP/1.1",
ProtoMajor: 1,
ProtoMinor: 1,
Header: hdr,
Body: nil,
ContentLength: 0,
Close: false,
}
}
2016-08-14 15:08:01 +00:00
func (this *Server) handlePlainHTTP(request *http.Request, session *proxy.SessionInfo, reader *bufio.Reader, writer io.Writer) {
if len(request.URL.Host) <= 0 {
2016-06-01 22:57:08 +00:00
response := this.GenerateResponse(400, "Bad Request")
2016-07-16 11:22:34 +00:00
response.Write(writer)
return
}
request.Host = request.URL.Host
2016-02-20 22:27:06 +00:00
StripHopByHopHeaders(request)
2016-08-14 15:08:01 +00:00
ray := this.packetDispatcher.DispatchToOutbound(this.meta, session)
2016-04-18 16:44:10 +00:00
defer ray.InboundInput().Close()
defer ray.InboundOutput().Release()
var finish sync.WaitGroup
finish.Add(1)
go func() {
defer finish.Done()
requestWriter := v2io.NewBufferedWriter(v2io.NewChainWriter(ray.InboundInput()))
err := request.Write(requestWriter)
if err != nil {
log.Warning("HTTP: Failed to write request: ", err)
return
}
requestWriter.Flush()
}()
finish.Add(1)
go func() {
defer finish.Done()
2016-05-25 20:36:52 +00:00
responseReader := bufio.NewReader(v2io.NewChanReader(ray.InboundOutput()))
response, err := http.ReadResponse(responseReader, request)
if err != nil {
log.Warning("HTTP: Failed to read response: ", err)
2016-06-01 22:57:08 +00:00
response = this.GenerateResponse(503, "Service Unavailable")
}
responseWriter := v2io.NewBufferedWriter(writer)
err = response.Write(responseWriter)
if err != nil {
log.Warning("HTTP: Failed to write response: ", err)
return
}
responseWriter.Flush()
}()
finish.Wait()
2015-10-28 11:13:27 +00:00
}
2016-05-07 12:08:27 +00:00
2016-06-14 20:54:08 +00:00
type ServerFactory struct{}
func (this *ServerFactory) StreamCapability() internet.StreamConnectionType {
return internet.StreamConnectionTypeRawTCP
}
func (this *ServerFactory) Create(space app.Space, rawConfig interface{}, meta *proxy.InboundHandlerMeta) (proxy.InboundHandler, error) {
if !space.HasApp(dispatcher.APP_ID) {
2016-08-18 06:21:20 +00:00
return nil, common.ErrBadConfiguration
2016-06-14 20:54:08 +00:00
}
return NewServer(
rawConfig.(*Config),
space.GetApp(dispatcher.APP_ID).(dispatcher.PacketDispatcher),
meta), nil
}
2016-05-07 12:08:27 +00:00
func init() {
registry.MustRegisterInboundHandlerCreator("http", new(ServerFactory))
2016-05-07 12:08:27 +00:00
}