Welcome! Log In Create A New Profile

Advanced

[Patch][GeoIP][1.0.0] GeoIP Organization / ISP support

Arnaud GRANAL
April 18, 2011 09:48AM
Hi,

I added support for MaxMind GeoIP Organization / MaxMind GeoIP ISP.
Valgrind leak check OK. Tested stable with 1M queries.

Configuration:
geoip_organization GeoIPOrg.dat;

New variables:
$geoip_organization_name = ISP or Organization name

Patch is licensed under GPL+BSD-compliant WTFPL "You just DO WHAT THE
FUCK YOU WANT TO."
A copy of this license can be found at http://sam.zoy.org/wtfpl/COPYING

Leaving name for the changes is appreciated but not mandatory :)

Hope it helps some people,

--- nginx-1.0.0-org/src/http/modules/ngx_http_geoip_module.c
2011-01-27 13:51:59.000000000 +0100
+++ nginx-1.0.0/src/http/modules/ngx_http_geoip_module.c
2011-04-18 15:01:12.139868822 +0200
@@ -1,6 +1,7 @@

/*
* Copyright (C) Igor Sysoev
+ * Copyright (C) Arnaud Granal
*/


@@ -15,6 +16,7 @@
typedef struct {
GeoIP *country;
GeoIP *city;
+ GeoIP *organization;
} ngx_http_geoip_conf_t;


@@ -30,6 +32,8 @@
ngx_http_variable_value_t *v, uintptr_t data);
static ngx_int_t ngx_http_geoip_city_variable(ngx_http_request_t *r,
ngx_http_variable_value_t *v, uintptr_t data);
+static ngx_int_t ngx_http_geoip_organization_variable(ngx_http_request_t *r,
+ ngx_http_variable_value_t *v, uintptr_t data);
static ngx_int_t ngx_http_geoip_region_name_variable(ngx_http_request_t *r,
ngx_http_variable_value_t *v, uintptr_t data);
static ngx_int_t ngx_http_geoip_city_float_variable(ngx_http_request_t *r,
@@ -44,6 +48,8 @@
void *conf);
static char *ngx_http_geoip_city(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf);
+static char *ngx_http_geoip_organization(ngx_conf_t *cf, ngx_command_t *cmd,
+ void *conf);
static void ngx_http_geoip_cleanup(void *data);


@@ -63,6 +69,13 @@
0,
NULL },

+ { ngx_string("geoip_organization"),
+ NGX_HTTP_MAIN_CONF|NGX_CONF_TAKE12,
+ ngx_http_geoip_organization,
+ NGX_HTTP_MAIN_CONF_OFFSET,
+ 0,
+ NULL },
+
ngx_null_command
};

@@ -112,6 +125,10 @@
ngx_http_geoip_country_variable,
(uintptr_t) GeoIP_country_name_by_ipnum, 0, 0 },

+ { ngx_string("geoip_organization_name"), NULL,
+ ngx_http_geoip_organization_variable,
+ (uintptr_t) GeoIP_org_by_ipnum, 0, 0 },
+
{ ngx_string("geoip_city_continent_code"), NULL,
ngx_http_geoip_city_variable,
offsetof(GeoIPRecord, continent_code), 0, 0 },
@@ -210,6 +227,52 @@
return NGX_OK;
}

+static ngx_int_t
+ngx_http_geoip_organization_variable(ngx_http_request_t *r,
+ ngx_http_variable_value_t *v, uintptr_t data)
+{
+ ngx_http_geoip_variable_handler_pt handler =
+ (ngx_http_geoip_variable_handler_pt) data;
+
+ u_long addr;
+ const char *val;
+ struct sockaddr_in *sin;
+ ngx_http_geoip_conf_t *gcf;
+
+ gcf = ngx_http_get_module_main_conf(r, ngx_http_geoip_module);
+
+ if (gcf->organization == NULL) {
+ goto not_found;
+ }
+
+ if (r->connection->sockaddr->sa_family != AF_INET) {
+ goto not_found;
+ }
+
+ sin = (struct sockaddr_in *) r->connection->sockaddr;
+ addr = ntohl(sin->sin_addr.s_addr);
+
+ val = handler(gcf->organization, addr);
+
+ if (val == NULL) {
+ goto not_found;
+ }
+
+ v->len = ngx_strlen(val);
+ v->valid = 1;
+ v->no_cacheable = 0;
+ v->not_found = 0;
+ v->data = (u_char *) val;
+
+ return NGX_OK;
+
+not_found:
+
+ v->not_found = 1;
+
+ return NGX_OK;
+}
+

static ngx_int_t
ngx_http_geoip_city_variable(ngx_http_request_t *r,
@@ -423,7 +486,6 @@
return conf;
}

-
static char *
ngx_http_geoip_country(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
@@ -522,6 +584,53 @@
}
}

+static char *
+ngx_http_geoip_organization(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
+{
+ ngx_http_geoip_conf_t *gcf = conf;
+
+ ngx_str_t *value;
+
+ if (gcf->organization) {
+ return "is duplicate";
+ }
+
+ value = cf->args->elts;
+
+ gcf->organization = GeoIP_open((char *) value[1].data, GEOIP_MEMORY_CACHE);
+
+ if (gcf->organization == NULL) {
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "GeoIO_open(\"%V\") failed", &value[1]);
+
+ return NGX_CONF_ERROR;
+ }
+
+ if (cf->args->nelts == 3) {
+ if (ngx_strcmp(value[2].data, "utf8") == 0) {
+ GeoIP_set_charset (gcf->organization, GEOIP_CHARSET_UTF8);
+
+ } else {
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "invalid parameter \"%V\"", &value[2]);
+ return NGX_CONF_ERROR;
+ }
+ }
+
+ switch (gcf->organization->databaseType) {
+
+ case GEOIP_ORG_EDITION:
+ case GEOIP_ISP_EDITION:
+
+ return NGX_CONF_OK;
+
+ default:
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "invalid GeoIP organization database
\"%V\" type:%d",
+ &value[1], gcf->country->databaseType);
+ return NGX_CONF_ERROR;
+ }
+}

static void
ngx_http_geoip_cleanup(void *data)

_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

[Patch][GeoIP][1.0.0] GeoIP Organization / ISP support

Arnaud GRANAL 3476 April 18, 2011 09:48AM

Re: [Patch][GeoIP][1.0.0] GeoIP Organization / ISP support

Arnaud GRANAL 896 April 18, 2011 09:50AM

Re: [Patch][GeoIP][1.0.0] GeoIP Organization / ISP support

Igor Sysoev 1046 April 18, 2011 10:04AM

Re: [Patch][GeoIP][1.0.0] GeoIP Organization / ISP support

Arnaud GRANAL 929 April 18, 2011 10:58AM

Re: [Patch][GeoIP][1.0.0] GeoIP Organization / ISP support

Igor Sysoev 1015 April 18, 2011 02:22PM

Re: [Patch][GeoIP][1.0.0] GeoIP Organization / ISP support

Arnaud GRANAL 1221 April 18, 2011 02:46PM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 278
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready