sing-box/transport/v2rayhttp/server.go

172 lines
4.9 KiB
Go
Raw Normal View History

2022-08-22 14:19:25 +00:00
package v2rayhttp
import (
"context"
"net"
"net/http"
"os"
"strings"
"time"
2022-08-22 14:19:25 +00:00
"github.com/sagernet/sing-box/adapter"
2022-09-09 10:45:10 +00:00
"github.com/sagernet/sing-box/common/tls"
2022-08-22 14:19:25 +00:00
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/option"
"github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/buf"
"github.com/sagernet/sing/common/bufio"
2022-08-22 14:19:25 +00:00
E "github.com/sagernet/sing/common/exceptions"
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
2023-03-11 07:05:07 +00:00
aTLS "github.com/sagernet/sing/common/tls"
2022-08-23 11:44:40 +00:00
sHttp "github.com/sagernet/sing/protocol/http"
"golang.org/x/net/http2"
2022-11-09 03:49:01 +00:00
"golang.org/x/net/http2/h2c"
2022-08-22 14:19:25 +00:00
)
var _ adapter.V2RayServerTransport = (*Server)(nil)
type Server struct {
ctx context.Context
2023-03-11 07:05:07 +00:00
tlsConfig tls.ServerConfig
handler adapter.V2RayServerTransportHandler
httpServer *http.Server
h2Server *http2.Server
h2cHandler http.Handler
host []string
path string
method string
headers http.Header
2022-08-22 14:19:25 +00:00
}
func NewServer(ctx context.Context, options option.V2RayHTTPOptions, tlsConfig tls.ServerConfig, handler adapter.V2RayServerTransportHandler) (*Server, error) {
2022-08-22 14:19:25 +00:00
server := &Server{
2023-03-11 07:05:07 +00:00
ctx: ctx,
tlsConfig: tlsConfig,
handler: handler,
h2Server: &http2.Server{
IdleTimeout: time.Duration(options.IdleTimeout),
},
host: options.Host,
path: options.Path,
method: options.Method,
2023-10-21 04:00:00 +00:00
headers: options.Headers.Build(),
2022-08-22 14:19:25 +00:00
}
if !strings.HasPrefix(server.path, "/") {
server.path = "/" + server.path
}
server.httpServer = &http.Server{
Handler: server,
ReadHeaderTimeout: C.TCPTimeout,
MaxHeaderBytes: http.DefaultMaxHeaderBytes,
2023-04-08 10:46:35 +00:00
BaseContext: func(net.Listener) context.Context {
return ctx
},
2022-08-22 14:19:25 +00:00
}
2022-11-09 03:49:01 +00:00
server.h2cHandler = h2c.NewHandler(server, server.h2Server)
2022-09-09 10:45:10 +00:00
return server, nil
2022-08-22 14:19:25 +00:00
}
func (s *Server) ServeHTTP(writer http.ResponseWriter, request *http.Request) {
2022-11-09 03:49:01 +00:00
if request.Method == "PRI" && len(request.Header) == 0 && request.URL.Path == "*" && request.Proto == "HTTP/2.0" {
s.h2cHandler.ServeHTTP(writer, request)
return
}
2022-08-22 14:19:25 +00:00
host := request.Host
if len(s.host) > 0 && !common.Contains(s.host, host) {
2023-09-28 07:51:33 +00:00
s.invalidRequest(writer, request, http.StatusBadRequest, E.New("bad host: ", host))
2022-08-22 14:19:25 +00:00
return
}
if !strings.HasPrefix(request.URL.Path, s.path) {
2023-09-28 07:51:33 +00:00
s.invalidRequest(writer, request, http.StatusNotFound, E.New("bad path: ", request.URL.Path))
2022-08-22 14:19:25 +00:00
return
}
if s.method != "" && request.Method != s.method {
2023-09-28 07:51:33 +00:00
s.invalidRequest(writer, request, http.StatusNotFound, E.New("bad method: ", request.Method))
2022-08-22 14:19:25 +00:00
return
}
writer.Header().Set("Cache-Control", "no-store")
for key, values := range s.headers {
for _, value := range values {
writer.Header().Set(key, value)
}
}
2022-08-23 11:44:40 +00:00
var metadata M.Metadata
metadata.Source = sHttp.SourceAddress(request)
2022-08-22 14:19:25 +00:00
if h, ok := writer.(http.Hijacker); ok {
var requestBody *buf.Buffer
if contentLength := int(request.ContentLength); contentLength > 0 {
requestBody = buf.NewSize(contentLength)
_, err := requestBody.ReadFullFrom(request.Body, contentLength)
if err != nil {
2023-09-28 07:51:33 +00:00
s.invalidRequest(writer, request, 0, E.Cause(err, "read request"))
return
}
}
writer.WriteHeader(http.StatusOK)
writer.(http.Flusher).Flush()
conn, reader, err := h.Hijack()
2022-08-22 14:19:25 +00:00
if err != nil {
2023-09-28 07:51:33 +00:00
s.invalidRequest(writer, request, 0, E.Cause(err, "hijack conn"))
2022-08-22 14:19:25 +00:00
return
}
if cacheLen := reader.Reader.Buffered(); cacheLen > 0 {
cache := buf.NewSize(cacheLen)
_, err = cache.ReadFullFrom(reader.Reader, cacheLen)
if err != nil {
2023-09-28 07:51:33 +00:00
conn.Close()
s.invalidRequest(writer, request, 0, E.Cause(err, "read cache"))
return
}
conn = bufio.NewCachedConn(conn, cache)
}
if requestBody != nil {
conn = bufio.NewCachedConn(conn, requestBody)
}
2022-08-23 11:44:40 +00:00
s.handler.NewConnection(request.Context(), conn, metadata)
2022-08-22 14:19:25 +00:00
} else {
writer.WriteHeader(http.StatusOK)
2023-01-04 07:19:39 +00:00
conn := NewHTTP2Wrapper(&ServerHTTPConn{
NewHTTPConn(request.Body, writer),
2022-08-22 14:19:25 +00:00
writer.(http.Flusher),
2023-01-04 07:19:39 +00:00
})
2022-08-23 11:44:40 +00:00
s.handler.NewConnection(request.Context(), conn, metadata)
2023-01-04 07:19:39 +00:00
conn.CloseWrapper()
2022-08-22 14:19:25 +00:00
}
}
2023-09-28 07:51:33 +00:00
func (s *Server) invalidRequest(writer http.ResponseWriter, request *http.Request, statusCode int, err error) {
if statusCode > 0 {
writer.WriteHeader(statusCode)
}
2023-09-28 07:51:33 +00:00
s.handler.NewError(request.Context(), E.Cause(err, "process connection from ", request.RemoteAddr))
2022-08-22 14:19:25 +00:00
}
func (s *Server) Network() []string {
return []string{N.NetworkTCP}
}
2022-08-22 14:19:25 +00:00
func (s *Server) Serve(listener net.Listener) error {
2023-03-11 07:05:07 +00:00
if s.tlsConfig != nil {
2023-04-11 03:38:53 +00:00
if len(s.tlsConfig.NextProtos()) == 0 {
s.tlsConfig.SetNextProtos([]string{http2.NextProtoTLS, "http/1.1"})
} else if !common.Contains(s.tlsConfig.NextProtos(), http2.NextProtoTLS) {
s.tlsConfig.SetNextProtos(append([]string{"h2"}, s.tlsConfig.NextProtos()...))
}
2023-03-11 07:05:07 +00:00
listener = aTLS.NewListener(listener, s.tlsConfig)
2022-08-22 14:19:25 +00:00
}
2023-03-11 07:05:07 +00:00
return s.httpServer.Serve(listener)
2022-08-22 14:19:25 +00:00
}
func (s *Server) ServePacket(listener net.PacketConn) error {
return os.ErrInvalid
}
func (s *Server) Close() error {
return common.Close(common.PtrOrNil(s.httpServer))
}