2023-04-19 01:30:38 +01:00
|
|
|
package target
|
|
|
|
|
2023-04-20 02:53:43 +01:00
|
|
|
import (
|
2023-04-21 03:21:46 +01:00
|
|
|
"fmt"
|
2024-05-13 19:33:33 +01:00
|
|
|
"github.com/1f349/violet/logger"
|
2023-07-22 01:11:47 +01:00
|
|
|
"github.com/1f349/violet/proxy"
|
|
|
|
"github.com/1f349/violet/utils"
|
2023-08-30 11:34:53 +01:00
|
|
|
"github.com/google/uuid"
|
2023-08-17 14:38:00 +01:00
|
|
|
websocket2 "github.com/gorilla/websocket"
|
2023-04-21 03:21:46 +01:00
|
|
|
"github.com/rs/cors"
|
2023-06-03 19:33:06 +01:00
|
|
|
"golang.org/x/net/http/httpguts"
|
|
|
|
"io"
|
|
|
|
"net"
|
2023-04-20 02:53:43 +01:00
|
|
|
"net/http"
|
2023-06-03 19:33:06 +01:00
|
|
|
"net/textproto"
|
2023-04-21 03:21:46 +01:00
|
|
|
"net/url"
|
|
|
|
"path"
|
2023-04-24 15:36:21 +01:00
|
|
|
"strings"
|
2023-04-20 02:53:43 +01:00
|
|
|
)
|
|
|
|
|
2024-05-13 19:33:33 +01:00
|
|
|
var Logger = logger.Logger.WithPrefix("Violet Serve Route")
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// serveApiCors outputs the cors headers to make APIs work.
|
2023-04-21 03:21:46 +01:00
|
|
|
var serveApiCors = cors.New(cors.Options{
|
2024-02-14 19:30:21 +00:00
|
|
|
// allow all origins for api requests
|
|
|
|
AllowOriginFunc: func(origin string) bool { return true },
|
|
|
|
AllowedHeaders: []string{"Content-Type", "Authorization"},
|
2023-04-21 03:21:46 +01:00
|
|
|
AllowedMethods: []string{
|
|
|
|
http.MethodGet,
|
|
|
|
http.MethodHead,
|
|
|
|
http.MethodPost,
|
|
|
|
http.MethodPut,
|
|
|
|
http.MethodPatch,
|
|
|
|
http.MethodDelete,
|
|
|
|
http.MethodConnect,
|
|
|
|
},
|
|
|
|
AllowCredentials: true,
|
|
|
|
})
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// Route is a target used by the router to manage forwarding traffic to an
|
|
|
|
// internal server using the specified configuration.
|
2023-04-19 01:30:38 +01:00
|
|
|
type Route struct {
|
2023-07-12 16:55:09 +01:00
|
|
|
Src string `json:"src"` // request source
|
|
|
|
Dst string `json:"dst"` // proxy destination
|
2023-10-28 22:20:04 +01:00
|
|
|
Desc string `json:"desc"` // description for admin panel use
|
2023-07-12 16:55:09 +01:00
|
|
|
Flags Flags `json:"flags"` // extra flags
|
|
|
|
Headers http.Header `json:"-"` // extra headers
|
|
|
|
Proxy *proxy.HybridTransport `json:"-"` // reverse proxy handler
|
2023-04-21 03:21:46 +01:00
|
|
|
}
|
|
|
|
|
2023-07-13 00:15:00 +01:00
|
|
|
type RouteWithActive struct {
|
|
|
|
Route
|
|
|
|
Active bool `json:"active"`
|
|
|
|
}
|
|
|
|
|
2023-10-27 11:55:18 +01:00
|
|
|
func (r Route) OnDomain(domain string) bool {
|
|
|
|
// if there is no / then the first part is still the domain
|
|
|
|
domainPart, _, _ := strings.Cut(r.Src, "/")
|
|
|
|
if domainPart == domain {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// domainPart could start with a subdomain
|
|
|
|
return strings.HasSuffix(domainPart, "."+domain)
|
|
|
|
}
|
|
|
|
|
2023-08-28 23:09:29 +01:00
|
|
|
func (r Route) HasFlag(flag Flags) bool {
|
|
|
|
return r.Flags&flag != 0
|
|
|
|
}
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// UpdateHeaders takes an existing set of headers and overwrites them with the
|
|
|
|
// extra headers.
|
2023-04-21 03:21:46 +01:00
|
|
|
func (r Route) UpdateHeaders(header http.Header) {
|
|
|
|
for k, v := range r.Headers {
|
|
|
|
header[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// ServeHTTP responds with the data proxied from the internal server to the
|
|
|
|
// response writer provided.
|
2023-04-20 02:53:43 +01:00
|
|
|
func (r Route) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
2023-07-12 16:55:09 +01:00
|
|
|
if r.HasFlag(FlagCors) {
|
2023-04-24 15:36:21 +01:00
|
|
|
// wraps with CORS handler
|
2023-04-21 03:21:46 +01:00
|
|
|
serveApiCors.Handler(http.HandlerFunc(r.internalServeHTTP)).ServeHTTP(rw, req)
|
|
|
|
} else {
|
|
|
|
r.internalServeHTTP(rw, req)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// internalServeHTTP is an internal method which handles configuring the request
|
|
|
|
// for the reverse proxy handler.
|
2023-04-21 03:21:46 +01:00
|
|
|
func (r Route) internalServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
2023-04-24 15:36:21 +01:00
|
|
|
// set the scheme and port using defaults if the port is 0
|
2023-04-21 03:21:46 +01:00
|
|
|
scheme := "http"
|
2023-07-12 16:55:09 +01:00
|
|
|
if r.HasFlag(FlagSecureMode) {
|
2023-04-21 03:21:46 +01:00
|
|
|
scheme = "https"
|
|
|
|
}
|
|
|
|
|
2023-07-12 16:55:09 +01:00
|
|
|
// split the host and path
|
|
|
|
host, p := utils.SplitHostPath(r.Dst)
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// if not Abs then join with the ending of the current path
|
2023-07-12 16:55:09 +01:00
|
|
|
if !r.HasFlag(FlagAbs) {
|
|
|
|
p = path.Join(p, req.URL.Path)
|
2023-04-24 15:36:21 +01:00
|
|
|
|
|
|
|
// replace the trailing slash that path.Join() strips off
|
|
|
|
if strings.HasSuffix(req.URL.Path, "/") {
|
|
|
|
p += "/"
|
|
|
|
}
|
2023-04-21 03:21:46 +01:00
|
|
|
}
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// fix empty path
|
2023-04-21 03:21:46 +01:00
|
|
|
if p == "" {
|
|
|
|
p = "/"
|
|
|
|
}
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// create a new URL
|
2023-04-21 03:21:46 +01:00
|
|
|
u := &url.URL{
|
|
|
|
Scheme: scheme,
|
2023-07-12 16:55:09 +01:00
|
|
|
Host: host,
|
2023-04-21 03:21:46 +01:00
|
|
|
Path: p,
|
|
|
|
RawQuery: req.URL.RawQuery,
|
|
|
|
}
|
2023-04-24 15:36:21 +01:00
|
|
|
|
2023-05-29 00:01:57 +01:00
|
|
|
// close the incoming body after use
|
2023-06-06 00:39:12 +01:00
|
|
|
if req.Body != nil {
|
|
|
|
defer req.Body.Close()
|
|
|
|
}
|
2023-05-29 00:01:57 +01:00
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// create the internal request
|
2023-05-29 00:01:57 +01:00
|
|
|
req2, err := http.NewRequest(req.Method, u.String(), req.Body)
|
2023-04-21 03:21:46 +01:00
|
|
|
if err != nil {
|
2024-05-13 19:33:33 +01:00
|
|
|
Logger.Warn("Error generating new request", "err", err)
|
2023-06-03 19:33:06 +01:00
|
|
|
utils.RespondVioletError(rw, http.StatusBadGateway, "error generating new request")
|
2023-04-21 03:21:46 +01:00
|
|
|
return
|
|
|
|
}
|
2023-04-24 15:36:21 +01:00
|
|
|
|
|
|
|
// loops over the incoming request headers
|
2023-04-21 03:21:46 +01:00
|
|
|
for k, v := range req.Header {
|
2023-04-24 15:36:21 +01:00
|
|
|
// ignore host header
|
2023-04-21 03:21:46 +01:00
|
|
|
if k == "Host" {
|
|
|
|
continue
|
|
|
|
}
|
2023-04-24 15:36:21 +01:00
|
|
|
// copy header into the internal request
|
2023-04-21 03:21:46 +01:00
|
|
|
req2.Header[k] = v
|
|
|
|
}
|
2023-04-24 15:36:21 +01:00
|
|
|
|
|
|
|
// if extra route headers are set
|
|
|
|
if r.Headers != nil {
|
|
|
|
// loop over headers
|
|
|
|
for k, v := range r.Headers {
|
|
|
|
// copy header into the internal request
|
|
|
|
req2.Header[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if forward host is enabled then send the host
|
2023-07-12 16:55:09 +01:00
|
|
|
if r.HasFlag(FlagForwardHost) {
|
2023-04-21 03:21:46 +01:00
|
|
|
req2.Host = req.Host
|
|
|
|
}
|
2023-04-24 15:36:21 +01:00
|
|
|
|
2023-06-03 19:33:06 +01:00
|
|
|
// adds extra request metadata
|
2023-08-17 14:38:00 +01:00
|
|
|
if r.internalReverseProxyMeta(rw, req, req2) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// switch to websocket handler
|
|
|
|
// internally the http hijack method is called
|
|
|
|
if r.HasFlag(FlagWebsocket) && websocket2.IsWebSocketUpgrade(req2) {
|
|
|
|
r.Proxy.ConnectWebsocket(rw, req2)
|
|
|
|
return
|
|
|
|
}
|
2023-06-03 19:33:06 +01:00
|
|
|
|
2023-08-30 11:34:53 +01:00
|
|
|
req2.Header.Set("X-Violet-Loop-Detect", "1")
|
|
|
|
|
2023-04-24 15:36:21 +01:00
|
|
|
// serve request with reverse proxy
|
2023-06-03 19:33:06 +01:00
|
|
|
var resp *http.Response
|
2023-07-12 16:55:09 +01:00
|
|
|
if r.HasFlag(FlagIgnoreCert) {
|
2023-06-03 19:33:06 +01:00
|
|
|
resp, err = r.Proxy.InsecureRoundTrip(req2)
|
|
|
|
} else {
|
|
|
|
resp, err = r.Proxy.SecureRoundTrip(req2)
|
|
|
|
}
|
2023-07-11 01:11:56 +01:00
|
|
|
if err != nil {
|
2024-05-13 19:33:33 +01:00
|
|
|
Logger.Warn("Error receiving internal round trip response", "err", err)
|
2023-07-11 01:11:56 +01:00
|
|
|
utils.RespondVioletError(rw, http.StatusBadGateway, "error receiving internal round trip response")
|
|
|
|
return
|
|
|
|
}
|
2023-09-10 15:00:23 +01:00
|
|
|
|
|
|
|
// make sure to close response body after use
|
|
|
|
if resp.Body != nil {
|
|
|
|
defer resp.Body.Close()
|
|
|
|
}
|
|
|
|
|
2023-08-30 11:34:53 +01:00
|
|
|
if resp.StatusCode == http.StatusLoopDetected {
|
|
|
|
u := uuid.New()
|
2024-05-13 19:33:33 +01:00
|
|
|
Logger.Warn("Loop Detected", "id", u, "method", req.Method, "url", req.URL, "url2", req2.URL.String())
|
2023-08-30 11:34:53 +01:00
|
|
|
utils.RespondVioletError(rw, http.StatusLoopDetected, "error loop detected: "+u.String())
|
|
|
|
return
|
|
|
|
}
|
2023-06-03 19:33:06 +01:00
|
|
|
|
|
|
|
// copy headers and status code
|
|
|
|
copyHeader(rw.Header(), resp.Header)
|
|
|
|
rw.WriteHeader(resp.StatusCode)
|
|
|
|
|
|
|
|
// copy body
|
|
|
|
if resp.Body != nil {
|
|
|
|
_, err := io.Copy(rw, resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// internalReverseProxyMeta is mainly built from code copied from httputil.ReverseProxy,
|
|
|
|
// due to the highly custom nature of this reverse proxy software we use a copy
|
|
|
|
// of the code instead of the full httputil implementation to prevent overhead
|
|
|
|
// from the more generic implementation
|
2023-08-17 14:38:00 +01:00
|
|
|
func (r Route) internalReverseProxyMeta(rw http.ResponseWriter, req, req2 *http.Request) bool {
|
2023-06-03 19:33:06 +01:00
|
|
|
if req.ContentLength == 0 {
|
2023-08-17 14:38:00 +01:00
|
|
|
req2.Body = nil // Issue 16036: nil Body for http.Transport retries
|
2023-06-03 19:33:06 +01:00
|
|
|
}
|
2023-08-17 14:38:00 +01:00
|
|
|
if req2.Header == nil {
|
|
|
|
req2.Header = make(http.Header) // Issue 33142: historical behavior was to always allocate
|
2023-06-03 19:33:06 +01:00
|
|
|
}
|
|
|
|
|
2023-08-17 14:38:00 +01:00
|
|
|
reqUpType := upgradeType(req2.Header)
|
2023-06-03 19:33:06 +01:00
|
|
|
if !asciiIsPrint(reqUpType) {
|
|
|
|
utils.RespondVioletError(rw, http.StatusBadRequest, fmt.Sprintf("client tried to switch to invalid protocol %q", reqUpType))
|
2023-08-17 14:38:00 +01:00
|
|
|
return true
|
2023-06-03 19:33:06 +01:00
|
|
|
}
|
2023-08-17 14:38:00 +01:00
|
|
|
removeHopByHopHeaders(req2.Header)
|
2023-06-03 19:33:06 +01:00
|
|
|
|
|
|
|
// Issue 21096: tell backend applications that care about trailer support
|
|
|
|
// that we support trailers. (We do, but we don't go out of our way to
|
|
|
|
// advertise that unless the incoming client request thought it was worth
|
|
|
|
// mentioning.) Note that we look at req.Header, not outreq.Header, since
|
|
|
|
// the latter has passed through removeHopByHopHeaders.
|
|
|
|
if httpguts.HeaderValuesContainsToken(req.Header["Te"], "trailers") {
|
2023-08-17 14:38:00 +01:00
|
|
|
req2.Header.Set("Te", "trailers")
|
2023-06-03 19:33:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// After stripping all the hop-by-hop connection headers above, add back any
|
|
|
|
// necessary for protocol upgrades, such as for websockets.
|
|
|
|
if reqUpType != "" {
|
2023-08-17 14:38:00 +01:00
|
|
|
req2.Header.Set("Connection", "Upgrade")
|
|
|
|
req2.Header.Set("Upgrade", reqUpType)
|
2023-06-03 19:33:06 +01:00
|
|
|
}
|
|
|
|
|
2023-08-17 14:38:00 +01:00
|
|
|
if r.HasFlag(FlagForwardAddr) {
|
|
|
|
if clientIP, _, err := net.SplitHostPort(req.RemoteAddr); err == nil {
|
|
|
|
// If we aren't the first proxy retain prior
|
|
|
|
// X-Forwarded-For information as a comma+space
|
|
|
|
// separated list and fold multiple headers into one.
|
|
|
|
prior, ok := req2.Header["X-Forwarded-For"]
|
|
|
|
omit := ok && prior == nil // Issue 38079: nil now means don't populate the header
|
|
|
|
if len(prior) > 0 {
|
|
|
|
clientIP = strings.Join(prior, ", ") + ", " + clientIP
|
|
|
|
}
|
|
|
|
if !omit {
|
|
|
|
req2.Header.Set("X-Forwarded-For", clientIP)
|
|
|
|
}
|
2023-06-03 19:33:06 +01:00
|
|
|
}
|
|
|
|
}
|
2023-08-17 14:38:00 +01:00
|
|
|
|
|
|
|
return false
|
2023-04-20 02:53:43 +01:00
|
|
|
}
|
2023-04-24 15:36:21 +01:00
|
|
|
|
|
|
|
// String outputs a debug string for the route.
|
|
|
|
func (r Route) String() string {
|
|
|
|
return fmt.Sprintf("%#v", r)
|
|
|
|
}
|
2023-06-03 19:33:06 +01:00
|
|
|
|
|
|
|
// copyHeader copies all headers from src to dst
|
|
|
|
func copyHeader(dst, src http.Header) {
|
|
|
|
for k, vv := range src {
|
|
|
|
for _, v := range vv {
|
|
|
|
dst.Add(k, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// updateType returns the value of upgrade from http.Header
|
|
|
|
func upgradeType(h http.Header) string {
|
|
|
|
if !httpguts.HeaderValuesContainsToken(h["Connection"], "Upgrade") {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return h.Get("Upgrade")
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsPrint returns whether s is ASCII and printable according to
|
|
|
|
// https://tools.ietf.org/html/rfc20#section-4.2.
|
|
|
|
func asciiIsPrint(s string) bool {
|
|
|
|
for i := 0; i < len(s); i++ {
|
|
|
|
if s[i] < ' ' || s[i] > '~' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hop-by-hop headers. These are removed when sent to the backend.
|
|
|
|
// As of RFC 7230, hop-by-hop headers are required to appear in the
|
|
|
|
// Connection header field. These are the headers defined by the
|
|
|
|
// obsoleted RFC 2616 (section 13.5.1) and are used for backward
|
|
|
|
// compatibility.
|
|
|
|
var hopHeaders = []string{
|
|
|
|
"Connection",
|
|
|
|
"Proxy-Connection", // non-standard but still sent by libcurl and rejected by e.g. google
|
|
|
|
"Keep-Alive",
|
|
|
|
"Proxy-Authenticate",
|
|
|
|
"Proxy-Authorization",
|
|
|
|
"Te", // canonicalized version of "TE"
|
|
|
|
"Trailer", // not Trailers per URL above; https://www.rfc-editor.org/errata_search.php?eid=4522
|
|
|
|
"Transfer-Encoding",
|
|
|
|
"Upgrade",
|
|
|
|
}
|
|
|
|
|
|
|
|
// removeHopByHopHeaders removes the hop-by-hop headers defined in hopHeaders
|
|
|
|
func removeHopByHopHeaders(h http.Header) {
|
|
|
|
// RFC 7230, section 6.1: Remove headers listed in the "Connection" header.
|
|
|
|
for _, f := range h["Connection"] {
|
|
|
|
for _, sf := range strings.Split(f, ",") {
|
|
|
|
if sf = textproto.TrimString(sf); sf != "" {
|
|
|
|
h.Del(sf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// RFC 2616, section 13.5.1: Remove a set of known hop-by-hop headers.
|
|
|
|
// This behavior is superseded by the RFC 7230 Connection header, but
|
|
|
|
// preserve it for backwards compatibility.
|
|
|
|
for _, f := range hopHeaders {
|
|
|
|
h.Del(f)
|
|
|
|
}
|
|
|
|
}
|