From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/2] Revert "geoip-functions.pl: Re-write code to lookup the iso country code of a given IP-address."
Date: Fri, 11 Jan 2019 10:05:24 +0100 [thread overview]
Message-ID: <20190111090524.12871-2-stefan.schantl@ipfire.org> (raw)
In-Reply-To: <20190111090524.12871-1-stefan.schantl@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3425 bytes --]
Enhanching the code to fix the lookup will rapidely slow down the lookup speed. Because using
the GeoIP2 module is no option ( the reasons have been described in the commit message which will
now reverted), we have decided to temporary switch back to the old module until a nice solution has
been found.
This reverts commit ff21ff90d24de0f648d24bb906c45738b81ce67a.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
config/cfgroot/geoip-functions.pl | 75 +++----------------------------
1 file changed, 7 insertions(+), 68 deletions(-)
diff --git a/config/cfgroot/geoip-functions.pl b/config/cfgroot/geoip-functions.pl
index 9f86a09ba..c8ff47d2e 100644
--- a/config/cfgroot/geoip-functions.pl
+++ b/config/cfgroot/geoip-functions.pl
@@ -23,82 +23,21 @@
package GeoIP;
-require '/var/ipfire/network-functions.pl';
-
+use Geo::IP::PurePerl;
use Locale::Codes::Country;
-# Path where all the GeoIP related databases are stored.
-my $geoip_database_dir = "/var/lib/GeoIP";
-
-# Database which contains all IPv4 networks.
-my $address_ipv4_database = "GeoLite2-Country-Blocks-IPv4.csv";
-
-# Database wich contains the locations data.
-my $location_database = "GeoLite2-Country-Locations-en.csv";
+my $database;
sub lookup($) {
my $address = shift;
- my $location_id;
- my $country_code;
-
- # Check if the given address is valid.
- unless(&Network::check_ip_address($address)) {
- return;
- }
-
- # Open the address database.
- open(ADDRESS, "$geoip_database_dir/$address_ipv4_database") or die "Could not open $geoip_database_dir/$address_ipv4_database. $!\n";
-
- # Loop through the file.
- while(my $line = <ADDRESS>) {
- # Remove newlines.
- chomp($line);
-
- # Split the line content.
- my ($network, $geoname_id, $registered_country_geoname_id, $represented_country_geoname_id, $is_anonymous_proxy, $is_satellite_provider) = split(/\,/, $line);
- # Check if the given address is part of the current processed network.
- if (&Network::ip_address_in_network($address, $network)) {
- # Store the geoname_id for this address.
- $location_id = $geoname_id;
-
- # Break loop.
- last;
- }
+ # Load the database into memory if not already done
+ if (!$database) {
+ $database = Geo::IP::PurePerl->new(GEOIP_MEMORY_CACHE);
}
- # Return nothing if no location_id could be found.
- return unless($location_id);
-
- # Close filehandle.
- close(ADDRESS);
-
- # Open the location database.
- open(LOCATION, "$geoip_database_dir/$location_database") or die "Could not open $geoip_database_dir/$location_database. $!\n";
-
- # Loop through the file.
- while(my $line = <LOCATION>) {
- # Remove newlines.
- chomp($line);
-
- # Split the line content.
- my ($geoname_id, $locale_code, $continent_code, $continent_name, $country_iso_code, $country_name, $is_in_european_union) = split(/\,/, $line);
-
- # Check if the correct location_id has been found.
- if ($geoname_id eq $location_id) {
- # Store the county code.
- $country_code = $country_iso_code;
-
- # Break loop.
- last;
- }
- }
-
- # Close filehandle.
- close(LOCATION);
-
- # Return the obtained country code.
- return $country_code;
+ # Return the name of the country
+ return $database->country_code_by_name($address);
}
# Function to get the flag icon for a specified country code.
--
2.19.1
prev parent reply other threads:[~2019-01-11 9:05 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-11 9:05 [PATCH 1/2] Revert "GeoIP: Drop legacy GeoIP perl module." Stefan Schantl
2019-01-11 9:05 ` Stefan Schantl [this message]
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=20190111090524.12871-2-stefan.schantl@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=development@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