public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
From: "Peter Müller" <peter.mueller@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH] Process LACNIC geofeed as well
Date: Sat, 11 Dec 2021 22:59:22 +0100	[thread overview]
Message-ID: <bdc5ec85-963b-25b4-3c0a-a420a263a883@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 3130 bytes --]

This improves country code accurarcy for suballocations within IP space
managed by LACNIC, as the delegated-extended-latest file only provides
country code information at the top level of an allocated network.

Sadly, lacnic.db.gz does not contain descriptions or names of Autonomous
Systems within the space maintained by LACNIC.

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 src/python/importer.py          |  4 ++-
 src/python/location-importer.in | 43 +++++++++++++++++++++++++++------
 2 files changed, 39 insertions(+), 8 deletions(-)

diff --git a/src/python/importer.py b/src/python/importer.py
index de340b4..dee36ed 100644
--- a/src/python/importer.py
+++ b/src/python/importer.py
@@ -53,7 +53,9 @@ WHOIS_SOURCES = {
 		],
 
 	# Latin America and Caribbean Network Information Centre
-	# XXX ???
+	"LACNIC": [
+		"https://ftp.lacnic.net/lacnic/dbase/lacnic.db.gz"
+		],
 
 	# Réseaux IP Européens
 	"RIPE": [
diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index b791b4d..78bb846 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -681,13 +681,42 @@ class CLI(object):
 				# Strip any excess space
 				start_address, end_address = start_address.rstrip(), end_address.strip()
 
-				# Convert to IP address
-				try:
-					start_address = ipaddress.ip_address(start_address)
-					end_address   = ipaddress.ip_address(end_address)
-				except ValueError:
-					log.warning("Could not parse line: %s" % line)
-					return
+				# Handle "inetnum" formatting in LACNIC DB (e.g. "24.152.8/22" instead of "24.152.8.0/22")
+				if start_address and not (delim or end_address):
+					try:
+						start_address = ipaddress.ip_network(start_address, strict=False)
+					except ValueError:
+						start_address = start_address.split("/")
+						ldigits = len(start_address[0].split("."))
+
+						# How many octets do we need to add?
+						# (LACNIC does not seem to have a /8 or greater assigned, so the following should suffice.)
+						if ldigits == 2:
+							start_address = start_address[0] + ".0.0/" + start_address[1]
+						elif ldigits == 3:
+							start_address = start_address[0] + ".0/" + start_address[1]
+						else:
+							log.warning("Could not recover IPv4 address from line in LACNIC DB format: %s" % line)
+							return
+
+						try:
+							start_address = ipaddress.ip_network(start_address, strict=False)
+						except ValueError:
+							log.warning("Could not parse line in LACNIC DB format: %s" % line)
+							return
+
+					# Enumerate first and last IP address of this network
+					end_address = start_address[-1]
+					start_address = start_address[0]
+
+				else:
+					# Convert to IP address
+					try:
+						start_address = ipaddress.ip_address(start_address)
+						end_address   = ipaddress.ip_address(end_address)
+					except ValueError:
+						log.warning("Could not parse line: %s" % line)
+						return
 
 				inetnum["inetnum"] = list(ipaddress.summarize_address_range(start_address, end_address))
 
-- 
2.26.2

             reply	other threads:[~2021-12-11 21:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-11 21:59 Peter Müller [this message]
2021-12-13 18:54 ` Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bdc5ec85-963b-25b4-3c0a-a420a263a883@ipfire.org \
    --to=peter.mueller@ipfire.org \
    --cc=location@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox