2019-08-07 06:49:29 +00:00
// +build !confonly
2019-08-08 04:27:39 +00:00
2016-05-07 12:08:27 +00:00
package http
2016-05-28 11:44:11 +00:00
2019-07-24 01:15:05 +00:00
import (
2020-05-18 10:27:49 +00:00
"bufio"
2019-07-24 01:15:05 +00:00
"context"
"encoding/base64"
2020-01-07 10:16:22 +00:00
"io"
2020-05-18 10:27:49 +00:00
"net/http"
"net/url"
"sync"
"golang.org/x/net/http2"
2019-07-24 01:15:05 +00:00
"v2ray.com/core"
"v2ray.com/core/common"
"v2ray.com/core/common/buf"
"v2ray.com/core/common/net"
"v2ray.com/core/common/protocol"
"v2ray.com/core/common/retry"
"v2ray.com/core/common/session"
"v2ray.com/core/common/signal"
"v2ray.com/core/common/task"
"v2ray.com/core/features/policy"
"v2ray.com/core/transport"
"v2ray.com/core/transport/internet"
2020-05-18 10:27:49 +00:00
"v2ray.com/core/transport/internet/tls"
2019-07-24 01:15:05 +00:00
)
2016-05-28 11:44:11 +00:00
type Client struct {
2019-07-24 01:15:05 +00:00
serverPicker protocol . ServerPicker
policyManager policy . Manager
}
2020-05-18 10:27:49 +00:00
type h2Conn struct {
rawConn net . Conn
h2Conn * http2 . ClientConn
}
var (
cachedH2Mutex sync . Mutex
cachedH2Conns map [ net . Destination ] h2Conn
)
2019-07-24 01:15:05 +00:00
// NewClient create a new http client based on the given config.
func NewClient ( ctx context . Context , config * ClientConfig ) ( * Client , error ) {
serverList := protocol . NewServerList ( )
for _ , rec := range config . Server {
s , err := protocol . NewServerSpecFromPB ( * rec )
if err != nil {
return nil , newError ( "failed to get server spec" ) . Base ( err )
}
serverList . AddServer ( s )
}
if serverList . Size ( ) == 0 {
return nil , newError ( "0 target server" )
}
v := core . MustFromContext ( ctx )
return & Client {
serverPicker : protocol . NewRoundRobinServerPicker ( serverList ) ,
policyManager : v . GetFeature ( policy . ManagerType ( ) ) . ( policy . Manager ) ,
} , nil
}
2019-07-24 14:08:21 +00:00
// Process implements proxy.Outbound.Process. We first create a socket tunnel via HTTP CONNECT method, then redirect all inbound traffic to that tunnel.
2019-07-24 01:15:05 +00:00
func ( c * Client ) Process ( ctx context . Context , link * transport . Link , dialer internet . Dialer ) error {
outbound := session . OutboundFromContext ( ctx )
if outbound == nil || ! outbound . Target . IsValid ( ) {
return newError ( "target not specified." )
}
2020-05-18 10:27:49 +00:00
target := outbound . Target
2019-07-24 01:15:05 +00:00
2020-05-18 10:27:49 +00:00
if target . Network == net . Network_UDP {
2019-07-24 01:15:05 +00:00
return newError ( "UDP is not supported by HTTP outbound" )
}
2020-05-18 10:27:49 +00:00
var user * protocol . MemoryUser
2019-07-24 01:15:05 +00:00
var conn internet . Connection
if err := retry . ExponentialBackoff ( 5 , 100 ) . On ( func ( ) error {
2020-05-18 10:27:49 +00:00
server := c . serverPicker . PickServer ( )
2019-07-24 01:15:05 +00:00
dest := server . Destination ( )
2020-05-18 10:27:49 +00:00
user = server . PickUser ( )
targetAddr := target . NetAddr ( )
2019-07-24 01:15:05 +00:00
2020-05-18 10:27:49 +00:00
netConn , err := setUpHttpTunnel ( ctx , dest , targetAddr , user , dialer )
if netConn != nil {
conn = internet . Connection ( netConn )
}
return err
2019-07-24 01:15:05 +00:00
} ) ; err != nil {
return newError ( "failed to find an available destination" ) . Base ( err )
}
defer func ( ) {
if err := conn . Close ( ) ; err != nil {
newError ( "failed to closed connection" ) . Base ( err ) . WriteToLog ( session . ExportIDToError ( ctx ) )
}
} ( )
p := c . policyManager . ForLevel ( 0 )
if user != nil {
p = c . policyManager . ForLevel ( user . Level )
}
ctx , cancel := context . WithCancel ( ctx )
timer := signal . CancelAfterInactivity ( ctx , cancel , p . Timeouts . ConnectionIdle )
requestFunc := func ( ) error {
defer timer . SetTimeout ( p . Timeouts . DownlinkOnly )
return buf . Copy ( link . Reader , buf . NewWriter ( conn ) , buf . UpdateActivity ( timer ) )
}
responseFunc := func ( ) error {
defer timer . SetTimeout ( p . Timeouts . UplinkOnly )
2020-03-19 10:39:14 +00:00
return buf . Copy ( buf . NewReader ( conn ) , link . Writer , buf . UpdateActivity ( timer ) )
2019-07-24 01:15:05 +00:00
}
var responseDonePost = task . OnSuccess ( responseFunc , task . Close ( link . Writer ) )
if err := task . Run ( ctx , requestFunc , responseDonePost ) ; err != nil {
return newError ( "connection ends" ) . Base ( err )
}
return nil
}
2020-03-19 10:39:14 +00:00
// setUpHttpTunnel will create a socket tunnel via HTTP CONNECT method
2020-05-18 10:27:49 +00:00
func setUpHttpTunnel ( ctx context . Context , dest net . Destination , target string , user * protocol . MemoryUser , dialer internet . Dialer ) ( net . Conn , error ) {
req := ( & http . Request {
Method : "CONNECT" ,
URL : & url . URL { Host : target } ,
Header : make ( http . Header ) ,
Host : target ,
} ) . WithContext ( ctx )
2019-07-24 01:15:05 +00:00
if user != nil && user . Account != nil {
account := user . Account . ( * Account )
auth := account . GetUsername ( ) + ":" + account . GetPassword ( )
2020-05-18 10:27:49 +00:00
req . Header . Set ( "Proxy-Authorization" , "Basic " + base64 . StdEncoding . EncodeToString ( [ ] byte ( auth ) ) )
2019-07-24 01:15:05 +00:00
}
2020-05-18 10:27:49 +00:00
req . Header . Set ( "Proxy-Connection" , "Keep-Alive" )
2019-07-24 01:15:05 +00:00
2020-05-18 10:27:49 +00:00
connectHttp1 := func ( rawConn net . Conn ) ( net . Conn , error ) {
req . Proto = "HTTP/1.1"
req . ProtoMajor = 1
req . ProtoMinor = 1
err := req . Write ( rawConn )
if err != nil {
rawConn . Close ( )
return nil , err
}
resp , err := http . ReadResponse ( bufio . NewReader ( rawConn ) , req )
if err != nil {
rawConn . Close ( )
return nil , err
}
if resp . StatusCode != http . StatusOK {
rawConn . Close ( )
return nil , newError ( "Proxy responded with non 200 code: " + resp . Status )
}
return rawConn , nil
2019-07-24 01:15:05 +00:00
}
2020-05-18 10:27:49 +00:00
connectHttp2 := func ( rawConn net . Conn , h2clientConn * http2 . ClientConn ) ( net . Conn , error ) {
req . Proto = "HTTP/2.0"
req . ProtoMajor = 2
req . ProtoMinor = 0
pr , pw := io . Pipe ( )
req . Body = pr
resp , err := h2clientConn . RoundTrip ( req )
if err != nil {
rawConn . Close ( )
return nil , err
}
if resp . StatusCode != http . StatusOK {
rawConn . Close ( )
return nil , newError ( "Proxy responded with non 200 code: " + resp . Status )
}
return newHttp2Conn ( rawConn , pw , resp . Body ) , nil
2020-01-02 13:09:33 +00:00
}
2020-03-19 10:39:14 +00:00
2020-05-18 10:27:49 +00:00
cachedH2Mutex . Lock ( )
defer cachedH2Mutex . Unlock ( )
if cachedConn , found := cachedH2Conns [ dest ] ; found {
if cachedConn . rawConn != nil && cachedConn . h2Conn != nil {
rc := cachedConn . rawConn
cc := cachedConn . h2Conn
if cc . CanTakeNewRequest ( ) {
proxyConn , err := connectHttp2 ( rc , cc )
if err != nil {
return nil , err
}
return proxyConn , nil
}
}
}
rawConn , err := dialer . Dial ( ctx , dest )
if err != nil {
return nil , err
}
nextProto := ""
if tlsConn , ok := rawConn . ( * tls . Conn ) ; ok {
if err := tlsConn . Handshake ( ) ; err != nil {
rawConn . Close ( )
return nil , err
}
nextProto = tlsConn . ConnectionState ( ) . NegotiatedProtocol
}
switch nextProto {
case "" :
fallthrough
case "http/1.1" :
return connectHttp1 ( rawConn )
case "h2" :
t := http2 . Transport { }
h2clientConn , err := t . NewClientConn ( rawConn )
if err != nil {
rawConn . Close ( )
return nil , err
}
proxyConn , err := connectHttp2 ( rawConn , h2clientConn )
if err != nil {
rawConn . Close ( )
return nil , err
}
if cachedH2Conns == nil {
cachedH2Conns = make ( map [ net . Destination ] h2Conn )
}
cachedH2Conns [ dest ] = h2Conn {
rawConn : rawConn ,
h2Conn : h2clientConn ,
}
return proxyConn , err
default :
return nil , newError ( "negotiated unsupported application layer protocol: " + nextProto )
}
}
func newHttp2Conn ( c net . Conn , pipedReqBody * io . PipeWriter , respBody io . ReadCloser ) net . Conn {
return & http2Conn { Conn : c , in : pipedReqBody , out : respBody }
}
type http2Conn struct {
net . Conn
in * io . PipeWriter
out io . ReadCloser
}
func ( h * http2Conn ) Read ( p [ ] byte ) ( n int , err error ) {
return h . out . Read ( p )
}
func ( h * http2Conn ) Write ( p [ ] byte ) ( n int , err error ) {
return h . in . Write ( p )
}
func ( h * http2Conn ) Close ( ) error {
h . in . Close ( )
return h . out . Close ( )
}
func ( h * http2Conn ) CloseConn ( ) error {
return h . Conn . Close ( )
}
func ( h * http2Conn ) CloseWrite ( ) error {
return h . in . Close ( )
}
func ( h * http2Conn ) CloseRead ( ) error {
return h . out . Close ( )
2019-07-24 01:15:05 +00:00
}
func init ( ) {
common . Must ( common . RegisterConfig ( ( * ClientConfig ) ( nil ) , func ( ctx context . Context , config interface { } ) ( interface { } , error ) {
return NewClient ( ctx , config . ( * ClientConfig ) )
} ) )
2016-05-28 11:44:11 +00:00
}