From: Gisle Vanem <gisle.vanem@gmail.com>
To: location@lists.ipfire.org
Subject: Re: What generates database.db from database.txt?
Date: Tue, 20 Oct 2020 21:14:41 +0200 [thread overview]
Message-ID: <f9d416a7-c075-5825-8c42-0908498be5ec@gmail.com> (raw)
In-Reply-To: <0A556AF2-9F53-467C-9627-1208A6E20CAA@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1921 bytes --]
Michael Tremer wrote:
> Would you be willing to tidy up your code (if required) and submit them on here so that we can officially support Windows?
I've put a preliminary version of my patched 'libloc'
in my 'Wsock-trace' project:
https://github.com/gvanem/wsock-trace/tree/master/src/Geo-IP/IPFire/libloc/src
>> Running all the 'test-*' programs, it worked seemingly
>> well. Until I built the Python3 module and played with
>> e.g. 'location dump' and 'verify'. Nothing worked :-(
>
> What didn’t work specifically? Reading and writing the database?
'test-database' says:
Vendor doesn't match: LOCDBXX☺ != Test Vendor
and 'test-network':
Could not look up 2001:db8::
I'm not sure it due to my 'mmap()' function.
But I noted a case where 'loc_stringpool_get()' could
return NULL, this is used in 'strdup()'. Not sure that's
legal everywhere. So I did this patch:
--- a/libloc/src/as.c 2020-10-19 17:35:01
+++ b/libloc/src/as.c 2020-10-20 19:37:19
@@ -90,7 +90,7 @@
}
LOC_EXPORT int loc_as_set_name(struct loc_as* as, const char* name) {
- as->name = strdup(name);
+ as->name = name ? strdup(name) : strdup("");
return 0;
}
> What you will need to import the raw data is location-importer which comes
> with libloc and a PostgreSQL server.
No! I hoped that 'libloc' would be similar to
IP2Location and/or GeoipCSV that I already support
in my project. Running PostgreSQL is out of the question
for me or any users of 'Wsock-trace'.
> Generating the whole database might take a couple of hours
> depending on how beefy your machine is.
Lacking in Python skills, I cooked up this 'compile-database'
script that takes 2 minutes:
https://github.com/gvanem/wsock-trace/blob/master/src/Geo-IP/IPFire/database/compile-database.py
But it remains to see if it works. Or if I'll rewrite it
into a C-program.
--
--gv
next prev parent reply other threads:[~2020-10-20 19:14 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-19 15:53 Gisle Vanem
2020-10-20 16:08 ` Michael Tremer
2020-10-20 19:14 ` Gisle Vanem [this message]
2020-10-20 20:49 ` Michael Tremer
2020-10-20 22:46 ` Gisle Vanem
2020-10-21 9:34 ` Michael Tremer
2020-10-21 11:07 ` Gisle Vanem
2020-10-21 13:15 ` Michael Tremer
[not found] <b63ffe0e-6eca-7168-bb13-07281eff208f@gmail.com>
2020-10-22 10:17 ` 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=f9d416a7-c075-5825-8c42-0908498be5ec@gmail.com \
--to=gisle.vanem@gmail.com \
--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