Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ip_allowlist_entry.rb « http_v2 « gitlab « lib « gitlab-http « gems - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed5a2dba2847878ba93547e17dba2b4146b8d315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true

module Gitlab
  module HTTP_V2
    class IpAllowlistEntry
      attr_reader :ip, :port

      # Argument ip should be an IPAddr object
      def initialize(ip, port: nil)
        @ip = ip
        @port = port
      end

      def match?(requested_ip, requested_port = nil)
        requested_ip = IPAddr.new(requested_ip) if requested_ip.is_a?(String)

        return false unless ip_include?(requested_ip)
        return true if port.nil?

        port == requested_port
      end

      private

      # Prior to ipaddr v1.2.3, if the allow list were the IPv4 to IPv6
      # mapped address ::ffff:169.254.168.100 and the requested IP were
      # 169.254.168.100 or ::ffff:169.254.168.100, the IP would be
      # considered in the allow list. However, with
      # https://github.com/ruby/ipaddr/pull/31, IPAddr#include? will
      # only match if the IP versions are the same. This method
      # preserves backwards compatibility if the versions differ by
      # checking inclusion by coercing an IPv4 address to its IPv6
      # mapped address.
      def ip_include?(requested_ip)
        return true if ip.include?(requested_ip)
        return ip.include?(requested_ip.ipv4_mapped) if requested_ip.ipv4? && ip.ipv6?
        return ip.ipv4_mapped.include?(requested_ip) if requested_ip.ipv6? && ip.ipv4?

        false
      end
    end
  end
end