Module: Otto::Utils

Extended by:
Utils
Included in:
Utils
Defined in:
lib/otto/utils.rb

Overview

Utility methods for common operations and helpers

Constant Summary collapse

FORWARDED_FOR_HEADERS =

Forwarded-for style headers consulted (in order) when resolving the real client IP from behind a trusted proxy. Shared by IPPrivacyMiddleware and Otto::Request so the two resolvers cannot drift.

%w[
  HTTP_X_FORWARDED_FOR
  HTTP_X_REAL_IP
  HTTP_X_CLIENT_IP
].freeze
FORWARDED_AUTHORITY_HEADERS =

Forwarding metadata Rack::Request reads without consulting Otto's proxy trust verdict: host (#host/#authority), scheme (#scheme/#ssl?), and port (#port), from both the X-Forwarded-* family and RFC 7239 Forwarded (host=, proto=, and the port inside for=). IPPrivacyMiddleware deletes every one of these for a peer that failed configured proxy trust.

%w[
  HTTP_FORWARDED
  HTTP_X_FORWARDED_HOST
  HTTP_X_FORWARDED_PROTO
  HTTP_X_FORWARDED_SCHEME
  HTTP_X_FORWARDED_SSL
  HTTP_X_FORWARDED_PORT
].freeze
RELAY_MARKER_HEADERS =

Headers whose presence means the request was RELAYED by a proxy rather than issued directly by the peer: every forwarding carrier Otto knows — the forwarded-for family, RFC 7239 Forwarded, and the authority (host / scheme / port) carriers. The set must cover everything IPPrivacyMiddleware may DELETE on the untrusted-peer path: a carrier that is scrubbed but not counted here would let a relayed request look direct afterwards. Shared by IPPrivacyMiddleware (which records the verdict as env BEFORE the scrub) and Otto::CaddyTLS::LocalhostGuard, so the record and the guard's own fallback scan cannot drift.

(FORWARDED_FOR_HEADERS + FORWARDED_AUTHORITY_HEADERS).uniq.freeze
SPECIAL_USE_RANGES =

Special-use IPv4/IPv6 ranges that IPAddr's #private?/#loopback?/#link_local? predicates do not cover but that should still be treated as non-public (e.g. when picking the real client out of a forwarded chain).

The documentation ranges (192.0.2.0/24, 198.51.100.0/24, 203.0.113.0/24, 2001:db8::/32 and the newer 3fff::/20) are deliberately NOT listed here. The predicate answers "could this be the real client", and non-public entries are skipped as proxy hops. Those ranges are not globally routable, but they are the universal convention for an example public client in tests and docs, including this repo's own specs and guides, so treating them as non-public would make the resolver skip the example client and silently invalidate those examples. There is no security gain either: an attacker who can inject into a chain injects a routable address, and a documentation address in a real chain means a misconfigured hop, which is better surfaced than skipped.

[
  IPAddr.new('0.0.0.0/8'),   # "this" network / unspecified (IPv4)
  IPAddr.new('224.0.0.0/4'), # IPv4 multicast
  IPAddr.new('::/128'),      # IPv6 unspecified
  IPAddr.new('ff00::/8'),    # IPv6 multicast
].freeze

Instance Method Summary collapse

Instance Method Details

#forwarded_chain_for_depth(env, header_mode) ⇒ Array<String>

Positional forwarded-hop chain for depth resolution, selected by header mode. Each element is one hop (preserving count); values are raw — only the finally-selected entry is normalized. Mirrors OneTimeSecret's site.network.trusted_proxy.header semantics.

Parameters:

  • env (Hash)

    Rack environment

  • header_mode (String)

    'X-Forwarded-For', 'Forwarded', or 'Both'

Returns:

  • (Array<String>)

    one entry per hop (may include blank/invalid entries)



271
272
273
274
275
276
277
278
279
280
281
282
283
284
# File 'lib/otto/utils.rb', line 271

def forwarded_chain_for_depth(env, header_mode)
  case header_mode
  when 'Forwarded'
    rfc7239_for_chain(env['HTTP_FORWARDED'])
  when 'Both'
    # RFC 7239 wins when it carries at least one `for=`; otherwise fall back
    # to X-Forwarded-For. The chains are NOT merged (matches OTS's
    # `extract_rfc7239_forwarded(env) || extract_x_forwarded_for(env)`).
    forwarded = rfc7239_for_chain(env['HTTP_FORWARDED'])
    forwarded.any? { |entry| !entry.empty? } ? forwarded : xff_chain(env['HTTP_X_FORWARDED_FOR'])
  else
    xff_chain(env['HTTP_X_FORWARDED_FOR'])
  end
end

#ip_in_cidrs?(ip, cidrs) ⇒ Boolean

Whether an address falls inside any of the given CIDR ranges.

The general-purpose CIDR-set matcher (allowlists, denylists, network zones), sharing the semantics of the trusted-proxy matcher: the client address is normalized (port stripped, validated) and folded via IPAddr#native so an IPv4-mapped IPv6 peer (::ffff:203.0.113.7) matches an IPv4 range; ranges of the other address family are skipped rather than raising.

Ranges are folded through #native too, so the fold is symmetric: a mapped-IPv6 CIDR (::ffff:10.0.0.0/104) matches a plain IPv4 client just as a mapped client matches a plain IPv4 range. Folding only one side made the family check reject the pair and silently drop the entry — wrong verdict, not a raise. #native returns self for ranges that are not IPv4-mapped/compatible, so ordinary IPv4 and IPv6 CIDRs are untouched, and it returns a new IPAddr rather than mutating, so pre-parsed entries in a caller's configuration array stay intact.

The fold needs the prefix to cover the mapped marker — /96 or longer. ::ffff:10.0.0.0/104 folds to 10.0.0.0/8; ::ffff:10.0.0.0/64 does not fold at all, because masking zeroes the ffff marker, and so matches neither an IPv4 client nor a mapped one. Write mapped ranges at /96+, or just write the IPv4 CIDR. ::ffff:0:0/96 is the whole mapped space and therefore matches every IPv4 address. Deprecated IPv4-compatible notation (::a.b.c.d) folds on the same terms, on both sides.

Asymmetric strictness, on purpose:

  • ip is runtime data — nil, blank, or malformed input returns false (fail-closed for allowlist callers).
  • cidrs entries are configuration — an invalid CIDR string raises IPAddr::InvalidAddressError, because silently skipping an entry narrows an allowlist or widens a denylist. Validate entries at write/boot time; pre-parsed IPAddr entries skip re-parsing here.

Parameters:

  • ip (String, IPAddr, nil)

    address to test (runtime data)

  • cidrs (Enumerable<String, IPAddr>, nil)

    CIDR ranges or host addresses (configuration)

Returns:

  • (Boolean)

    true when ip is inside at least one range

Raises:

  • (IPAddr::InvalidAddressError)

    if a cidrs entry is not a valid IP or CIDR string



402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
# File 'lib/otto/utils.rb', line 402

def ip_in_cidrs?(ip, cidrs)
  return false if cidrs.nil?

  client =
    if ip.is_a?(IPAddr)
      ip.native
    else
      candidate = normalize_ip(ip&.to_s)
      return false unless candidate

      IPAddr.new(candidate).native
    end

  cidrs.any? do |entry|
    range = entry.is_a?(IPAddr) ? entry : IPAddr.new(entry.to_s)
    # IPAddr#native builds its result with #clone, which carries frozen
    # state over and then fails to mutate it. Callers who freeze their
    # range configuration (or pass it through Ractor.make_shareable) would
    # hit FrozenError, so hand #native an unfrozen receiver. Gating the dup
    # on a foldable-range predicate would cost more than it saves:
    # #ipv4_compat? is deprecated and warns under -w, and #native already
    # short-circuits to self for anything that does not fold.
    range = range.dup if range.frozen?
    range = range.native
    range.family == client.family && range.include?(client)
  end
end

#loopback_address?(address) ⇒ Boolean

Whether an address is on the loopback interface.

This is the RAW SOCKET PEER test used to authenticate a direct local call (Otto::CaddyTLS::LocalhostGuard) — and, because IPPrivacyMiddleware now runs outermost and rewrites REMOTE_ADDR, the same test IPPrivacyMiddleware applies to the original peer and records as the leak-free boolean env. Shared here so the pre-masking record and the guard's own fallback cannot drift.

Fails closed: a blank or unparseable value is non-loopback rather than raising on the hot path.

#native folds IPv4-mapped IPv6 (::ffff:127.0.0.1, which dual-stack servers commonly present) so it is recognized as loopback; plain IPAddr#loopback? returns false for the mapped form.

Deliberately does NOT strip a ':port' suffix (unlike #private_ip?): a conforming Rack server reports the peer port in REMOTE_PORT, so an unexpected format means something upstream is non-standard and denying is safer than coercing.

Parameters:

  • address (String, nil)

    raw socket peer address

Returns:

  • (Boolean)


465
466
467
468
469
470
471
472
# File 'lib/otto/utils.rb', line 465

def loopback_address?(address)
  addr = address.to_s.strip
  return false if addr.empty?

  IPAddr.new(addr).native.loopback?
rescue IPAddr::InvalidAddressError, IPAddr::AddressFamilyError
  false
end

#normalize_ip(ip) ⇒ String?

Validate and normalize an IP address (IPv4 and IPv6).

Strips an optional port (IPv6-safe), validates with IPAddr, and returns the cleaned address string, or nil if the input is blank or malformed.

Parameters:

  • ip (String, nil)

    candidate address, optionally with a port

Returns:

  • (String, nil)

    cleaned IP string, or nil if invalid



141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/otto/utils.rb', line 141

def normalize_ip(ip)
  return nil if ip.nil? || ip.empty?

  candidate = strip_ip_port(ip.strip)
  return nil if candidate.nil? || candidate.empty?

  # IPAddr validates both IPv4 and IPv6; raises for malformed input
  IPAddr.new(candidate)
  candidate
rescue IPAddr::InvalidAddressError, IPAddr::AddressFamilyError
  nil
end

#normalize_path(raw_path) ⇒ String

Canonical path normalization for literal route matching: URL-unescape, scrub invalid/undefined bytes, and strip a single trailing slash.

This is the SINGLE SOURCE OF TRUTH shared by the router (Otto::Core::Router#handle_request, which compares the result against its literal-route table) and Otto::CaddyTLS::LocalhostGuard (which compares it against the guarded endpoint). The two MUST normalize identically: if a crafted path — a trailing slash, a percent-encoded byte, an invalid UTF-8 byte — normalized differently in the guard than in the router, the router could dispatch a request the guard let through, bypassing the loopback check. One implementation makes that drift impossible.

Mirrors the empty-path handling and :replace scrubbing the router applies. Robust to invalid input: Rack::Utils.unescape raises ArgumentError on an already-invalid byte sequence (a raw \xFF in the path), so that is caught and the raw string is scrubbed instead — a percent-encoded invalid byte (%FF) decodes to the same invalid byte and is scrubbed identically, so the two crafted forms normalize alike. The method itself does not raise.

Parameters:

  • raw_path (String, nil)

    a raw PATH_INFO or a configured endpoint

Returns:

  • (String)

    normalized path suitable for exact literal comparison



120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'lib/otto/utils.rb', line 120

def normalize_path(raw_path)
  raw = raw_path.to_s
  decoded =
    begin
      Rack::Utils.unescape(raw)
    rescue ArgumentError
      raw
    end
  decoded = '/' if decoded.empty?
  decoded
    .encode('UTF-8', invalid: :replace, undef: :replace, replace: '')
    .gsub(%r{/$}, '')
end

#nowTime

Returns Current time in UTC.

Returns:

  • (Time)

    Current time in UTC



71
72
73
# File 'lib/otto/utils.rb', line 71

def now
  Time.now.utc
end

#now_in_μsInteger Also known as: now_in_microseconds

Returns the current time in microseconds. This is used to measure the duration of Database commands.

Alias: now_in_microseconds

Returns:

  • (Integer)

    The current time in microseconds.



81
82
83
# File 'lib/otto/utils.rb', line 81

def now_in_μs
  Process.clock_gettime(Process::CLOCK_MONOTONIC, :microsecond)
end

#private_ip?(ip) ⇒ Boolean

Whether an address is non-public: RFC1918 private, loopback, link-local, multicast, or unspecified — for both IPv4 and IPv6.

Uses IPAddr's family-aware predicates (which also fold IPv4-mapped IPv6 via #native) plus an explicit set of special-use ranges that the predicates don't cover (IPv4 0.0.0.0/8 and 224.0.0.0/4, IPv6 ::/128 and ff00::/8). Returns false for malformed input rather than raising.

Parameters:

  • ip (String, IPAddr, nil)

    address to classify

Returns:

  • (Boolean)


348
349
350
351
352
353
354
355
356
357
358
359
360
# File 'lib/otto/utils.rb', line 348

def private_ip?(ip)
  return false if ip.nil?
  return false if ip.respond_to?(:empty?) && ip.empty?

  addr = ip.is_a?(IPAddr) ? ip : IPAddr.new(strip_ip_port(ip.to_s.strip))
  addr = addr.native # fold IPv4-mapped IPv6 (::ffff:a.b.c.d) to IPv4

  return true if addr.private? || addr.loopback? || addr.link_local?

  SPECIAL_USE_RANGES.any? { |range| range.family == addr.family && range.include?(addr) }
rescue IPAddr::InvalidAddressError, IPAddr::AddressFamilyError
  false
end

#relayed_request?(env) ⇒ Boolean

Whether any relay marker header is present on the request.

Call this only from code that runs BEFORE forwarding carriers may be deleted (IPPrivacyMiddleware's untrusted-peer scrub); downstream code should prefer the recorded env boolean.

Parameters:

  • env (Hash)

    Rack environment

Returns:

  • (Boolean)


438
439
440
# File 'lib/otto/utils.rb', line 438

def relayed_request?(env)
  RELAY_MARKER_HEADERS.any? { |header| !env[header].to_s.strip.empty? }
end

#resolve_client_ip(env, security_config) ⇒ String?

Resolve the real client IP from a Rack env, honoring forwarded headers only when the connecting peer (REMOTE_ADDR) is a trusted proxy.

This is the single canonical resolver shared by IPPrivacyMiddleware ("resolve once") and Otto::Request#client_ipaddress (its no-middleware fallback), so both paths agree on which headers to trust and how to walk a proxy chain. It walks the forwarded chain left-to-right and returns the first address that is not itself a trusted proxy; if the peer is not a trusted proxy (or there is no config) it returns REMOTE_ADDR unchanged.

Parameters:

  • env (Hash)

    Rack environment

  • security_config (Otto::Security::Config, nil)

    config exposing #trusted_proxy?

Returns:

  • (String, nil)

    resolved client IP (the raw REMOTE_ADDR when no proxy applies)



186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# File 'lib/otto/utils.rb', line 186

def resolve_client_ip(env, security_config)
  remote_addr = env['REMOTE_ADDR']

  # Count-based ("trust the last N hops") mode for non-enumerable proxy
  # tiers (Fly, cloud load balancers, dynamic reverse proxies) where the
  # CIDR-walk below has no enumerable proxy IPs to match. Mirrors Express
  # `trust proxy = N`. Takes precedence over CIDR-walk; the two modes are
  # mutually exclusive (enforced at config freeze).
  return resolve_client_ip_by_depth(env, security_config) if security_config&.trusted_proxy_depth_mode?

  # No config, or the peer is a direct (untrusted) connection: REMOTE_ADDR
  # is the client. Don't honor forwarded headers from untrusted sources.
  return remote_addr unless security_config&.trusted_proxy?(remote_addr)

  forwarded_ips = FORWARDED_FOR_HEADERS
                  .filter_map { |header| env[header] }
                  .flat_map { |value| value.split(/,\s*/) }

  forwarded_ips.each do |candidate|
    clean_ip = normalize_ip(candidate.strip)
    next unless clean_ip

    # First address in the chain that isn't a known proxy is the client.
    return clean_ip unless security_config.trusted_proxy?(clean_ip)
  end

  # Whole chain was trusted proxies (or empty): fall back to the peer.
  remote_addr
end

#resolve_client_ip_by_depth(env, security_config) ⇒ String?

Resolve the client IP by trusting a fixed number of proxy hops, counted from the right of the forwarded chain (Express trust proxy = N). Used when the proxy tier's addresses cannot be enumerated as CIDRs.

The chain is the configured forwarded header (leftmost = client .. rightmost = nearest proxy) plus REMOTE_ADDR (the direct peer). With depth N the client is chain — exactly N trusted hops from the right, equivalent to Express's addrs. This is robust to forwarded-header padding: a forged leftmost entry is never reached.

SECURITY: depth trust ASSUMES ORIGIN LOCKDOWN — the app must be unreachable except through the proxy tier. Without it, a direct client could pad the forwarded header to land a forged value at the target index. This is the inherent trade vs CIDR-walk (a fixed hop count instead of enumerable proxy addresses).

The forwarded chain is selected by security_config.trusted_proxy_header: 'X-Forwarded-For' (default), 'Forwarded' (RFC 7239), or 'Both' (RFC 7239 when it carries a for=, otherwise X-Forwarded-For — mirrors OneTimeSecret's site.network.trusted_proxy.header). X-Real-IP / X-Client-IP are single-value and cannot express a hop chain, so they are never consulted in depth mode. Positions are counted raw (never dropped), so junk padding cannot shift the index; only the selected entry is validated. If the chain is shorter than N+1 (a request that may have bypassed the proxy tier) or the selected entry is invalid, REMOTE_ADDR is returned rather than a spoofable forwarded value.

Parameters:

  • env (Hash)

    Rack environment

  • security_config (Otto::Security::Config)

    config exposing #trusted_proxy_depth and #trusted_proxy_header

Returns:

  • (String, nil)

    resolved client IP (REMOTE_ADDR on short chain / invalid target)



246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'lib/otto/utils.rb', line 246

def resolve_client_ip_by_depth(env, security_config)
  remote_addr = env['REMOTE_ADDR']
  depth       = security_config.trusted_proxy_depth.to_i

  # Build the positional hop chain from the configured header, keeping every
  # position (junk/empty entries included) so the client can be located by
  # counting from the right; dropping entries would let padding shift the
  # index. REMOTE_ADDR (the direct peer) is the rightmost hop.
  forwarded = forwarded_chain_for_depth(env, security_config.trusted_proxy_header)
  chain     = forwarded + [remote_addr]

  index = chain.length - (depth + 1)
  return remote_addr if index.negative? # chain shorter than depth + 1

  normalize_ip(chain[index].to_s.strip) || remote_addr
end

#rfc7239_for_chain(value) ⇒ Array<String>

Extract the per-hop for= chain from an RFC 7239 Forwarded header, preserving one position per forwarded-element. Elements without a for= parameter yield a blank placeholder so they still occupy a hop position (raw position counting). The extracted token is only unquoted here; port and IPv6 brackets are left for normalize_ip when the entry is selected. Obfuscated (for=_hidden) and for=unknown identifiers are preserved as positions but normalize to nil (→ REMOTE_ADDR fallback if selected). Commas separate forwarded-elements (and join multiple Forwarded headers). A nil/blank header splits to [] (not ['']), so an absent Forwarded header yields an empty chain and depth's explicit short-chain guard returns REMOTE_ADDR — symmetric with xff_chain.

Parameters:

  • value (String, nil)

    raw Forwarded header value

Returns:

  • (Array<String>)

    one for= token per forwarded-element



309
310
311
# File 'lib/otto/utils.rb', line 309

def rfc7239_for_chain(value)
  value.to_s.split(',', -1).map { |element| rfc7239_for_value(element) }
end

#rfc7239_for_value(element) ⇒ String

Pull the for= token out of a single RFC 7239 forwarded-element. The value is a quoted-string (which may itself legally contain ';') or an unquoted token ending at the next ';'. The quoted form is matched first so a ';' inside DQUOTEs is NOT treated as a parameter separator — otherwise a value like for="1.2.3.4;junk" would be truncated to a valid-looking IP instead of being rejected. Only DQUOTE wrappers are stripped: RFC 7239 quoted-strings use DQUOTE exclusively, so a value like for='1.2.3.4' keeps its quotes, fails normalize_ip, and safely falls back to REMOTE_ADDR rather than being permissively accepted. This is deliberately stricter than OTS (which strips both ['"]), consistent with depth's other intentionally-not-reconciled-down safety properties. The raw value (port / IPv6 brackets intact) is left for normalize_ip when the entry is selected. Returns '' when the element carries no for= parameter, preserving the hop position. The for= pair may be the element's first pair or follow a ';'; leading whitespace (e.g. after a comma split) is tolerated.

Parameters:

  • element (String)

    one forwarded-element (e.g. 'for=1.2.3.4;proto=https')

Returns:

  • (String)


331
332
333
334
335
336
# File 'lib/otto/utils.rb', line 331

def rfc7239_for_value(element)
  match = element.match(/(?:\A|;)\s*for=(?:"([^"]*)"|([^;]+))/i)
  return '' unless match

  (match[1] || match[2]).strip
end

#strip_ip_port(ip) ⇒ String

Strip an optional port without corrupting IPv6 addresses.

Handles bracketed IPv6 with a port ([2001:db8::1]:443) and IPv4 host:port (203.0.113.5:443). A bare IPv6 address (multiple colons, no brackets) is returned unchanged.

Parameters:

  • ip (String)

    candidate address, possibly including a port

Returns:

  • (String)

    address with any port removed



162
163
164
165
166
167
168
169
170
171
# File 'lib/otto/utils.rb', line 162

def strip_ip_port(ip)
  if ip.start_with?('[')
    inner = ip[/\A\[([^\]]+)\]/, 1]
    return inner if inner
  end

  return ip.split(':', 2).first if ip.count(':') == 1

  ip
end

#xff_chain(value) ⇒ Array<String>

Split X-Forwarded-For into raw positional entries. -1 keeps trailing empty fields so a malformed/empty hop still counts as a position.

Parameters:

  • value (String, nil)

    raw X-Forwarded-For header value

Returns:

  • (Array<String>)


291
292
293
# File 'lib/otto/utils.rb', line 291

def xff_chain(value)
  value.to_s.split(',', -1)
end

#yes?(value) ⇒ Boolean

Determine if a value represents a "yes" or true value

Examples: yes?('true') # => true yes?('yes') # => true yes?('1') # => true

Parameters:

  • value (Object)

    The value to evaluate

Returns:

  • (Boolean)

    True if the value represents "yes", false otherwise



95
96
97
# File 'lib/otto/utils.rb', line 95

def yes?(value)
  !value.to_s.empty? && %w[true yes 1].include?(value.to_s.downcase)
end