* change go mod to 1.17 * update go-pgkz and transitive deps * bump examples to go-1.17 * bump deps
81 lines
2.2 KiB
Go
81 lines
2.2 KiB
Go
// Package realip extracts a real IP address from the request.
|
|
package realip
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"net"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
type ipRange struct {
|
|
start net.IP
|
|
end net.IP
|
|
}
|
|
|
|
var privateRanges = []ipRange{
|
|
{start: net.ParseIP("10.0.0.0"), end: net.ParseIP("10.255.255.255")},
|
|
{start: net.ParseIP("100.64.0.0"), end: net.ParseIP("100.127.255.255")},
|
|
{start: net.ParseIP("172.16.0.0"), end: net.ParseIP("172.31.255.255")},
|
|
{start: net.ParseIP("192.0.0.0"), end: net.ParseIP("192.0.0.255")},
|
|
{start: net.ParseIP("192.168.0.0"), end: net.ParseIP("192.168.255.255")},
|
|
{start: net.ParseIP("198.18.0.0"), end: net.ParseIP("198.19.255.255")},
|
|
}
|
|
|
|
// Get returns real ip from the given request
|
|
func Get(r *http.Request) (string, error) {
|
|
|
|
for _, h := range []string{"X-Forwarded-For", "X-Real-Ip"} {
|
|
addresses := strings.Split(r.Header.Get(h), ",")
|
|
// march from right to left until we get a public address
|
|
// that will be the address right before our proxy.
|
|
for i := len(addresses) - 1; i >= 0; i-- {
|
|
ip := strings.TrimSpace(addresses[i])
|
|
realIP := net.ParseIP(ip)
|
|
if !realIP.IsGlobalUnicast() || isPrivateSubnet(realIP) {
|
|
continue
|
|
}
|
|
return ip, nil
|
|
}
|
|
}
|
|
|
|
// X-Forwarded-For header set but parsing failed above
|
|
if r.Header.Get("X-Forwarded-For") != "" {
|
|
return "", fmt.Errorf("no valid ip found")
|
|
}
|
|
|
|
// get IP from RemoteAddr
|
|
ip, _, err := net.SplitHostPort(r.RemoteAddr)
|
|
if err != nil {
|
|
return "", fmt.Errorf("can't parse ip %q: %w", r.RemoteAddr, err)
|
|
}
|
|
if netIP := net.ParseIP(ip); netIP == nil {
|
|
return "", fmt.Errorf("no valid ip found")
|
|
}
|
|
|
|
return ip, nil
|
|
}
|
|
|
|
// inRange - check to see if a given ip address is within a range given
|
|
func inRange(r ipRange, ipAddress net.IP) bool {
|
|
// strcmp type byte comparison
|
|
if bytes.Compare(ipAddress, r.start) >= 0 && bytes.Compare(ipAddress, r.end) < 0 {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// isPrivateSubnet - check to see if this ip is in a private subnet
|
|
func isPrivateSubnet(ipAddress net.IP) bool {
|
|
if ipCheck := ipAddress.To4(); ipCheck != nil {
|
|
for _, r := range privateRanges {
|
|
// check if this ip is in a private range
|
|
if inRange(r, ipAddress) {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|