| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package netsafe
- import (
- "context"
- "errors"
- "fmt"
- "net"
- "regexp"
- "strings"
- "time"
- )
- // ErrPrivateAddressBlocked marks a failed dial where the guard refused at least
- // one resolved address, so a caller offering an opt-in can tell it apart from an
- // ordinary connection failure.
- var ErrPrivateAddressBlocked = errors.New("blocked private/internal address")
- func IsBlockedIP(ip net.IP) bool {
- return ip.IsLoopback() || ip.IsPrivate() || ip.IsLinkLocalUnicast() ||
- ip.IsLinkLocalMulticast() || ip.IsUnspecified()
- }
- type allowPrivateCtxKey struct{}
- func ContextWithAllowPrivate(ctx context.Context, allow bool) context.Context {
- return context.WithValue(ctx, allowPrivateCtxKey{}, allow)
- }
- func AllowPrivateFromContext(ctx context.Context) bool {
- v, _ := ctx.Value(allowPrivateCtxKey{}).(bool)
- return v
- }
- var defaultDialer = &net.Dialer{Timeout: 10 * time.Second}
- func SSRFGuardedDialContext(ctx context.Context, network, addr string) (net.Conn, error) {
- host, port, err := net.SplitHostPort(addr)
- if err != nil {
- return nil, err
- }
- allowPrivate := AllowPrivateFromContext(ctx)
- var ips []net.IPAddr
- if ip := net.ParseIP(host); ip != nil {
- ips = []net.IPAddr{{IP: ip}}
- } else {
- ips, err = net.DefaultResolver.LookupIPAddr(ctx, host)
- if err != nil {
- return nil, err
- }
- }
- var lastErr, blockedErr error
- for _, ipAddr := range ips {
- if !allowPrivate && IsBlockedIP(ipAddr.IP) {
- blockedErr = fmt.Errorf("%w %s", ErrPrivateAddressBlocked, ipAddr.IP)
- continue
- }
- conn, derr := defaultDialer.DialContext(ctx, network, net.JoinHostPort(ipAddr.IP.String(), port))
- if derr == nil {
- return conn, nil
- }
- lastErr = derr
- }
- // A dual-stack name can mix refused and merely unreachable addresses, so the
- // refusal is reported alongside instead of being lost to the last failure.
- if blockedErr != nil {
- if lastErr != nil {
- return nil, fmt.Errorf("%w; %w", blockedErr, lastErr)
- }
- return nil, blockedErr
- }
- if lastErr == nil {
- lastErr = fmt.Errorf("no usable address for %s", host)
- }
- return nil, lastErr
- }
- var hostnamePattern = regexp.MustCompile(`^[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?(\.[A-Za-z0-9]([A-Za-z0-9-]*[A-Za-z0-9])?)*$`)
- func NormalizeHost(addr string) (string, error) {
- addr = strings.TrimSpace(addr)
- if addr == "" {
- return "", fmt.Errorf("address is required")
- }
- if strings.HasPrefix(addr, "[") && strings.HasSuffix(addr, "]") {
- addr = addr[1 : len(addr)-1]
- }
- if ip := net.ParseIP(addr); ip != nil {
- return ip.String(), nil
- }
- if len(addr) > 253 || !hostnamePattern.MatchString(addr) {
- return "", fmt.Errorf("invalid host %q", addr)
- }
- return addr, nil
- }
|