FEATURE: Improve screened IPs roll up and extend for IPv6 (#15585)

This commit improves the logic for rolling up IPv4 screened IP
addresses and extending it for IPv6. IPv4 addresses will roll up only
up to /24. IPv6 can rollup to /48 at most. The log message that is
generated contains the list of original IPs and new subnet.
This commit is contained in:
Bianca Nenciu 2022-04-12 21:07:37 +03:00 committed by GitHub
parent 0bef5af582
commit 86c7e07428
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 112 additions and 71 deletions

View File

@ -13,6 +13,17 @@ class ScreenedIpAddress < ActiveRecord::Base
validates :ip_address, ip_address_format: true, presence: true validates :ip_address, ip_address_format: true, presence: true
after_validation :check_for_match after_validation :check_for_match
ROLLED_UP_BLOCKS = [
# IPv4
[4, 32, 24],
# IPv6
[6, (65..128).to_a, 64],
[6, 64, 60],
[6, 60, 56],
[6, 56, 52],
[6, 52, 48],
]
def self.watch(ip_address, opts = {}) def self.watch(ip_address, opts = {})
match_for_ip_address(ip_address) || create(opts.slice(:action_type).merge(ip_address: ip_address)) match_for_ip_address(ip_address) || create(opts.slice(:action_type).merge(ip_address: ip_address))
end end
@ -67,7 +78,8 @@ class ScreenedIpAddress < ActiveRecord::Base
# #
# http://www.postgresql.org/docs/9.1/static/datatype-net-types.html # http://www.postgresql.org/docs/9.1/static/datatype-net-types.html
# http://www.postgresql.org/docs/9.1/static/functions-net.html # http://www.postgresql.org/docs/9.1/static/functions-net.html
order('masklen(ip_address) DESC').find_by("? <<= ip_address", ip_address.to_s) ip_address = IPAddr === ip_address ? ip_address.to_cidr_s : ip_address.to_s
order('masklen(ip_address) DESC').find_by("? <<= ip_address", ip_address)
end end
def self.should_block?(ip_address) def self.should_block?(ip_address)
@ -94,82 +106,57 @@ class ScreenedIpAddress < ActiveRecord::Base
!exists_for_ip_address_and_action?(ip_address, actions[:allow_admin], record_match: false) !exists_for_ip_address_and_action?(ip_address, actions[:allow_admin], record_match: false)
end end
def self.star_subnets_query def self.subnets(family, from_masklen, to_masklen)
@star_subnets_query ||= <<~SQL sql = <<~SQL
SELECT network(inet(host(ip_address) || '/24'))::text AS ip_range WITH ips_and_subnets AS (
SELECT ip_address,
network(inet(host(ip_address) || '/' || :to_masklen))::text subnet
FROM screened_ip_addresses FROM screened_ip_addresses
WHERE action_type = #{ScreenedIpAddress.actions[:block]} WHERE family(ip_address) = :family AND
AND family(ip_address) = 4 masklen(ip_address) IN (:from_masklen) AND
AND masklen(ip_address) = 32 action_type = :blocked
GROUP BY ip_range
HAVING COUNT(*) >= :min_count
SQL
end
def self.star_star_subnets_query
@star_star_subnets_query ||= <<~SQL
WITH weighted_subnets AS (
SELECT network(inet(host(ip_address) || '/16'))::text AS ip_range,
CASE masklen(ip_address)
WHEN 32 THEN 1
WHEN 24 THEN :roll_up_weight
ELSE 0
END AS weight
FROM screened_ip_addresses
WHERE action_type = #{ScreenedIpAddress.actions[:block]}
AND family(ip_address) = 4
) )
SELECT ip_range SELECT subnet
FROM weighted_subnets FROM ips_and_subnets
GROUP BY ip_range GROUP BY subnet
HAVING SUM(weight) >= :min_count HAVING COUNT(*) >= :min_ban_entries_for_roll_up
SQL SQL
end
def self.star_subnets DB.query_single(
min_count = SiteSetting.min_ban_entries_for_roll_up sql,
DB.query_single(star_subnets_query, min_count: min_count) family: family,
end from_masklen: from_masklen,
to_masklen: to_masklen,
def self.star_star_subnets blocked: ScreenedIpAddress.actions[:block],
weight = SiteSetting.min_ban_entries_for_roll_up min_ban_entries_for_roll_up: SiteSetting.min_ban_entries_for_roll_up,
DB.query_single(star_star_subnets_query, min_count: 10, roll_up_weight: weight) )
end end
def self.roll_up(current_user = Discourse.system_user) def self.roll_up(current_user = Discourse.system_user)
subnets = [star_subnets, star_star_subnets].flatten ROLLED_UP_BLOCKS.each do |family, from_masklen, to_masklen|
ScreenedIpAddress.subnets(family, from_masklen, to_masklen).map do |subnet|
next if ScreenedIpAddress.where("? <<= ip_address", subnet).exists?
StaffActionLogger.new(current_user).log_roll_up(subnets) unless subnets.blank? old_ips = ScreenedIpAddress
.where(action_type: ScreenedIpAddress.actions[:block])
.where("ip_address << ?", subnet)
.where("family(ip_address) = ?", family)
.where("masklen(ip_address) IN (?)", from_masklen)
subnets.each do |subnet| sum_match_count, max_last_match_at, min_created_at =
ScreenedIpAddress.create(ip_address: subnet) unless ScreenedIpAddress.where("? <<= ip_address", subnet).exists? old_ips.pluck_first('SUM(match_count), MAX(last_match_at), MIN(created_at)')
sql = <<~SQL ScreenedIpAddress.create!(
UPDATE screened_ip_addresses ip_address: subnet,
SET match_count = sum_match_count match_count: sum_match_count,
, created_at = min_created_at last_match_at: max_last_match_at,
, last_match_at = max_last_match_at created_at: min_created_at,
FROM ( )
SELECT SUM(match_count) AS sum_match_count
, MIN(created_at) AS min_created_at
, MAX(last_match_at) AS max_last_match_at
FROM screened_ip_addresses
WHERE action_type = #{ScreenedIpAddress.actions[:block]}
AND family(ip_address) = 4
AND ip_address << :ip_address
) s
WHERE ip_address = :ip_address
SQL
DB.exec(sql, ip_address: subnet) StaffActionLogger.new(current_user).log_roll_up(subnet, old_ips.map(&:ip_address))
old_ips.delete_all
ScreenedIpAddress.where(action_type: ScreenedIpAddress.actions[:block]) end
.where("family(ip_address) = 4")
.where("ip_address << ?", subnet)
.delete_all
end end
subnets
end end
end end

View File

@ -437,10 +437,10 @@ class StaffActionLogger
)) ))
end end
def log_roll_up(subnets, opts = {}) def log_roll_up(subnet, ips, opts = {})
UserHistory.create!(params(opts).merge( UserHistory.create!(params(opts).merge(
action: UserHistory.actions[:roll_up], action: UserHistory.actions[:roll_up],
details: subnets.join(", ") details: "#{subnet} from #{ips.join(", ")}"
)) ))
end end

