480 lines
12 KiB
C++
Executable File
480 lines
12 KiB
C++
Executable File
<<<<<<< HEAD
|
||
// vim: set ts=4 sw=4 tw=99 noet:
|
||
//
|
||
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
||
// Copyright (C) The AMX Mod X Development Team.
|
||
//
|
||
// This software is licensed under the GNU General Public License, version 3 or higher.
|
||
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
||
// https://alliedmods.net/amxmodx-license
|
||
|
||
//
|
||
// GeoIP Module
|
||
//
|
||
|
||
#include "geoip_amxx.h"
|
||
|
||
MMDB_s HandleDB;
|
||
|
||
char *stripPort(char *ip_port)
|
||
{
|
||
char *tmp = strchr(ip_port, ':');
|
||
|
||
if (!tmp)
|
||
{
|
||
return ip_port;
|
||
}
|
||
|
||
*tmp = '\0';
|
||
|
||
return tmp;
|
||
}
|
||
|
||
bool lookupByIp(const char *ip, const char **path, MMDB_entry_data_s *result)
|
||
{
|
||
int gai_error = 0, mmdb_error = 0;
|
||
MMDB_lookup_result_s lookup = MMDB_lookup_string(&HandleDB, ip, &gai_error, &mmdb_error);
|
||
|
||
if (gai_error != 0 || MMDB_SUCCESS != mmdb_error || !lookup.found_entry)
|
||
{
|
||
return false;
|
||
}
|
||
|
||
MMDB_entry_data_s entry_data;
|
||
MMDB_aget_value(&lookup.entry, &entry_data, path);
|
||
|
||
if (!entry_data.has_data)
|
||
{
|
||
return false;
|
||
}
|
||
|
||
*result = entry_data;
|
||
|
||
return true;
|
||
}
|
||
|
||
const char *lookupString(const char *ip, const char **path, int *length = NULL)
|
||
{
|
||
static char buffer[64];
|
||
MMDB_entry_data_s result;
|
||
|
||
if (!lookupByIp(ip, path, &result))
|
||
{
|
||
return NULL;
|
||
}
|
||
|
||
if (length)
|
||
{
|
||
*length = result.data_size;
|
||
}
|
||
|
||
memcpy(buffer, result.utf8_string, result.data_size);
|
||
buffer[result.data_size] = '\0';
|
||
|
||
return buffer;
|
||
}
|
||
|
||
double lookupDouble(const char *ip, const char **path)
|
||
{
|
||
MMDB_entry_data_s result;
|
||
|
||
if (!lookupByIp(ip, path, &result))
|
||
{
|
||
return NULL;
|
||
}
|
||
|
||
return result.double_value;
|
||
}
|
||
|
||
// native geoip_code2(const ip[], ccode[3]);
|
||
// Deprecated.
|
||
static cell AMX_NATIVE_CALL amx_geoip_code2(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "country", "iso_code", NULL };
|
||
const char *code = lookupString(stripPort(ip), path);
|
||
|
||
return MF_SetAmxString(amx, params[2], code ? code : "error", 3);
|
||
}
|
||
|
||
// native geoip_code3(const ip[], result[4]);
|
||
// Deprecated.
|
||
static cell AMX_NATIVE_CALL amx_geoip_code3(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "country", "iso_code", NULL };
|
||
const char *code = lookupString(stripPort(ip), path);
|
||
|
||
for (size_t i = 0; i < ARRAYSIZE(GeoIPCountryCode); ++i)
|
||
{
|
||
if (!strncmp(code, GeoIPCountryCode[i], 2))
|
||
{
|
||
code = GeoIPCountryCode3[i];
|
||
break;
|
||
}
|
||
}
|
||
|
||
return MF_SetAmxString(amx, params[2], code ? code : "error", 4);
|
||
}
|
||
|
||
// native bool:geoip_code2_ex(const ip[], result[3]);
|
||
static cell AMX_NATIVE_CALL amx_geoip_code2_ex(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "country", "iso_code", NULL };
|
||
const char *code = lookupString(stripPort(ip), path);
|
||
|
||
if (!code)
|
||
{
|
||
return 0;
|
||
}
|
||
|
||
MF_SetAmxString(amx, params[2], code, 2);
|
||
|
||
return 1;
|
||
}
|
||
|
||
// native bool:geoip_code3_ex(const ip[], result[4]);
|
||
static cell AMX_NATIVE_CALL amx_geoip_code3_ex(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "country", "iso_code", NULL };
|
||
const char *code = lookupString(stripPort(ip), path, &length);
|
||
|
||
if (!code)
|
||
{
|
||
return 0;
|
||
}
|
||
|
||
for (size_t i = 0; i < ARRAYSIZE(GeoIPCountryCode); ++i)
|
||
{
|
||
if (!strncmp(code, GeoIPCountryCode[i], 2))
|
||
{
|
||
code = GeoIPCountryCode3[i];
|
||
break;
|
||
}
|
||
}
|
||
|
||
MF_SetAmxString(amx, params[2], code, 3);
|
||
|
||
return 1;
|
||
}
|
||
|
||
// native geoip_country(const ip[], result[], len);
|
||
static cell AMX_NATIVE_CALL amx_geoip_country(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "country", "names", "en", NULL };
|
||
const char *country = lookupString(stripPort(ip), path, &length);
|
||
|
||
if (!country)
|
||
{
|
||
return 0;
|
||
}
|
||
|
||
return MF_SetAmxString(amx, params[2], country, length >= params[3] ? params[3] : length); // TODO: make this utf8 safe.
|
||
}
|
||
|
||
// native geoip_city(const ip[], result[], len);
|
||
static cell AMX_NATIVE_CALL amx_geoip_city(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "city", "names", "en", NULL };
|
||
const char *city = lookupString(stripPort(ip), path, &length);
|
||
|
||
return MF_SetAmxString(amx, params[2], city ? city : "", length >= params[3] ? params[3] : length); // TODO: make this utf8 safe.
|
||
}
|
||
|
||
// native geoip_region_code(const ip[], result[], len);
|
||
static cell AMX_NATIVE_CALL amx_geoip_region_code(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
int finalLength = 0;
|
||
char code[12]; // This should be largely enough to hold xx-yyyy and more if needed.
|
||
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *pathCountry[] = { "country", "iso_code", NULL };
|
||
const char *countryCode = lookupString(stripPort(ip), pathCountry, &length);
|
||
|
||
if (countryCode)
|
||
{
|
||
finalLength = length + 1; // + 1 for dash.
|
||
snprintf(code, finalLength + 1, "%s-", countryCode); // + EOS.
|
||
|
||
const char *pathRegion[] = { "subdivisions", "0", "iso_code", NULL }; // First result.
|
||
const char *regionCode = lookupString(ip, pathRegion, &length);
|
||
|
||
if (regionCode)
|
||
{
|
||
finalLength += length;
|
||
strncat(code, regionCode, length);
|
||
}
|
||
else
|
||
{
|
||
finalLength = 0;
|
||
}
|
||
}
|
||
|
||
return MF_SetAmxString(amx, params[2], finalLength ? code : "", finalLength >= params[3] ? params[3] : finalLength);
|
||
}
|
||
|
||
// native geoip_region_name(const ip[], result[], len);
|
||
static cell AMX_NATIVE_CALL amx_geoip_region_name(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "subdivisions", "0", "names", "en", NULL }; // First result.
|
||
const char *region = lookupString(stripPort(ip), path, &length);
|
||
|
||
return MF_SetAmxString(amx, params[2], region ? region : "", length >= params[3] ? params[3] : length); // TODO: make this utf8 safe.
|
||
}
|
||
|
||
// native geoip_timezone(const ip[], result[], len);
|
||
static cell AMX_NATIVE_CALL amx_geoip_timezone(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "location", "time_zone", NULL };
|
||
const char *timezone = lookupString(stripPort(ip), path, &length);
|
||
|
||
return MF_SetAmxString(amx, params[2], timezone ? timezone : "", length >= params[3] ? params[3] : length);
|
||
}
|
||
|
||
// native geoip_latitude(const ip[]);
|
||
static cell AMX_NATIVE_CALL amx_geoip_latitude(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "location", "latitude", NULL };
|
||
double latitude = lookupDouble(stripPort(ip), path);
|
||
|
||
return amx_ftoc(latitude);
|
||
}
|
||
|
||
// native geoip_longitude(const ip[]);
|
||
static cell AMX_NATIVE_CALL amx_geoip_longitude(AMX *amx, cell *params)
|
||
{
|
||
int length;
|
||
char *ip = MF_GetAmxString(amx, params[1], 0, &length);
|
||
|
||
const char *path[] = { "location", "longitude", NULL };
|
||
double longitude = lookupDouble(stripPort(ip), path);
|
||
|
||
return amx_ftoc(longitude);
|
||
}
|
||
|
||
|
||
void OnAmxxAttach()
|
||
{
|
||
const char *databases[] =
|
||
{
|
||
"City",
|
||
"Country" // is the default shipped database with AMXX.
|
||
};
|
||
|
||
const char *modName = MF_GetModname();
|
||
const char *dataDir = MF_GetLocalInfo("amxx_datadir", "addons/amxmodx/data");
|
||
|
||
char file[255];
|
||
int status = -1;
|
||
|
||
for (size_t i = 0; i < ARRAYSIZE(databases); ++i)
|
||
{
|
||
sprintf(file, "%s/%s/GeoLite2-%s.mmdb", modName, dataDir, databases[i]); // MF_BuildPathname not used because backslash
|
||
// makes CreateFileMapping failing under windows.
|
||
status = MMDB_open(file, MMDB_MODE_MMAP, &HandleDB);
|
||
|
||
if (status == MMDB_SUCCESS)
|
||
{
|
||
break;
|
||
}
|
||
else if (status != MMDB_FILE_OPEN_ERROR)
|
||
{
|
||
MF_Log("Could not open %s - %s", file, MMDB_strerror(status));
|
||
|
||
if (status == MMDB_IO_ERROR)
|
||
{
|
||
MF_Log(" IO error: %s", strerror(errno));
|
||
}
|
||
}
|
||
}
|
||
|
||
if (status != MMDB_SUCCESS)
|
||
{
|
||
MF_Log("Could not find GeoIP2 databases. Disabled natives.");
|
||
return;
|
||
}
|
||
|
||
MF_Log("Database info: %s %i.%i",
|
||
HandleDB.metadata.description.descriptions[0]->description,
|
||
HandleDB.metadata.binary_format_major_version,
|
||
HandleDB.metadata.binary_format_minor_version);
|
||
|
||
MF_AddNatives(geoip_natives);
|
||
}
|
||
|
||
void OnAmxxDetach()
|
||
{
|
||
MMDB_close(&HandleDB);
|
||
}
|
||
|
||
|
||
AMX_NATIVE_INFO geoip_natives[] =
|
||
{
|
||
{ "geoip_code2", amx_geoip_code2 },
|
||
{ "geoip_code3", amx_geoip_code3 },
|
||
|
||
{ "geoip_code2_ex", amx_geoip_code2_ex },
|
||
{ "geoip_code3_ex", amx_geoip_code3_ex },
|
||
|
||
{ "geoip_country", amx_geoip_country },
|
||
{ "geoip_city" , amx_geoip_city },
|
||
|
||
{ "geoip_region_code", amx_geoip_region_code },
|
||
{ "geoip_region_name", amx_geoip_region_name },
|
||
|
||
{ "geoip_timezone" , amx_geoip_timezone },
|
||
{ "geoip_latitude" , amx_geoip_latitude },
|
||
{ "geoip_longitude", amx_geoip_longitude },
|
||
|
||
{ NULL, NULL },
|
||
};
|
||
|
||
|
||
/**
|
||
* GEOIP2 DATA EXAMPLE:
|
||
*
|
||
* {
|
||
* "city": {
|
||
* "confidence": 25,
|
||
* "geoname_id": 54321,
|
||
* "names": {
|
||
* "de": "Los Angeles",
|
||
* "en": "Los Angeles",
|
||
* "es": "Los Ángeles",
|
||
* "fr": "Los Angeles",
|
||
* "ja": "ロサンゼルス市",
|
||
* "pt-BR": "Los Angeles",
|
||
* "ru": "Лос-Анджелес",
|
||
* "zh-CN": "洛杉矶"
|
||
* }
|
||
* },
|
||
* "continent": {
|
||
* "code": "NA",
|
||
* "geoname_id": 123456,
|
||
* "names": {
|
||
* "de": "Nordamerika",
|
||
* "en": "North America",
|
||
* "es": "América del Norte",
|
||
* "fr": "Amérique du Nord",
|
||
* "ja": "北アメリカ",
|
||
* "pt-BR": "América do Norte",
|
||
* "ru": "Северная Америка",
|
||
* "zh-CN": "北美洲"
|
||
*
|
||
* }
|
||
* },
|
||
* "country": {
|
||
* "confidence": 75,
|
||
* "geoname_id": "6252001",
|
||
* "iso_code": "US",
|
||
* "names": {
|
||
* "de": "USA",
|
||
* "en": "United States",
|
||
* "es": "Estados Unidos",
|
||
* "fr": "États-Unis",
|
||
* "ja": "アメリカ合衆国",
|
||
* "pt-BR": "Estados Unidos",
|
||
* "ru": "США",
|
||
* "zh-CN": "美国"
|
||
* }
|
||
* },
|
||
* "location": {
|
||
* "accuracy_radius": 20,
|
||
* "latitude": 37.6293,
|
||
* "longitude": -122.1163,
|
||
* "metro_code": 807,
|
||
* "time_zone": "America/Los_Angeles"
|
||
* },
|
||
* "postal": {
|
||
* "code": "90001",
|
||
* "confidence": 10
|
||
* },
|
||
* "registered_country": {
|
||
* "geoname_id": "6252001",
|
||
* "iso_code": "US",
|
||
* "names": {
|
||
* "de": "USA",
|
||
* "en": "United States",
|
||
* "es": "Estados Unidos",
|
||
* "fr": "États-Unis",
|
||
* "ja": "アメリカ合衆国",
|
||
* "pt-BR": "Estados Unidos",
|
||
* "ru": "США",
|
||
* "zh-CN": "美国"
|
||
* }
|
||
* },
|
||
* "represented_country": {
|
||
* "geoname_id": "6252001",
|
||
* "iso_code": "US",
|
||
* "names": {
|
||
* "de": "USA",
|
||
* "en": "United States",
|
||
* "es": "Estados Unidos",
|
||
* "fr": "États-Unis",
|
||
* "ja": "アメリカ合衆国",
|
||
* "pt-BR": "Estados Unidos",
|
||
* "ru": "США",
|
||
* "zh-CN": "美国"
|
||
* },
|
||
* "type": "military"
|
||
* },
|
||
* "subdivisions": [
|
||
* {
|
||
* "confidence": 50,
|
||
* "geoname_id": 5332921,
|
||
* "iso_code": "CA",
|
||
* "names": {
|
||
* "de": "Kalifornien",
|
||
* "en": "California",
|
||
* "es": "California",
|
||
* "fr": "Californie",
|
||
* "ja": "カリフォルニア",
|
||
* "ru": "Калифорния",
|
||
* "zh-CN": "加州"
|
||
* }
|
||
* }
|
||
* ],
|
||
* "traits": {
|
||
* "autonomous_system_number": "1239",
|
||
* "autonomous_system_organization": "Linkem IR WiMax Network",
|
||
* "domain": "example.com",
|
||
* "is_anonymous_proxy": true,
|
||
* "is_transparent_proxy": true,
|
||
* "isp": "Linkem spa",
|
||
* "ip_address": "1.2.3.4",
|
||
* "organization": "Linkem IR WiMax Network",
|
||
* "user_type": "traveler",
|
||
* },
|
||
* "maxmind": {
|
||
* "queries_remaining": "54321"
|
||
* }
|
||
* }
|
||
*/
|