mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
116 lines
2.6 KiB
Go
116 lines
2.6 KiB
Go
package middleware
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
|
|
"github.com/yusing/go-proxy/internal/net/gphttp/httpheaders"
|
|
"github.com/yusing/go-proxy/internal/net/types"
|
|
)
|
|
|
|
// https://nginx.org/en/docs/http/ngx_http_realip_module.html
|
|
|
|
type (
|
|
realIP struct {
|
|
RealIPOpts
|
|
Tracer
|
|
}
|
|
RealIPOpts struct {
|
|
// Header is the name of the header to use for the real client IP
|
|
Header string `validate:"required"`
|
|
// From is a list of Address / CIDRs to trust
|
|
From []*types.CIDR `validate:"required,min=1"`
|
|
/*
|
|
If recursive search is disabled,
|
|
the original client address that matches one of the trusted addresses is replaced by
|
|
the last address sent in the request header field defined by the Header field.
|
|
If recursive search is enabled,
|
|
the original client address that matches one of the trusted addresses is replaced by
|
|
the last non-trusted address sent in the request header field.
|
|
*/
|
|
Recursive bool
|
|
}
|
|
)
|
|
|
|
var (
|
|
RealIP = NewMiddleware[realIP]()
|
|
realIPOptsDefault = RealIPOpts{
|
|
Header: "X-Real-IP",
|
|
From: []*types.CIDR{},
|
|
}
|
|
)
|
|
|
|
// setup implements MiddlewareWithSetup.
|
|
func (ri *realIP) setup() {
|
|
ri.RealIPOpts = realIPOptsDefault
|
|
}
|
|
|
|
// before implements RequestModifier.
|
|
func (ri *realIP) before(w http.ResponseWriter, r *http.Request) bool {
|
|
ri.setRealIP(r)
|
|
return true
|
|
}
|
|
|
|
func (ri *realIP) isInCIDRList(ip net.IP) bool {
|
|
for _, CIDR := range ri.From {
|
|
if CIDR.Contains(ip) {
|
|
return true
|
|
}
|
|
}
|
|
// not in any CIDR
|
|
return false
|
|
}
|
|
|
|
func (ri *realIP) setRealIP(req *http.Request) {
|
|
clientIPStr, _, err := net.SplitHostPort(req.RemoteAddr)
|
|
if err != nil {
|
|
clientIPStr = req.RemoteAddr
|
|
}
|
|
|
|
clientIP := net.ParseIP(clientIPStr)
|
|
isTrusted := false
|
|
|
|
for _, CIDR := range ri.From {
|
|
if CIDR.Contains(clientIP) {
|
|
isTrusted = true
|
|
break
|
|
}
|
|
}
|
|
if !isTrusted {
|
|
ri.AddTracef("client ip %s is not trusted", clientIP).With("allowed CIDRs", ri.From)
|
|
return
|
|
}
|
|
|
|
realIPs := req.Header.Values(ri.Header)
|
|
lastNonTrustedIP := ""
|
|
|
|
if len(realIPs) == 0 {
|
|
// try non-canonical key
|
|
realIPs = req.Header[ri.Header]
|
|
}
|
|
|
|
if len(realIPs) == 0 {
|
|
ri.AddTracef("no real ip found in header %s", ri.Header).WithRequest(req)
|
|
return
|
|
}
|
|
|
|
if !ri.Recursive {
|
|
lastNonTrustedIP = realIPs[len(realIPs)-1]
|
|
} else {
|
|
for _, r := range realIPs {
|
|
if !ri.isInCIDRList(net.ParseIP(r)) {
|
|
lastNonTrustedIP = r
|
|
}
|
|
}
|
|
}
|
|
|
|
if lastNonTrustedIP == "" {
|
|
ri.AddTracef("no non-trusted ip found").With("allowed CIDRs", ri.From).With("ips", realIPs)
|
|
return
|
|
}
|
|
|
|
req.RemoteAddr = lastNonTrustedIP
|
|
req.Header.Set(ri.Header, lastNonTrustedIP)
|
|
req.Header.Set(httpheaders.HeaderXRealIP, lastNonTrustedIP)
|
|
ri.AddTracef("set real ip %s", lastNonTrustedIP)
|
|
}
|