View File

@ -320,4 +320,56 @@ describe ScreenedIpAddress do
end end
end end
end end
describe '#roll_up' do
it 'rolls up IPv4 addresses' do
SiteSetting.min_ban_entries_for_roll_up = 3
# this should not be touched
Fabricate(:screened_ip_address, ip_address: "1.1.1.254/31")
Fabricate(:screened_ip_address, ip_address: "1.1.1.1")
expect { ScreenedIpAddress.roll_up }.not_to change { ScreenedIpAddress.count }
Fabricate(:screened_ip_address, ip_address: "1.1.1.2")
expect { ScreenedIpAddress.roll_up }.not_to change { ScreenedIpAddress.count }
Fabricate(:screened_ip_address, ip_address: "1.1.1.3")
expect { ScreenedIpAddress.roll_up }.to change { ScreenedIpAddress.count }.by(-2)
expect(ScreenedIpAddress.pluck(:ip_address)).to include("1.1.1.0/24", "1.1.1.254/31")
expect(ScreenedIpAddress.pluck(:ip_address)).not_to include("1.1.1.1", "1.1.1.2", "1.1.1.3")
# expect roll up to be stable
expect { ScreenedIpAddress.roll_up }.to change { ScreenedIpAddress.count }.by(0)
end
it 'rolls up IPv6 addresses' do
SiteSetting.min_ban_entries_for_roll_up = 3
Fabricate(:screened_ip_address, ip_address: "2001:db8:3333:4441:5555:6666:7777:8888")
expect { ScreenedIpAddress.roll_up }.not_to change { ScreenedIpAddress.count }
Fabricate(:screened_ip_address, ip_address: "2001:db8:3333:4441:5555:6666:7777:8889")
expect { ScreenedIpAddress.roll_up }.not_to change { ScreenedIpAddress.count }
Fabricate(:screened_ip_address, ip_address: "2001:db8:3333:4441:5555:6666:7777:888a/96")
expect { ScreenedIpAddress.roll_up }.to change { ScreenedIpAddress.count }.by(-2)
expect(ScreenedIpAddress.pluck(:ip_address)).to include("2001:db8:3333:4441::/64")
expect(ScreenedIpAddress.pluck(:ip_address)).not_to include("2001:db8:3333:4441:5555:6666:7777:8888", "2001:db8:3333:4441:5555:6666:7777:8889", "2001:db8:3333:4441:5555:6666:7777:888a")
# expect roll up to be stable
expect { ScreenedIpAddress.roll_up }.to change { ScreenedIpAddress.count }.by(0)
Fabricate(:screened_ip_address, ip_address: "2001:db8:3333:4442::/64")
expect { ScreenedIpAddress.roll_up }.to change { ScreenedIpAddress.count }.by(0)
Fabricate(:screened_ip_address, ip_address: "2001:db8:3333:4443::/64")
expect { ScreenedIpAddress.roll_up }.to change { ScreenedIpAddress.count }.by(-2)
expect(ScreenedIpAddress.pluck(:ip_address)).to include("2001:db8:3333:4440::/60")
expect(ScreenedIpAddress.pluck(:ip_address)).not_to include("2001:db8:3333:4441::/64", "2001:db8:3333:4442::/64", "2001:db8:3333:4443::/64")
# expect roll up to be stable
expect { ScreenedIpAddress.roll_up }.to change { ScreenedIpAddress.count }.by(0)
end
end
end end

View File

@ -307,13 +307,15 @@ describe StaffActionLogger do
end end
describe 'log_roll_up' do describe 'log_roll_up' do
let(:subnets) { ["1.2.3.0/24", "42.42.42.0/24"] } let(:subnet) { "1.2.3.0/24" }
subject(:log_roll_up) { described_class.new(admin).log_roll_up(subnets) } let(:ips) { ["1.2.3.4", "1.2.3.100"] }
subject(:log_roll_up) { described_class.new(admin).log_roll_up(subnet, ips) }
it 'creates a new UserHistory record' do it 'creates a new UserHistory record' do
log_record = logger.log_roll_up(subnets) log_record = logger.log_roll_up(subnet, ips)
expect(log_record).to be_valid expect(log_record).to be_valid
expect(log_record.details).to eq(subnets.join(", ")) expect(log_record.details).to eq("#{subnet} from #{ips.join(", ")}")
end end
end end