nps/server/proxy/http.go

267 lines
7.0 KiB
Go
Raw Normal View History

2019-02-12 19:54:00 +00:00
package proxy
import (
"bufio"
"crypto/tls"
2019-02-03 04:40:43 +00:00
"github.com/cnlh/nps/bridge"
2019-04-08 09:01:08 +00:00
"github.com/cnlh/nps/lib/cache"
2019-02-12 19:54:00 +00:00
"github.com/cnlh/nps/lib/common"
2019-02-09 09:07:47 +00:00
"github.com/cnlh/nps/lib/conn"
"github.com/cnlh/nps/lib/file"
2019-03-05 01:23:18 +00:00
"github.com/cnlh/nps/server/connection"
2019-02-23 15:29:48 +00:00
"github.com/cnlh/nps/vender/github.com/astaxie/beego/logs"
2019-03-04 05:41:20 +00:00
"io"
"net"
"net/http"
"net/http/httputil"
2019-02-23 15:29:48 +00:00
"os"
2019-02-05 16:35:23 +00:00
"path/filepath"
"strconv"
2019-04-08 09:01:08 +00:00
"strings"
"sync"
)
type httpServer struct {
2019-02-23 15:29:48 +00:00
BaseServer
2019-03-30 04:03:17 +00:00
httpPort int
httpsPort int
2019-03-23 14:19:59 +00:00
httpServer *http.Server
httpsServer *http.Server
httpsListener net.Listener
2019-04-08 09:01:08 +00:00
useCache bool
cache *cache.Cache
cacheLen int
}
2019-04-08 09:01:08 +00:00
func NewHttp(bridge *bridge.Bridge, c *file.Tunnel, httpPort, httpsPort int, useCache bool, cacheLen int) *httpServer {
httpServer := &httpServer{
2019-02-23 15:29:48 +00:00
BaseServer: BaseServer{
task: c,
bridge: bridge,
Mutex: sync.Mutex{},
},
httpPort: httpPort,
httpsPort: httpsPort,
2019-04-08 09:01:08 +00:00
useCache: useCache,
cacheLen: cacheLen,
}
2019-04-08 09:01:08 +00:00
if useCache {
httpServer.cache = cache.New(cacheLen)
}
return httpServer
}
func (s *httpServer) Start() error {
var err error
2019-02-09 09:07:47 +00:00
if s.errorContent, err = common.ReadAllFromFile(filepath.Join(common.GetRunPath(), "web", "static", "page", "error.html")); err != nil {
s.errorContent = []byte("easyProxy 404")
}
if s.httpPort > 0 {
2019-03-23 14:19:59 +00:00
s.httpServer = s.NewServer(s.httpPort, "http")
go func() {
2019-03-05 01:23:18 +00:00
l, err := connection.GetHttpListener()
if err != nil {
logs.Error(err)
os.Exit(0)
}
2019-03-23 14:19:59 +00:00
err = s.httpServer.Serve(l)
if err != nil {
2019-02-23 15:29:48 +00:00
logs.Error(err)
os.Exit(0)
}
}()
}
if s.httpsPort > 0 {
2019-03-23 14:19:59 +00:00
s.httpsServer = s.NewServer(s.httpsPort, "https")
go func() {
2019-03-23 14:19:59 +00:00
s.httpsListener, err = connection.GetHttpsListener()
2019-03-05 01:23:18 +00:00
if err != nil {
logs.Error(err)
os.Exit(0)
}
2019-04-08 09:01:08 +00:00
logs.Error(NewHttpsServer(s.httpsListener, s.bridge, s.useCache, s.cacheLen).Start())
}()
}
return nil
}
2019-02-17 17:05:05 +00:00
func (s *httpServer) Close() error {
2019-03-23 14:19:59 +00:00
if s.httpsListener != nil {
s.httpsListener.Close()
}
if s.httpsServer != nil {
s.httpsServer.Close()
}
if s.httpServer != nil {
s.httpServer.Close()
}
2019-02-17 17:05:05 +00:00
return nil
}
func (s *httpServer) handleTunneling(w http.ResponseWriter, r *http.Request) {
hijacker, ok := w.(http.Hijacker)
if !ok {
http.Error(w, "Hijacking not supported", http.StatusInternalServerError)
return
}
2019-02-09 09:07:47 +00:00
c, _, err := hijacker.Hijack()
if err != nil {
http.Error(w, err.Error(), http.StatusServiceUnavailable)
}
2019-04-08 09:01:08 +00:00
s.httpHandle(conn.NewConn(c), r)
}
2019-04-08 09:01:08 +00:00
func (s *httpServer) httpHandle(c *conn.Conn, r *http.Request) {
var (
2019-04-08 09:01:08 +00:00
isConn = false
2019-03-04 05:41:20 +00:00
host *file.Host
target net.Conn
lastHost *file.Host
err error
connClient io.ReadWriteCloser
2019-03-05 01:23:18 +00:00
scheme = r.URL.Scheme
2019-03-15 06:03:49 +00:00
lk *conn.Link
targetAddr string
2019-04-08 09:01:08 +00:00
readReq bool
)
2019-03-29 07:21:30 +00:00
if host, err = file.GetDb().GetInfoByHost(r.Host, r); err != nil {
2019-03-05 01:23:18 +00:00
logs.Notice("the url %s %s %s can't be parsed!", r.URL.Scheme, r.Host, r.RequestURI)
2019-02-16 12:43:26 +00:00
goto end
2019-03-23 14:19:59 +00:00
}
if err := s.CheckFlowAndConnNum(host.Client); err != nil {
logs.Warn("client id %d, host id %d, error %s, when https connection", host.Client.Id, host.Id, err.Error())
2019-02-23 15:29:48 +00:00
c.Close()
return
2019-02-16 12:43:26 +00:00
}
2019-03-29 02:41:57 +00:00
defer host.Client.AddConn()
2019-03-23 14:19:59 +00:00
lastHost = host
for {
2019-02-16 12:43:26 +00:00
start:
if isConn {
if err = s.auth(r, c, host.Client.Cnf.U, host.Client.Cnf.P); err != nil {
logs.Warn("auth error", err, r.RemoteAddr)
break
}
2019-03-29 02:41:57 +00:00
if targetAddr, err = host.Target.GetRandomTarget(); err != nil {
2019-03-15 06:03:49 +00:00
logs.Warn(err.Error())
break
}
2019-04-08 09:01:08 +00:00
lk = conn.NewLink(common.CONN_TCP, targetAddr, host.Client.Cnf.Crypt, host.Client.Cnf.Compress, r.RemoteAddr, host.Target.LocalProxy)
if target, err = s.bridge.SendLinkInfo(host.Client.Id, lk, nil); err != nil {
logs.Notice("connect to target %s error %s", lk.Host, err)
break
}
2019-03-05 01:23:18 +00:00
connClient = conn.GetConn(target, lk.Crypt, lk.Compress, host.Client.Rate, true)
isConn = false
go func() {
2019-04-08 09:01:08 +00:00
defer connClient.Close()
defer c.Close()
if resp, err := http.ReadResponse(bufio.NewReader(connClient), r); err != nil {
return
} else {
//if the cache is start and the response is in the extension,store the response to the cache list
if s.useCache && strings.Contains(r.URL.Path, ".") {
b, err := httputil.DumpResponse(resp, true)
if err != nil {
return
}
c.Write(b)
host.Flow.Add(0, int64(len(b)))
s.cache.Add(filepath.Join(host.Host, r.URL.Path), b)
} else {
b, err := httputil.DumpResponse(resp, false)
if err != nil {
return
}
c.Write(b)
if bodyLen, err := common.CopyBuffer(c, resp.Body); err != nil {
return
} else {
host.Flow.Add(0, int64(len(b))+bodyLen)
}
}
}
}()
2019-04-08 09:01:08 +00:00
} else if readReq {
r, err = http.ReadRequest(bufio.NewReader(c))
if err != nil {
break
}
2019-03-07 10:07:53 +00:00
r.URL.Scheme = scheme
2019-03-04 10:46:33 +00:00
//What happened Why one character less???
if r.Method == "ET" {
r.Method = "GET"
}
if r.Method == "OST" {
r.Method = "POST"
}
2019-03-29 07:21:30 +00:00
if hostTmp, err := file.GetDb().GetInfoByHost(r.Host, r); err != nil {
2019-03-05 01:23:18 +00:00
logs.Notice("the url %s %s %s can't be parsed!", r.URL.Scheme, r.Host, r.RequestURI)
2019-02-16 12:43:26 +00:00
break
} else if host != lastHost {
2019-03-05 01:23:18 +00:00
host = hostTmp
2019-02-16 12:43:26 +00:00
lastHost = host
isConn = true
goto start
}
}
2019-04-08 09:01:08 +00:00
//if the cache start and the request is in the cache list, return the cache
if s.useCache {
if v, ok := s.cache.Get(filepath.Join(host.Host, r.URL.Path)); ok {
n, err := c.Write(v.([]byte))
if err != nil {
break
}
logs.Trace("%s request, method %s, host %s, url %s, remote address %s, return cache", r.URL.Scheme, r.Method, r.Host, r.URL.Path, c.RemoteAddr().String())
host.Flow.Add(0, int64(n))
//if return cache and does not create a new conn with client and Connection is not set or close, close the connection.
if connClient == nil && (strings.ToLower(r.Header.Get("Connection")) == "close" || strings.ToLower(r.Header.Get("Connection")) == "") {
c.Close()
break
}
readReq = true
goto start
}
}
if connClient == nil {
isConn = true
goto start
}
readReq = true
2019-03-30 04:03:17 +00:00
//change the host and header and set proxy setting
2019-02-09 09:07:47 +00:00
common.ChangeHostAndHeader(r, host.HostChange, host.HeaderChange, c.Conn.RemoteAddr().String())
2019-03-18 06:18:58 +00:00
b, err := httputil.DumpRequest(r, false)
if err != nil {
break
}
2019-04-08 09:01:08 +00:00
logs.Trace("%s request, method %s, host %s, url %s, remote address %s, target %s", r.URL.Scheme, r.Method, r.Host, r.URL.Path, c.RemoteAddr().String(), lk.Host)
//write
2019-03-04 05:41:20 +00:00
connClient.Write(b)
2019-03-18 06:18:58 +00:00
if bodyLen, err := common.CopyBuffer(connClient, r.Body); err != nil {
break
} else {
host.Flow.Add(int64(len(b))+bodyLen, 0)
}
}
2019-02-16 12:43:26 +00:00
end:
if isConn {
s.writeConnFail(c.Conn)
}
c.Close()
if target != nil {
target.Close()
}
}
2019-03-05 01:23:18 +00:00
func (s *httpServer) NewServer(port int, scheme string) *http.Server {
return &http.Server{
Addr: ":" + strconv.Itoa(port),
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
2019-03-05 01:23:18 +00:00
r.URL.Scheme = scheme
s.handleTunneling(w, r)
}),
// Disable HTTP/2.
TLSNextProto: make(map[string]func(*http.Server, *tls.Conn, http.Handler)),
}
}