From: "Peter Müller" <peter.mueller@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH] location-importer.in: emit warnings due to unknown country code for valid networks only
Date: Mon, 03 May 2021 19:14:29 +0200 [thread overview]
Message-ID: <831d1a84-1489-2a55-942d-1bad147497cb@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1931 bytes --]
This reduces log spam in case of processing RIR database, checking for
networks with unknown country codes assigned. If we would not have
written into the database, there is no need to warn about them.
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/python/location-importer.in | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index 1e08458..e5f55af 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -623,16 +623,19 @@ class CLI(object):
if not inetnum or not "country" in inetnum:
return
- # Skip objects with unknown country codes
- if validcountries and inetnum.get("country") not in validcountries:
- log.warning("Skipping network with bogus country '%s': %s" % \
- (inetnum.get("country"), inetnum.get("inet6num") or inetnum.get("inetnum")))
- return
-
# Iterate through all networks enumerated from above, check them for plausibility and insert
# them into the database, if _check_parsed_network() succeeded
for single_network in inetnum.get("inet6num") or inetnum.get("inetnum"):
if self._check_parsed_network(single_network):
+
+ # Skip objects with unknown country codes - to avoid log spam for invalid or too small
+ # networks, this check is - kinda ugly - done at this point
+ if validcountries and inetnum.get("country") not in validcountries:
+ log.warning("Skipping network with bogus country '%s': %s" % \
+ (inetnum.get("country"), inetnum.get("inet6num") or inetnum.get("inetnum")))
+ break
+
+ # Everything is fine here, run INSERT statement...
self.db.execute("INSERT INTO _rirdata(network, country) \
VALUES(%s, %s) ON CONFLICT (network) DO UPDATE SET country = excluded.country",
"%s" % single_network, inetnum.get("country"),
--
2.26.2
reply other threads:[~2021-05-03 17:14 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=831d1a84-1489-2a55-942d-1bad147497cb@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